blob: bf650f84b9b48d6acdde639c741a9f6f763ae828 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read a list of people who contributed.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010012static int path_is_url(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010014static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum);
15static void win_init(win_T *newp, win_T *oldp, int flags);
16static void win_init_some(win_T *newp, win_T *oldp);
17static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
18static void frame_setheight(frame_T *curfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static void frame_setwidth(frame_T *curfrp, int width);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010020static void win_exchange(long);
21static void win_rotate(int, int);
22static void win_totop(int size, int flags);
23static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
24static int last_window(void);
25static int close_last_window_tabpage(win_T *win, int free_buf, tabpage_T *prev_curtab);
26static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
27static frame_T *win_altframe(win_T *win, tabpage_T *tp);
28static tabpage_T *alt_tabpage(void);
29static win_T *frame2win(frame_T *frp);
30static int frame_has_win(frame_T *frp, win_T *wp);
31static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
32static int frame_fixed_height(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010033static int frame_fixed_width(frame_T *frp);
34static void frame_add_statusline(frame_T *frp);
35static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
36static void frame_add_vsep(frame_T *frp);
37static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
38static void frame_fix_width(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010040static int win_alloc_firstwin(win_T *oldwin);
41static void new_frame(win_T *wp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000042#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010043static tabpage_T *alloc_tabpage(void);
44static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds);
45static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds);
46static void frame_fix_height(win_T *wp);
47static int frame_minheight(frame_T *topfrp, win_T *next_curwin);
Bram Moolenaarc917da42016-07-19 22:31:36 +020048static void win_enter_ext(win_T *wp, int undo_sync, int no_curwin, int trigger_new_autocmds, int trigger_enter_autocmds, int trigger_leave_autocmds);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010049static void win_free(win_T *wp, tabpage_T *tp);
50static void frame_append(frame_T *after, frame_T *frp);
51static void frame_insert(frame_T *before, frame_T *frp);
52static void frame_remove(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010053static void win_goto_ver(int up, long count);
54static void win_goto_hor(int left, long count);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010055static void frame_add_height(frame_T *frp, int n);
56static void last_status_rec(frame_T *fr, int statusline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010058static void make_snapshot_rec(frame_T *fr, frame_T **frp);
59static void clear_snapshot(tabpage_T *tp, int idx);
60static void clear_snapshot_rec(frame_T *fr);
61static int check_snapshot_rec(frame_T *sn, frame_T *fr);
62static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010064static int frame_check_height(frame_T *topfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010065static int frame_check_width(frame_T *topfrp, int width);
Bram Moolenaarb893ac22013-06-26 14:04:47 +020066
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#endif /* FEAT_WINDOWS */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000068
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010069static win_T *win_alloc(win_T *after, int hidden);
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
71#define URL_SLASH 1 /* path_is_url() has found "://" */
72#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
73
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000074#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
Bram Moolenaar05159a02005-02-26 23:04:13 +000076#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +000077# define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000078#else
79# define ROWS_AVAIL (Rows - p_ch)
Bram Moolenaar05159a02005-02-26 23:04:13 +000080#endif
81
Bram Moolenaar071d4272004-06-13 20:20:40 +000082#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000083
84static char *m_onlyone = N_("Already only one window");
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086/*
87 * all CTRL-W window commands are handled here, called from normal_cmd().
88 */
89 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010090do_window(
91 int nchar,
92 long Prenum,
93 int xchar) /* extra char from ":wincmd gx" or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000094{
95 long Prenum1;
96 win_T *wp;
97#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
98 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +000099 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#endif
101#ifdef FEAT_FIND_ID
102 int type = FIND_DEFINE;
103 int len;
104#endif
105 char_u cbuf[40];
106
107 if (Prenum == 0)
108 Prenum1 = 1;
109 else
110 Prenum1 = Prenum;
111
112#ifdef FEAT_CMDWIN
113# define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
114#else
115# define CHECK_CMDWIN
116#endif
117
118 switch (nchar)
119 {
120/* split current window in two parts, horizontally */
121 case 'S':
122 case Ctrl_S:
123 case 's':
124 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000126#ifdef FEAT_QUICKFIX
127 /* When splitting the quickfix window open a new buffer in it,
128 * don't replicate the quickfix buffer. */
129 if (bt_quickfix(curbuf))
130 goto newwindow;
131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#ifdef FEAT_GUI
133 need_mouse_correct = TRUE;
134#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200135 (void)win_split((int)Prenum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 break;
137
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138/* split current window in two parts, vertically */
139 case Ctrl_V:
140 case 'v':
141 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100143#ifdef FEAT_QUICKFIX
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000144 /* When splitting the quickfix window open a new buffer in it,
145 * don't replicate the quickfix buffer. */
146 if (bt_quickfix(curbuf))
147 goto newwindow;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100148#endif
149#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100151#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200152 (void)win_split((int)Prenum, WSP_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
155/* split current window and edit alternate file */
156 case Ctrl_HAT:
157 case '^':
158 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100160 cmd_with_count("split #", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 do_cmdline_cmd(cbuf);
162 break;
163
164/* open new window */
165 case Ctrl_N:
166 case 'n':
167 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000169#ifdef FEAT_QUICKFIX
170newwindow:
171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000173 /* window height */
174 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 else
176 cbuf[0] = NUL;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100177#if defined(FEAT_QUICKFIX)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000178 if (nchar == 'v' || nchar == Ctrl_V)
179 STRCAT(cbuf, "v");
180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 STRCAT(cbuf, "new");
182 do_cmdline_cmd(cbuf);
183 break;
184
185/* quit current window */
186 case Ctrl_Q:
187 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100189 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100190 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 break;
192
193/* close current window */
194 case Ctrl_C:
195 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100197 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100198 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 break;
200
201#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
202/* close preview window */
203 case Ctrl_Z:
204 case 'z':
205 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 do_cmdline_cmd((char_u *)"pclose");
208 break;
209
210/* cursor to preview window */
211 case 'P':
212 for (wp = firstwin; wp != NULL; wp = wp->w_next)
213 if (wp->w_p_pvw)
214 break;
215 if (wp == NULL)
216 EMSG(_("E441: There is no preview window"));
217 else
218 win_goto(wp);
219 break;
220#endif
221
222/* close all but current window */
223 case Ctrl_O:
224 case 'o':
225 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100227 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100228 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 break;
230
231/* cursor to next window with wrap around */
232 case Ctrl_W:
233 case 'w':
234/* cursor to previous window with wrap around */
235 case 'W':
236 CHECK_CMDWIN
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000237 if (firstwin == lastwin && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 beep_flush();
239 else
240 {
241 if (Prenum) /* go to specified window */
242 {
243 for (wp = firstwin; --Prenum > 0; )
244 {
245 if (wp->w_next == NULL)
246 break;
247 else
248 wp = wp->w_next;
249 }
250 }
251 else
252 {
253 if (nchar == 'W') /* go to previous window */
254 {
255 wp = curwin->w_prev;
256 if (wp == NULL)
257 wp = lastwin; /* wrap around */
258 }
259 else /* go to next window */
260 {
261 wp = curwin->w_next;
262 if (wp == NULL)
263 wp = firstwin; /* wrap around */
264 }
265 }
266 win_goto(wp);
267 }
268 break;
269
270/* cursor to window below */
271 case 'j':
272 case K_DOWN:
273 case Ctrl_J:
274 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 win_goto_ver(FALSE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 break;
277
278/* cursor to window above */
279 case 'k':
280 case K_UP:
281 case Ctrl_K:
282 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 win_goto_ver(TRUE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 break;
285
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286/* cursor to left window */
287 case 'h':
288 case K_LEFT:
289 case Ctrl_H:
290 case K_BS:
291 CHECK_CMDWIN
292 win_goto_hor(TRUE, Prenum1);
293 break;
294
295/* cursor to right window */
296 case 'l':
297 case K_RIGHT:
298 case Ctrl_L:
299 CHECK_CMDWIN
300 win_goto_hor(FALSE, Prenum1);
301 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000303/* move window to new tab page */
304 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000305 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000306 MSG(_(m_onlyone));
307 else
308 {
309 tabpage_T *oldtab = curtab;
310 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000311
312 /* First create a new tab with the window, then go back to
313 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000314 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000315 if (win_new_tabpage((int)Prenum) == OK
316 && valid_tabpage(oldtab))
317 {
318 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200319 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000320 if (curwin == wp)
321 win_close(curwin, FALSE);
322 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200323 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000324 }
325 }
326 break;
327
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328/* cursor to top-left window */
329 case 't':
330 case Ctrl_T:
331 win_goto(firstwin);
332 break;
333
334/* cursor to bottom-right window */
335 case 'b':
336 case Ctrl_B:
337 win_goto(lastwin);
338 break;
339
340/* cursor to last accessed (previous) window */
341 case 'p':
342 case Ctrl_P:
Bram Moolenaar3dda7db2016-04-03 21:22:58 +0200343 if (!win_valid(prevwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 beep_flush();
345 else
346 win_goto(prevwin);
347 break;
348
349/* exchange current and next window */
350 case 'x':
351 case Ctrl_X:
352 CHECK_CMDWIN
353 win_exchange(Prenum);
354 break;
355
356/* rotate windows downwards */
357 case Ctrl_R:
358 case 'r':
359 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 win_rotate(FALSE, (int)Prenum1); /* downwards */
362 break;
363
364/* rotate windows upwards */
365 case 'R':
366 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 win_rotate(TRUE, (int)Prenum1); /* upwards */
369 break;
370
371/* move window to the very top/bottom/left/right */
372 case 'K':
373 case 'J':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 case 'H':
375 case 'L':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 CHECK_CMDWIN
377 win_totop((int)Prenum,
378 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
379 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
380 break;
381
382/* make all windows the same height */
383 case '=':
384#ifdef FEAT_GUI
385 need_mouse_correct = TRUE;
386#endif
387 win_equal(NULL, FALSE, 'b');
388 break;
389
390/* increase current window height */
391 case '+':
392#ifdef FEAT_GUI
393 need_mouse_correct = TRUE;
394#endif
395 win_setheight(curwin->w_height + (int)Prenum1);
396 break;
397
398/* decrease current window height */
399 case '-':
400#ifdef FEAT_GUI
401 need_mouse_correct = TRUE;
402#endif
403 win_setheight(curwin->w_height - (int)Prenum1);
404 break;
405
406/* set current window height */
407 case Ctrl__:
408 case '_':
409#ifdef FEAT_GUI
410 need_mouse_correct = TRUE;
411#endif
412 win_setheight(Prenum ? (int)Prenum : 9999);
413 break;
414
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415/* increase current window width */
416 case '>':
417#ifdef FEAT_GUI
418 need_mouse_correct = TRUE;
419#endif
420 win_setwidth(curwin->w_width + (int)Prenum1);
421 break;
422
423/* decrease current window width */
424 case '<':
425#ifdef FEAT_GUI
426 need_mouse_correct = TRUE;
427#endif
428 win_setwidth(curwin->w_width - (int)Prenum1);
429 break;
430
431/* set current window width */
432 case '|':
433#ifdef FEAT_GUI
434 need_mouse_correct = TRUE;
435#endif
436 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
437 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438
439/* jump to tag and split window if tag exists (in preview window) */
440#if defined(FEAT_QUICKFIX)
441 case '}':
442 CHECK_CMDWIN
443 if (Prenum)
444 g_do_tagpreview = Prenum;
445 else
446 g_do_tagpreview = p_pvh;
447 /*FALLTHROUGH*/
448#endif
449 case ']':
450 case Ctrl_RSB:
451 CHECK_CMDWIN
Bram Moolenaard355c502014-09-23 13:48:43 +0200452 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 if (Prenum)
454 postponed_split = Prenum;
455 else
456 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200457#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200458 if (nchar != '}')
459 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461
Bram Moolenaard355c502014-09-23 13:48:43 +0200462 /* Execute the command right here, required when "wincmd ]"
463 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 do_nv_ident(Ctrl_RSB, NUL);
465 break;
466
467#ifdef FEAT_SEARCHPATH
468/* edit file name under cursor in a new window */
469 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000470 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000472wingotofile:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 CHECK_CMDWIN
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000474
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000475 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 if (ptr != NULL)
477 {
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200478 tabpage_T *oldtab = curtab;
479 win_T *oldwin = curwin;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000480# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000482# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 setpcmark();
484 if (win_split(0, 0) == OK)
485 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200486 RESET_BINDING(curwin);
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200487 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
488 ECMD_HIDE, NULL) == FAIL)
489 {
490 /* Failed to open the file, close the window
491 * opened for it. */
492 win_close(curwin, FALSE);
493 goto_tabpage_win(oldtab, oldwin);
494 }
495 else if (nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000496 {
497 curwin->w_cursor.lnum = lnum;
498 check_cursor_lnum();
499 beginline(BL_SOL | BL_FIX);
500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 }
502 vim_free(ptr);
503 }
504 break;
505#endif
506
507#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000508/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 * new window -- webb
510 */
511 case 'i': /* Go to any match */
512 case Ctrl_I:
513 type = FIND_ANY;
514 /* FALLTHROUGH */
515 case 'd': /* Go to definition, using 'define' */
516 case Ctrl_D:
517 CHECK_CMDWIN
518 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
519 break;
520 find_pattern_in_path(ptr, 0, len, TRUE,
521 Prenum == 0 ? TRUE : FALSE, type,
522 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
523 curwin->w_set_curswant = TRUE;
524 break;
525#endif
526
Bram Moolenaar05159a02005-02-26 23:04:13 +0000527 case K_KENTER:
528 case CAR:
529#if defined(FEAT_QUICKFIX)
530 /*
531 * In a quickfix window a <CR> jumps to the error under the
532 * cursor in a new window.
533 */
534 if (bt_quickfix(curbuf))
535 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000536 sprintf((char *)cbuf, "split +%ld%s",
537 (long)curwin->w_cursor.lnum,
538 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000539 do_cmdline_cmd(cbuf);
540 }
541#endif
542 break;
543
544
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545/* CTRL-W g extended commands */
546 case 'g':
547 case Ctrl_G:
548 CHECK_CMDWIN
549#ifdef USE_ON_FLY_SCROLL
550 dont_scroll = TRUE; /* disallow scrolling here */
551#endif
552 ++no_mapping;
553 ++allow_keys; /* no mapping for xchar, but allow key codes */
554 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000555 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 --no_mapping;
558 --allow_keys;
559#ifdef FEAT_CMDL_INFO
560 (void)add_to_showcmd(xchar);
561#endif
562 switch (xchar)
563 {
564#if defined(FEAT_QUICKFIX)
565 case '}':
566 xchar = Ctrl_RSB;
567 if (Prenum)
568 g_do_tagpreview = Prenum;
569 else
570 g_do_tagpreview = p_pvh;
571 /*FALLTHROUGH*/
572#endif
573 case ']':
574 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200575 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 if (Prenum)
577 postponed_split = Prenum;
578 else
579 postponed_split = -1;
580
581 /* Execute the command right here, required when
582 * "wincmd g}" was used in a function. */
583 do_nv_ident('g', xchar);
584 break;
585
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000586#ifdef FEAT_SEARCHPATH
587 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000588 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100589 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000590 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000591 goto wingotofile;
592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 default:
594 beep_flush();
595 break;
596 }
597 break;
598
599 default: beep_flush();
600 break;
601 }
602}
603
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100604/*
605 * Figure out the address type for ":wnncmd".
606 */
607 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100608get_wincmd_addr_type(char_u *arg, exarg_T *eap)
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100609{
610 switch (*arg)
611 {
612 case 'S':
613 case Ctrl_S:
614 case 's':
615 case Ctrl_N:
616 case 'n':
617 case 'j':
618 case Ctrl_J:
619 case 'k':
620 case Ctrl_K:
621 case 'T':
622 case Ctrl_R:
623 case 'r':
624 case 'R':
625 case 'K':
626 case 'J':
627 case '+':
628 case '-':
629 case Ctrl__:
630 case '_':
631 case '|':
632 case ']':
633 case Ctrl_RSB:
634 case 'g':
635 case Ctrl_G:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100636 case Ctrl_V:
637 case 'v':
638 case 'h':
639 case Ctrl_H:
640 case 'l':
641 case Ctrl_L:
642 case 'H':
643 case 'L':
644 case '>':
645 case '<':
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100646#if defined(FEAT_QUICKFIX)
647 case '}':
648#endif
649#ifdef FEAT_SEARCHPATH
650 case 'f':
651 case 'F':
652 case Ctrl_F:
653#endif
654#ifdef FEAT_FIND_ID
655 case 'i':
656 case Ctrl_I:
657 case 'd':
658 case Ctrl_D:
659#endif
660 /* window size or any count */
661 eap->addr_type = ADDR_LINES;
662 break;
663
664 case Ctrl_HAT:
665 case '^':
666 /* buffer number */
667 eap->addr_type = ADDR_BUFFERS;
668 break;
669
670 case Ctrl_Q:
671 case 'q':
672 case Ctrl_C:
673 case 'c':
674 case Ctrl_O:
675 case 'o':
676 case Ctrl_W:
677 case 'w':
678 case 'W':
679 case 'x':
680 case Ctrl_X:
681 /* window number */
682 eap->addr_type = ADDR_WINDOWS;
683 break;
684
685#if defined(FEAT_QUICKFIX)
686 case Ctrl_Z:
687 case 'z':
688 case 'P':
689#endif
690 case 't':
691 case Ctrl_T:
692 case 'b':
693 case Ctrl_B:
694 case 'p':
695 case Ctrl_P:
696 case '=':
697 case CAR:
698 /* no count */
699 eap->addr_type = 0;
700 break;
701 }
702}
703
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100704 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100705cmd_with_count(
706 char *cmd,
707 char_u *bufp,
708 size_t bufsize,
709 long Prenum)
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100710{
711 size_t len = STRLEN(cmd);
712
713 STRCPY(bufp, cmd);
714 if (Prenum > 0)
715 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum);
716}
717
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718/*
719 * split the current window, implements CTRL-W s and :split
720 *
721 * "size" is the height or width for the new window, 0 to use half of current
722 * height or width.
723 *
724 * "flags":
725 * WSP_ROOM: require enough room for new window
726 * WSP_VERT: vertical split.
727 * WSP_TOP: open window at the top-left of the shell (help window).
728 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
729 * WSP_HELP: creating the help window, keep layout snapshot
730 *
731 * return FAIL for failure, OK otherwise
732 */
733 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100734win_split(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000736 /* When the ":tab" modifier was used open a new tab page instead. */
737 if (may_open_tabpage() == OK)
738 return OK;
739
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 /* Add flags from ":vertical", ":topleft" and ":botright". */
741 flags |= cmdmod.split;
742 if ((flags & WSP_TOP) && (flags & WSP_BOT))
743 {
744 EMSG(_("E442: Can't split topleft and botright at the same time"));
745 return FAIL;
746 }
747
748 /* When creating the help window make a snapshot of the window layout.
749 * Otherwise clear the snapshot, it's now invalid. */
750 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000751 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000753 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755 return win_split_ins(size, flags, NULL, 0);
756}
757
758/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100759 * When "new_wp" is NULL: split the current window in two.
760 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 * top/left/right/bottom.
762 * return FAIL for failure, OK otherwise
763 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000764 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100765win_split_ins(
766 int size,
767 int flags,
768 win_T *new_wp,
769 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100771 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 win_T *oldwin;
773 int new_size = size;
774 int i;
775 int need_status = 0;
776 int do_equal = FALSE;
777 int needed;
778 int available;
779 int oldwin_height = 0;
780 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200781 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200783 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200784 int wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
786 if (flags & WSP_TOP)
787 oldwin = firstwin;
788 else if (flags & WSP_BOT)
789 oldwin = lastwin;
790 else
791 oldwin = curwin;
792
793 /* add a status line when p_ls == 1 and splitting the first window */
794 if (lastwin == firstwin && p_ls == 1 && oldwin->w_status_height == 0)
795 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100796 if (oldwin->w_height <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {
798 EMSG(_(e_noroom));
799 return FAIL;
800 }
801 need_status = STATUS_HEIGHT;
802 }
803
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000804#ifdef FEAT_GUI
805 /* May be needed for the scrollbars that are going to change. */
806 if (gui.in_use)
807 out_flush();
808#endif
809
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 if (flags & WSP_VERT)
811 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200812 int wmw1;
813 int minwidth;
814
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816
817 /*
818 * Check if we are able to split the current window and compute its
819 * width.
820 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200821 /* Current window requires at least 1 space. */
822 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
823 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200825 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200826 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200828 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200830 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200832 else if (p_ea)
833 {
834 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
835 prevfrp = oldwin->w_frame;
836 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
837 frp = frp->fr_parent)
838 {
839 if (frp->fr_layout == FR_ROW)
840 for (frp2 = frp->fr_child; frp2 != NULL;
841 frp2 = frp2->fr_next)
842 if (frp2 != prevfrp)
843 minwidth += frame_minwidth(frp2, NOWIN);
844 prevfrp = frp;
845 }
846 available = topframe->fr_width;
847 needed += minwidth;
848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200850 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200851 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
852 available = oldwin->w_frame->fr_width;
853 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200854 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100855 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 {
857 EMSG(_(e_noroom));
858 return FAIL;
859 }
860 if (new_size == 0)
861 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200862 if (new_size > available - minwidth - 1)
863 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200864 if (new_size < wmw1)
865 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866
867 /* if it doesn't fit in the current window, need win_equal() */
868 if (oldwin->w_width - new_size - 1 < p_wmw)
869 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000870
871 /* We don't like to take lines for the new window from a
872 * 'winfixwidth' window. Take them from a window to the left or right
873 * instead, if possible. */
874 if (oldwin->w_p_wfw)
875 win_setwidth_win(oldwin->w_width + new_size, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000876
877 /* Only make all windows the same width if one of them (except oldwin)
878 * is wider than one of the split windows. */
879 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
880 && oldwin->w_frame->fr_parent != NULL)
881 {
882 frp = oldwin->w_frame->fr_parent->fr_child;
883 while (frp != NULL)
884 {
885 if (frp->fr_win != oldwin && frp->fr_win != NULL
886 && (frp->fr_win->w_width > new_size
887 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100888 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000889 {
890 do_equal = TRUE;
891 break;
892 }
893 frp = frp->fr_next;
894 }
895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 }
897 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 {
899 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901 /*
902 * Check if we are able to split the current window and compute its
903 * height.
904 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200905 /* Current window requires at least 1 space. */
906 wmh1 = (p_wmh == 0 ? 1 : p_wmh);
907 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200909 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200910 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200912 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200914 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200916 else if (p_ea)
917 {
918 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
919 prevfrp = oldwin->w_frame;
920 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
921 frp = frp->fr_parent)
922 {
923 if (frp->fr_layout == FR_COL)
924 for (frp2 = frp->fr_child; frp2 != NULL;
925 frp2 = frp2->fr_next)
926 if (frp2 != prevfrp)
927 minheight += frame_minheight(frp2, NOWIN);
928 prevfrp = frp;
929 }
930 available = topframe->fr_height;
931 needed += minheight;
932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 else
934 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200935 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
936 available = oldwin->w_frame->fr_height;
937 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100939 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 {
941 EMSG(_(e_noroom));
942 return FAIL;
943 }
944 oldwin_height = oldwin->w_height;
945 if (need_status)
946 {
947 oldwin->w_status_height = STATUS_HEIGHT;
948 oldwin_height -= STATUS_HEIGHT;
949 }
950 if (new_size == 0)
951 new_size = oldwin_height / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200952 if (new_size > available - minheight - STATUS_HEIGHT)
953 new_size = available - minheight - STATUS_HEIGHT;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200954 if (new_size < wmh1)
955 new_size = wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
957 /* if it doesn't fit in the current window, need win_equal() */
958 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
959 do_equal = TRUE;
960
961 /* We don't like to take lines for the new window from a
962 * 'winfixheight' window. Take them from a window above or below
963 * instead, if possible. */
964 if (oldwin->w_p_wfh)
965 {
966 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
967 oldwin);
968 oldwin_height = oldwin->w_height;
969 if (need_status)
970 oldwin_height -= STATUS_HEIGHT;
971 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000972
973 /* Only make all windows the same height if one of them (except oldwin)
974 * is higher than one of the split windows. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100975 if (!do_equal && p_ea && size == 0 && *p_ead != 'h'
Bram Moolenaar67f71312007-08-12 14:55:56 +0000976 && oldwin->w_frame->fr_parent != NULL)
977 {
978 frp = oldwin->w_frame->fr_parent->fr_child;
979 while (frp != NULL)
980 {
981 if (frp->fr_win != oldwin && frp->fr_win != NULL
982 && (frp->fr_win->w_height > new_size
983 || frp->fr_win->w_height > oldwin_height - new_size
984 - STATUS_HEIGHT))
985 {
986 do_equal = TRUE;
987 break;
988 }
989 frp = frp->fr_next;
990 }
991 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 }
993
994 /*
995 * allocate new window structure and link it in the window list
996 */
997 if ((flags & WSP_TOP) == 0
998 && ((flags & WSP_BOT)
999 || (flags & WSP_BELOW)
1000 || (!(flags & WSP_ABOVE)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001001 && ( (flags & WSP_VERT) ? p_spr : p_sb))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 {
1003 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001004 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001005 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 else
1007 win_append(oldwin, wp);
1008 }
1009 else
1010 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001011 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001012 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 else
1014 win_append(oldwin->w_prev, wp);
1015 }
1016
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001017 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 {
1019 if (wp == NULL)
1020 return FAIL;
1021
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001022 new_frame(wp);
1023 if (wp->w_frame == NULL)
1024 {
1025 win_free(wp, NULL);
1026 return FAIL;
1027 }
1028
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001029 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001030 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 }
1032
1033 /*
1034 * Reorganise the tree of frames to insert the new window.
1035 */
1036 if (flags & (WSP_TOP | WSP_BOT))
1037 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
1039 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 {
1041 curfrp = topframe->fr_child;
1042 if (flags & WSP_BOT)
1043 while (curfrp->fr_next != NULL)
1044 curfrp = curfrp->fr_next;
1045 }
1046 else
1047 curfrp = topframe;
1048 before = (flags & WSP_TOP);
1049 }
1050 else
1051 {
1052 curfrp = oldwin->w_frame;
1053 if (flags & WSP_BELOW)
1054 before = FALSE;
1055 else if (flags & WSP_ABOVE)
1056 before = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001057 else if (flags & WSP_VERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 before = !p_spr;
1059 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 before = !p_sb;
1061 }
1062 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
1063 {
1064 /* Need to create a new frame in the tree to make a branch. */
1065 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
1066 *frp = *curfrp;
1067 curfrp->fr_layout = layout;
1068 frp->fr_parent = curfrp;
1069 frp->fr_next = NULL;
1070 frp->fr_prev = NULL;
1071 curfrp->fr_child = frp;
1072 curfrp->fr_win = NULL;
1073 curfrp = frp;
1074 if (frp->fr_win != NULL)
1075 oldwin->w_frame = frp;
1076 else
1077 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
1078 frp->fr_parent = curfrp;
1079 }
1080
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001081 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001082 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001084 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 frp->fr_parent = curfrp->fr_parent;
1086
1087 /* Insert the new frame at the right place in the frame list. */
1088 if (before)
1089 frame_insert(curfrp, frp);
1090 else
1091 frame_append(curfrp, frp);
1092
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001093 /* Set w_fraction now so that the cursor keeps the same relative
1094 * vertical position. */
Bram Moolenaar13d831f2011-01-08 14:46:03 +01001095 if (oldwin->w_height > 0)
1096 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001097 wp->w_fraction = oldwin->w_fraction;
1098
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 if (flags & WSP_VERT)
1100 {
1101 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 if (need_status)
1104 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001105 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 oldwin->w_status_height = need_status;
1107 }
1108 if (flags & (WSP_TOP | WSP_BOT))
1109 {
1110 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001111 wp->w_winrow = tabline_height();
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001112 win_new_height(wp, curfrp->fr_height - (p_ls > 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 wp->w_status_height = (p_ls > 0);
1114 }
1115 else
1116 {
1117 /* height and row of new window is same as current window */
1118 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001119 win_new_height(wp, oldwin->w_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 wp->w_status_height = oldwin->w_status_height;
1121 }
1122 frp->fr_height = curfrp->fr_height;
1123
1124 /* "new_size" of the current window goes to the new window, use
1125 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001126 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 if (before)
1128 wp->w_vsep_width = 1;
1129 else
1130 {
1131 wp->w_vsep_width = oldwin->w_vsep_width;
1132 oldwin->w_vsep_width = 1;
1133 }
1134 if (flags & (WSP_TOP | WSP_BOT))
1135 {
1136 if (flags & WSP_BOT)
1137 frame_add_vsep(curfrp);
1138 /* Set width of neighbor frame */
1139 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001140 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1141 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 }
1143 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001144 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 if (before) /* new window left of current one */
1146 {
1147 wp->w_wincol = oldwin->w_wincol;
1148 oldwin->w_wincol += new_size + 1;
1149 }
1150 else /* new window right of current one */
1151 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1152 frame_fix_width(oldwin);
1153 frame_fix_width(wp);
1154 }
1155 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 {
1157 /* width and column of new window is same as current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 if (flags & (WSP_TOP | WSP_BOT))
1159 {
1160 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001161 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 wp->w_vsep_width = 0;
1163 }
1164 else
1165 {
1166 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001167 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 wp->w_vsep_width = oldwin->w_vsep_width;
1169 }
1170 frp->fr_width = curfrp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171
1172 /* "new_size" of the current window goes to the new window, use
1173 * one row for the status line */
1174 win_new_height(wp, new_size);
1175 if (flags & (WSP_TOP | WSP_BOT))
Bram Moolenaar991dea32016-05-24 11:31:32 +02001176 {
1177 int new_fr_height = curfrp->fr_height - new_size;
1178
1179 if (!((flags & WSP_BOT) && p_ls == 0))
1180 new_fr_height -= STATUS_HEIGHT;
1181 frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, FALSE);
1182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 else
1184 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1185 if (before) /* new window above current one */
1186 {
1187 wp->w_winrow = oldwin->w_winrow;
1188 wp->w_status_height = STATUS_HEIGHT;
1189 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1190 }
1191 else /* new window below current one */
1192 {
1193 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
1194 wp->w_status_height = oldwin->w_status_height;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001195 if (!(flags & WSP_BOT))
1196 oldwin->w_status_height = STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (flags & WSP_BOT)
1199 frame_add_statusline(curfrp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 frame_fix_height(wp);
1201 frame_fix_height(oldwin);
1202 }
1203
1204 if (flags & (WSP_TOP | WSP_BOT))
1205 (void)win_comp_pos();
1206
1207 /*
1208 * Both windows need redrawing
1209 */
1210 redraw_win_later(wp, NOT_VALID);
1211 wp->w_redr_status = TRUE;
1212 redraw_win_later(oldwin, NOT_VALID);
1213 oldwin->w_redr_status = TRUE;
1214
1215 if (need_status)
1216 {
1217 msg_row = Rows - 1;
1218 msg_col = sc_col;
1219 msg_clr_eos_force(); /* Old command/ruler may still be there */
1220 comp_col();
1221 msg_row = Rows - 1;
1222 msg_col = 0; /* put position back at start of line */
1223 }
1224
1225 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001226 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 */
1228 if (do_equal || dir != 0)
1229 win_equal(wp, TRUE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001231 : dir == 'h' ? 'b' : 'v');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232
1233 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1234 * size was given. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (flags & WSP_VERT)
1236 {
1237 i = p_wiw;
1238 if (size != 0)
1239 p_wiw = size;
1240
1241# ifdef FEAT_GUI
1242 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1243 if (gui.in_use)
1244 gui_init_which_components(NULL);
1245# endif
1246 }
1247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
1249 i = p_wh;
1250 if (size != 0)
1251 p_wh = size;
1252 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001253
Bram Moolenaar23fb7a92014-07-30 14:05:00 +02001254#ifdef FEAT_JUMPLIST
1255 /* Keep same changelist position in new window. */
1256 wp->w_changelistidx = oldwin->w_changelistidx;
1257#endif
1258
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001259 /*
1260 * make the new window the current window
1261 */
Bram Moolenaarc917da42016-07-19 22:31:36 +02001262 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 if (flags & WSP_VERT)
1264 p_wiw = i;
1265 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 p_wh = i;
1267
1268 return OK;
1269}
1270
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001271
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001272/*
1273 * Initialize window "newp" from window "oldp".
1274 * Used when splitting a window and when creating a new tab page.
1275 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001276 * WSP_NEWLOC may be specified in flags to prevent the location list from
1277 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001278 */
1279 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001280win_init(win_T *newp, win_T *oldp, int flags UNUSED)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001281{
1282 int i;
1283
1284 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001285#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001286 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001287#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001288 oldp->w_buffer->b_nwindows++;
1289 newp->w_cursor = oldp->w_cursor;
1290 newp->w_valid = 0;
1291 newp->w_curswant = oldp->w_curswant;
1292 newp->w_set_curswant = oldp->w_set_curswant;
1293 newp->w_topline = oldp->w_topline;
1294#ifdef FEAT_DIFF
1295 newp->w_topfill = oldp->w_topfill;
1296#endif
1297 newp->w_leftcol = oldp->w_leftcol;
1298 newp->w_pcmark = oldp->w_pcmark;
1299 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1300 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001301 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001302 newp->w_fraction = oldp->w_fraction;
1303 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1304#ifdef FEAT_JUMPLIST
1305 copy_jumplist(oldp, newp);
1306#endif
1307#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001308 if (flags & WSP_NEWLOC)
1309 {
1310 /* Don't copy the location list. */
1311 newp->w_llist = NULL;
1312 newp->w_llist_ref = NULL;
1313 }
1314 else
1315 copy_loclist(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001316#endif
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01001317 newp->w_localdir = (oldp->w_localdir == NULL)
1318 ? NULL : vim_strsave(oldp->w_localdir);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001319
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001320 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001321 for (i = 0; i < oldp->w_tagstacklen; i++)
1322 {
1323 newp->w_tagstack[i] = oldp->w_tagstack[i];
1324 if (newp->w_tagstack[i].tagname != NULL)
1325 newp->w_tagstack[i].tagname =
1326 vim_strsave(newp->w_tagstack[i].tagname);
1327 }
1328 newp->w_tagstackidx = oldp->w_tagstackidx;
1329 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001330#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001331 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001332#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001333
1334 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001335
Bram Moolenaara971b822011-09-14 14:43:25 +02001336#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001337 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001338#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001339}
1340
1341/*
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001342 * Initialize window "newp" from window "old".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001343 * Only the essential things are copied.
1344 */
1345 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001346win_init_some(win_T *newp, win_T *oldp)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001347{
1348 /* Use the same argument list. */
1349 newp->w_alist = oldp->w_alist;
1350 ++newp->w_alist->al_refcount;
1351 newp->w_arg_idx = oldp->w_arg_idx;
1352
1353 /* copy options from existing window */
1354 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001355}
1356
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357#endif /* FEAT_WINDOWS */
1358
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359#if defined(FEAT_WINDOWS) || defined(PROTO)
1360/*
1361 * Check if "win" is a pointer to an existing window.
1362 */
1363 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001364win_valid(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365{
1366 win_T *wp;
1367
1368 if (win == NULL)
1369 return FALSE;
1370 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1371 if (wp == win)
1372 return TRUE;
1373 return FALSE;
1374}
1375
1376/*
1377 * Return the number of windows.
1378 */
1379 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001380win_count(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381{
1382 win_T *wp;
1383 int count = 0;
1384
1385 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1386 ++count;
1387 return count;
1388}
1389
1390/*
1391 * Make "count" windows on the screen.
1392 * Return actual number of windows on the screen.
1393 * Must be called when there is just one window, filling the whole screen
1394 * (excluding the command line).
1395 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001397make_windows(
1398 int count,
1399 int vertical UNUSED) /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400{
1401 int maxcount;
1402 int todo;
1403
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (vertical)
1405 {
1406 /* Each windows needs at least 'winminwidth' lines and a separator
1407 * column. */
1408 maxcount = (curwin->w_width + curwin->w_vsep_width
1409 - (p_wiw - p_wmw)) / (p_wmw + 1);
1410 }
1411 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 {
1413 /* Each window needs at least 'winminheight' lines and a status line. */
1414 maxcount = (curwin->w_height + curwin->w_status_height
1415 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1416 }
1417
1418 if (maxcount < 2)
1419 maxcount = 2;
1420 if (count > maxcount)
1421 count = maxcount;
1422
1423 /*
1424 * add status line now, otherwise first window will be too big
1425 */
1426 if (count > 1)
1427 last_status(TRUE);
1428
1429#ifdef FEAT_AUTOCMD
1430 /*
1431 * Don't execute autocommands while creating the windows. Must do that
1432 * when putting the buffers in the windows.
1433 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001434 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435#endif
1436
1437 /* todo is number of windows left to create */
1438 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 if (vertical)
1440 {
1441 if (win_split(curwin->w_width - (curwin->w_width - todo)
1442 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1443 break;
1444 }
1445 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 {
1447 if (win_split(curwin->w_height - (curwin->w_height - todo
1448 * STATUS_HEIGHT) / (todo + 1)
1449 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1450 break;
1451 }
1452
1453#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001454 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455#endif
1456
1457 /* return actual number of windows */
1458 return (count - todo);
1459}
1460
1461/*
1462 * Exchange current and next window
1463 */
1464 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001465win_exchange(long Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466{
1467 frame_T *frp;
1468 frame_T *frp2;
1469 win_T *wp;
1470 win_T *wp2;
1471 int temp;
1472
1473 if (lastwin == firstwin) /* just one window */
1474 {
1475 beep_flush();
1476 return;
1477 }
1478
1479#ifdef FEAT_GUI
1480 need_mouse_correct = TRUE;
1481#endif
1482
1483 /*
1484 * find window to exchange with
1485 */
1486 if (Prenum)
1487 {
1488 frp = curwin->w_frame->fr_parent->fr_child;
1489 while (frp != NULL && --Prenum > 0)
1490 frp = frp->fr_next;
1491 }
1492 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1493 frp = curwin->w_frame->fr_next;
1494 else /* Swap last window in row/col with previous */
1495 frp = curwin->w_frame->fr_prev;
1496
1497 /* We can only exchange a window with another window, not with a frame
1498 * containing windows. */
1499 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1500 return;
1501 wp = frp->fr_win;
1502
1503/*
1504 * 1. remove curwin from the list. Remember after which window it was in wp2
1505 * 2. insert curwin before wp in the list
1506 * if wp != wp2
1507 * 3. remove wp from the list
1508 * 4. insert wp after wp2
1509 * 5. exchange the status line height and vsep width.
1510 */
1511 wp2 = curwin->w_prev;
1512 frp2 = curwin->w_frame->fr_prev;
1513 if (wp->w_prev != curwin)
1514 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001515 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 frame_remove(curwin->w_frame);
1517 win_append(wp->w_prev, curwin);
1518 frame_insert(frp, curwin->w_frame);
1519 }
1520 if (wp != wp2)
1521 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001522 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 frame_remove(wp->w_frame);
1524 win_append(wp2, wp);
1525 if (frp2 == NULL)
1526 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1527 else
1528 frame_append(frp2, wp->w_frame);
1529 }
1530 temp = curwin->w_status_height;
1531 curwin->w_status_height = wp->w_status_height;
1532 wp->w_status_height = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 temp = curwin->w_vsep_width;
1534 curwin->w_vsep_width = wp->w_vsep_width;
1535 wp->w_vsep_width = temp;
1536
1537 /* If the windows are not in the same frame, exchange the sizes to avoid
1538 * messing up the window layout. Otherwise fix the frame sizes. */
1539 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1540 {
1541 temp = curwin->w_height;
1542 curwin->w_height = wp->w_height;
1543 wp->w_height = temp;
1544 temp = curwin->w_width;
1545 curwin->w_width = wp->w_width;
1546 wp->w_width = temp;
1547 }
1548 else
1549 {
1550 frame_fix_height(curwin);
1551 frame_fix_height(wp);
1552 frame_fix_width(curwin);
1553 frame_fix_width(wp);
1554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
1556 (void)win_comp_pos(); /* recompute window positions */
1557
1558 win_enter(wp, TRUE);
1559 redraw_later(CLEAR);
1560}
1561
1562/*
1563 * rotate windows: if upwards TRUE the second window becomes the first one
1564 * if upwards FALSE the first window becomes the second one
1565 */
1566 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001567win_rotate(int upwards, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568{
1569 win_T *wp1;
1570 win_T *wp2;
1571 frame_T *frp;
1572 int n;
1573
1574 if (firstwin == lastwin) /* nothing to do */
1575 {
1576 beep_flush();
1577 return;
1578 }
1579
1580#ifdef FEAT_GUI
1581 need_mouse_correct = TRUE;
1582#endif
1583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 /* Check if all frames in this row/col have one window. */
1585 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1586 frp = frp->fr_next)
1587 if (frp->fr_win == NULL)
1588 {
1589 EMSG(_("E443: Cannot rotate when another window is split"));
1590 return;
1591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592
1593 while (count--)
1594 {
1595 if (upwards) /* first window becomes last window */
1596 {
1597 /* remove first window/frame from the list */
1598 frp = curwin->w_frame->fr_parent->fr_child;
1599 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001600 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 frame_remove(frp);
1602
1603 /* find last frame and append removed window/frame after it */
1604 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1605 ;
1606 win_append(frp->fr_win, wp1);
1607 frame_append(frp, wp1->w_frame);
1608
1609 wp2 = frp->fr_win; /* previously last window */
1610 }
1611 else /* last window becomes first window */
1612 {
1613 /* find last window/frame in the list and remove it */
1614 for (frp = curwin->w_frame; frp->fr_next != NULL;
1615 frp = frp->fr_next)
1616 ;
1617 wp1 = frp->fr_win;
1618 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001619 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 frame_remove(frp);
1621
1622 /* append the removed window/frame before the first in the list */
1623 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1624 frame_insert(frp->fr_parent->fr_child, frp);
1625 }
1626
1627 /* exchange status height and vsep width of old and new last window */
1628 n = wp2->w_status_height;
1629 wp2->w_status_height = wp1->w_status_height;
1630 wp1->w_status_height = n;
1631 frame_fix_height(wp1);
1632 frame_fix_height(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 n = wp2->w_vsep_width;
1634 wp2->w_vsep_width = wp1->w_vsep_width;
1635 wp1->w_vsep_width = n;
1636 frame_fix_width(wp1);
1637 frame_fix_width(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001639 /* recompute w_winrow and w_wincol for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 (void)win_comp_pos();
1641 }
1642
1643 redraw_later(CLEAR);
1644}
1645
1646/*
1647 * Move the current window to the very top/bottom/left/right of the screen.
1648 */
1649 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001650win_totop(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651{
1652 int dir;
1653 int height = curwin->w_height;
1654
1655 if (lastwin == firstwin)
1656 {
1657 beep_flush();
1658 return;
1659 }
1660
1661 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001662 (void)winframe_remove(curwin, &dir, NULL);
1663 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 last_status(FALSE); /* may need to remove last status line */
1665 (void)win_comp_pos(); /* recompute window positions */
1666
1667 /* Split a window on the desired side and put the window there. */
1668 (void)win_split_ins(size, flags, curwin, dir);
1669 if (!(flags & WSP_VERT))
1670 {
1671 win_setheight(height);
1672 if (p_ea)
1673 win_equal(curwin, TRUE, 'v');
1674 }
1675
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001676#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1678 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001679 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681}
1682
1683/*
1684 * Move window "win1" to below/right of "win2" and make "win1" the current
1685 * window. Only works within the same frame!
1686 */
1687 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001688win_move_after(win_T *win1, win_T *win2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689{
1690 int height;
1691
1692 /* check if the arguments are reasonable */
1693 if (win1 == win2)
1694 return;
1695
1696 /* check if there is something to do */
1697 if (win2->w_next != win1)
1698 {
1699 /* may need move the status line/vertical separator of the last window
1700 * */
1701 if (win1 == lastwin)
1702 {
1703 height = win1->w_prev->w_status_height;
1704 win1->w_prev->w_status_height = win1->w_status_height;
1705 win1->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001706 if (win1->w_prev->w_vsep_width == 1)
1707 {
1708 /* Remove the vertical separator from the last-but-one window,
1709 * add it to the last window. Adjust the frame widths. */
1710 win1->w_prev->w_vsep_width = 0;
1711 win1->w_prev->w_frame->fr_width -= 1;
1712 win1->w_vsep_width = 1;
1713 win1->w_frame->fr_width += 1;
1714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 }
1716 else if (win2 == lastwin)
1717 {
1718 height = win1->w_status_height;
1719 win1->w_status_height = win2->w_status_height;
1720 win2->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001721 if (win1->w_vsep_width == 1)
1722 {
1723 /* Remove the vertical separator from win1, add it to the last
1724 * window, win2. Adjust the frame widths. */
1725 win2->w_vsep_width = 1;
1726 win2->w_frame->fr_width += 1;
1727 win1->w_vsep_width = 0;
1728 win1->w_frame->fr_width -= 1;
1729 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001731 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 frame_remove(win1->w_frame);
1733 win_append(win2, win1);
1734 frame_append(win2->w_frame, win1->w_frame);
1735
1736 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1737 redraw_later(NOT_VALID);
1738 }
1739 win_enter(win1, FALSE);
1740}
1741
1742/*
1743 * Make all windows the same height.
1744 * 'next_curwin' will soon be the current window, make sure it has enough
1745 * rows.
1746 */
1747 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001748win_equal(
1749 win_T *next_curwin, /* pointer to current window to be or NULL */
1750 int current, /* do only frame with current window */
1751 int dir) /* 'v' for vertically, 'h' for horizontally,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 'b' for both, 0 for using p_ead */
1753{
1754 if (dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 dir = *p_ead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001757 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001758 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759}
1760
1761/*
1762 * Set a frame to a new position and height, spreading the available room
1763 * equally over contained frames.
1764 * The window "next_curwin" (if not NULL) should at least get the size from
1765 * 'winheight' and 'winwidth' if possible.
1766 */
1767 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001768win_equal_rec(
1769 win_T *next_curwin, /* pointer to current window to be or NULL */
1770 int current, /* do only frame with current window */
1771 frame_T *topfr, /* frame to set size off */
1772 int dir, /* 'v', 'h' or 'b', see win_equal() */
1773 int col, /* horizontal position for frame */
1774 int row, /* vertical position for frame */
1775 int width, /* new width of frame */
1776 int height) /* new height of frame */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777{
1778 int n, m;
1779 int extra_sep = 0;
1780 int wincount, totwincount = 0;
1781 frame_T *fr;
1782 int next_curwin_size = 0;
1783 int room = 0;
1784 int new_size;
1785 int has_next_curwin = 0;
1786 int hnc;
1787
1788 if (topfr->fr_layout == FR_LEAF)
1789 {
1790 /* Set the width/height of this frame.
1791 * Redraw when size or position changes */
1792 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 )
1795 {
1796 topfr->fr_win->w_winrow = row;
1797 frame_new_height(topfr, height, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001799 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 redraw_all_later(CLEAR);
1801 }
1802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 else if (topfr->fr_layout == FR_ROW)
1804 {
1805 topfr->fr_width = width;
1806 topfr->fr_height = height;
1807
1808 if (dir != 'v') /* equalize frame widths */
1809 {
1810 /* Compute the maximum number of windows horizontally in this
1811 * frame. */
1812 n = frame_minwidth(topfr, NOWIN);
1813 /* add one for the rightmost window, it doesn't have a separator */
1814 if (col + width == Columns)
1815 extra_sep = 1;
1816 else
1817 extra_sep = 0;
1818 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001819 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001821 /*
1822 * Compute width for "next_curwin" window and room available for
1823 * other windows.
1824 * "m" is the minimal width when counting p_wiw for "next_curwin".
1825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 m = frame_minwidth(topfr, next_curwin);
1827 room = width - m;
1828 if (room < 0)
1829 {
1830 next_curwin_size = p_wiw + room;
1831 room = 0;
1832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 else
1834 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001835 next_curwin_size = -1;
1836 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1837 {
1838 /* If 'winfixwidth' set keep the window width if
1839 * possible.
1840 * Watch out for this window being the next_curwin. */
1841 if (frame_fixed_width(fr))
1842 {
1843 n = frame_minwidth(fr, NOWIN);
1844 new_size = fr->fr_width;
1845 if (frame_has_win(fr, next_curwin))
1846 {
1847 room += p_wiw - p_wmw;
1848 next_curwin_size = 0;
1849 if (new_size < p_wiw)
1850 new_size = p_wiw;
1851 }
1852 else
1853 /* These windows don't use up room. */
1854 totwincount -= (n + (fr->fr_next == NULL
1855 ? extra_sep : 0)) / (p_wmw + 1);
1856 room -= new_size - n;
1857 if (room < 0)
1858 {
1859 new_size += room;
1860 room = 0;
1861 }
1862 fr->fr_newwidth = new_size;
1863 }
1864 }
1865 if (next_curwin_size == -1)
1866 {
1867 if (!has_next_curwin)
1868 next_curwin_size = 0;
1869 else if (totwincount > 1
1870 && (room + (totwincount - 2))
1871 / (totwincount - 1) > p_wiw)
1872 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001873 /* Can make all windows wider than 'winwidth', spread
1874 * the room equally. */
1875 next_curwin_size = (room + p_wiw
1876 + (totwincount - 1) * p_wmw
1877 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001878 room -= next_curwin_size - p_wiw;
1879 }
1880 else
1881 next_curwin_size = p_wiw;
1882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001884
1885 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 --totwincount; /* don't count curwin */
1887 }
1888
1889 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1890 {
1891 n = m = 0;
1892 wincount = 1;
1893 if (fr->fr_next == NULL)
1894 /* last frame gets all that remains (avoid roundoff error) */
1895 new_size = width;
1896 else if (dir == 'v')
1897 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001898 else if (frame_fixed_width(fr))
1899 {
1900 new_size = fr->fr_newwidth;
1901 wincount = 0; /* doesn't count as a sizeable window */
1902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 else
1904 {
1905 /* Compute the maximum number of windows horiz. in "fr". */
1906 n = frame_minwidth(fr, NOWIN);
1907 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1908 / (p_wmw + 1);
1909 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001910 if (has_next_curwin)
1911 hnc = frame_has_win(fr, next_curwin);
1912 else
1913 hnc = FALSE;
1914 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001916 if (totwincount == 0)
1917 new_size = room;
1918 else
1919 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001921 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 {
1923 next_curwin_size -= p_wiw - (m - n);
1924 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001925 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001927 else
1928 room -= new_size;
1929 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 }
1931
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001932 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 * window, unless equalizing all frames. */
1934 if (!current || dir != 'v' || topfr->fr_parent != NULL
1935 || (new_size != fr->fr_width)
1936 || frame_has_win(fr, next_curwin))
1937 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001938 new_size, height);
1939 col += new_size;
1940 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 totwincount -= wincount;
1942 }
1943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 else /* topfr->fr_layout == FR_COL */
1945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 topfr->fr_width = width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 topfr->fr_height = height;
1948
1949 if (dir != 'h') /* equalize frame heights */
1950 {
1951 /* Compute maximum number of windows vertically in this frame. */
1952 n = frame_minheight(topfr, NOWIN);
1953 /* add one for the bottom window if it doesn't have a statusline */
1954 if (row + height == cmdline_row && p_ls == 0)
1955 extra_sep = 1;
1956 else
1957 extra_sep = 0;
1958 totwincount = (n + extra_sep) / (p_wmh + 1);
1959 has_next_curwin = frame_has_win(topfr, next_curwin);
1960
1961 /*
1962 * Compute height for "next_curwin" window and room available for
1963 * other windows.
1964 * "m" is the minimal height when counting p_wh for "next_curwin".
1965 */
1966 m = frame_minheight(topfr, next_curwin);
1967 room = height - m;
1968 if (room < 0)
1969 {
1970 /* The room is less then 'winheight', use all space for the
1971 * current window. */
1972 next_curwin_size = p_wh + room;
1973 room = 0;
1974 }
1975 else
1976 {
1977 next_curwin_size = -1;
1978 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1979 {
1980 /* If 'winfixheight' set keep the window height if
1981 * possible.
1982 * Watch out for this window being the next_curwin. */
1983 if (frame_fixed_height(fr))
1984 {
1985 n = frame_minheight(fr, NOWIN);
1986 new_size = fr->fr_height;
1987 if (frame_has_win(fr, next_curwin))
1988 {
1989 room += p_wh - p_wmh;
1990 next_curwin_size = 0;
1991 if (new_size < p_wh)
1992 new_size = p_wh;
1993 }
1994 else
1995 /* These windows don't use up room. */
1996 totwincount -= (n + (fr->fr_next == NULL
1997 ? extra_sep : 0)) / (p_wmh + 1);
1998 room -= new_size - n;
1999 if (room < 0)
2000 {
2001 new_size += room;
2002 room = 0;
2003 }
2004 fr->fr_newheight = new_size;
2005 }
2006 }
2007 if (next_curwin_size == -1)
2008 {
2009 if (!has_next_curwin)
2010 next_curwin_size = 0;
2011 else if (totwincount > 1
2012 && (room + (totwincount - 2))
2013 / (totwincount - 1) > p_wh)
2014 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002015 /* can make all windows higher than 'winheight',
2016 * spread the room equally. */
2017 next_curwin_size = (room + p_wh
2018 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 + (totwincount - 1)) / totwincount;
2020 room -= next_curwin_size - p_wh;
2021 }
2022 else
2023 next_curwin_size = p_wh;
2024 }
2025 }
2026
2027 if (has_next_curwin)
2028 --totwincount; /* don't count curwin */
2029 }
2030
2031 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
2032 {
2033 n = m = 0;
2034 wincount = 1;
2035 if (fr->fr_next == NULL)
2036 /* last frame gets all that remains (avoid roundoff error) */
2037 new_size = height;
2038 else if (dir == 'h')
2039 new_size = fr->fr_height;
2040 else if (frame_fixed_height(fr))
2041 {
2042 new_size = fr->fr_newheight;
2043 wincount = 0; /* doesn't count as a sizeable window */
2044 }
2045 else
2046 {
2047 /* Compute the maximum number of windows vert. in "fr". */
2048 n = frame_minheight(fr, NOWIN);
2049 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2050 / (p_wmh + 1);
2051 m = frame_minheight(fr, next_curwin);
2052 if (has_next_curwin)
2053 hnc = frame_has_win(fr, next_curwin);
2054 else
2055 hnc = FALSE;
2056 if (hnc) /* don't count next_curwin */
2057 --wincount;
2058 if (totwincount == 0)
2059 new_size = room;
2060 else
2061 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2062 / totwincount;
2063 if (hnc) /* add next_curwin size */
2064 {
2065 next_curwin_size -= p_wh - (m - n);
2066 new_size += next_curwin_size;
2067 room -= new_size - next_curwin_size;
2068 }
2069 else
2070 room -= new_size;
2071 new_size += n;
2072 }
2073 /* Skip frame that is full width when splitting or closing a
2074 * window, unless equalizing all frames. */
2075 if (!current || dir != 'h' || topfr->fr_parent != NULL
2076 || (new_size != fr->fr_height)
2077 || frame_has_win(fr, next_curwin))
2078 win_equal_rec(next_curwin, current, fr, dir, col, row,
2079 width, new_size);
2080 row += new_size;
2081 height -= new_size;
2082 totwincount -= wincount;
2083 }
2084 }
2085}
2086
2087/*
2088 * close all windows for buffer 'buf'
2089 */
2090 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002091close_windows(
2092 buf_T *buf,
2093 int keep_curwin) /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002095 win_T *wp;
2096 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002097 int h = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098
2099 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002100
2101 for (wp = firstwin; wp != NULL && lastwin != firstwin; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002103 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
2104#ifdef FEAT_AUTOCMD
2105 && !(wp->w_closing || wp->w_buffer->b_closing)
2106#endif
2107 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002109 win_close(wp, FALSE);
2110
2111 /* Start all over, autocommands may change the window layout. */
2112 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 }
2114 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002115 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002117
2118 /* Also check windows in other tab pages. */
2119 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2120 {
2121 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002122 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002123 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002124 if (wp->w_buffer == buf
2125#ifdef FEAT_AUTOCMD
2126 && !(wp->w_closing || wp->w_buffer->b_closing)
2127#endif
2128 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00002129 {
2130 win_close_othertab(wp, FALSE, tp);
2131
2132 /* Start all over, the tab page may be closed and
2133 * autocommands may change the window layout. */
2134 nexttp = first_tabpage;
2135 break;
2136 }
2137 }
2138
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002140
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002141 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002142 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002143 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144}
2145
2146/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002147 * Return TRUE if the current window is the only window that exists (ignoring
2148 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002149 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002150 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002151 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002152last_window(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002153{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002154 return (one_window() && first_tabpage->tp_next == NULL);
2155}
2156
2157/*
2158 * Return TRUE if there is only one window other than "aucmd_win" in the
2159 * current tab page.
2160 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002161 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002162one_window(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002163{
2164#ifdef FEAT_AUTOCMD
2165 win_T *wp;
2166 int seen_one = FALSE;
2167
2168 FOR_ALL_WINDOWS(wp)
2169 {
2170 if (wp != aucmd_win)
2171 {
2172 if (seen_one)
2173 return FALSE;
2174 seen_one = TRUE;
2175 }
2176 }
2177 return TRUE;
2178#else
2179 return firstwin == lastwin;
2180#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002181}
2182
2183/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002184 * Close the possibly last window in a tab page.
2185 * Returns TRUE when the window was closed already.
2186 */
2187 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002188close_last_window_tabpage(
2189 win_T *win,
2190 int free_buf,
2191 tabpage_T *prev_curtab)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002192{
2193 if (firstwin == lastwin)
2194 {
Bram Moolenaar07729b22013-05-15 23:13:10 +02002195#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002196 buf_T *old_curbuf = curbuf;
Bram Moolenaar07729b22013-05-15 23:13:10 +02002197#endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002198
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002199 /*
2200 * Closing the last window in a tab page. First go to another tab
2201 * page and then close the window and the tab page. This avoids that
2202 * curwin and curtab are invalid while we are freeing memory, they may
2203 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002204 * Don't trigger autocommands yet, they may use wrong values, so do
2205 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002206 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002207 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002208 redraw_tabline = TRUE;
2209
2210 /* Safety check: Autocommands may have closed the window when jumping
2211 * to the other tab page. */
2212 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2213 {
2214 int h = tabline_height();
2215
2216 win_close_othertab(win, free_buf, prev_curtab);
2217 if (h != tabline_height())
2218 shell_new_rows();
2219 }
Bram Moolenaara8596c42012-06-13 14:28:20 +02002220 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2221 * that now. */
2222#ifdef FEAT_AUTOCMD
Bram Moolenaara8596c42012-06-13 14:28:20 +02002223 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002224 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2225 if (old_curbuf != curbuf)
2226 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002227#endif
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002228 return TRUE;
2229 }
2230 return FALSE;
2231}
2232
2233/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002234 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 * If "free_buf" is TRUE related buffer may be unloaded.
2236 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002237 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002238 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002240 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002241win_close(win_T *win, int free_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242{
2243 win_T *wp;
2244#ifdef FEAT_AUTOCMD
2245 int other_buffer = FALSE;
2246#endif
2247 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 int dir;
2249 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002250 tabpage_T *prev_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002252 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 {
2254 EMSG(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002255 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 }
2257
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002258#ifdef FEAT_AUTOCMD
Bram Moolenaar756287d2012-07-06 16:39:47 +02002259 if (win->w_closing || (win->w_buffer != NULL && win->w_buffer->b_closing))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002260 return FAIL; /* window is already being closed */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002261 if (win == aucmd_win)
2262 {
2263 EMSG(_("E813: Cannot close autocmd window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002264 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002265 }
2266 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2267 {
2268 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002269 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002270 }
2271#endif
2272
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002273 /* When closing the last window in a tab page first go to another tab page
2274 * and then close the window and the tab page to avoid that curwin and
2275 * curtab are invalid while we are freeing memory. */
2276 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002277 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002278
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 /* When closing the help window, try restoring a snapshot after closing
2280 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002281 if (win->w_buffer != NULL && win->w_buffer->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 help_window = TRUE;
2283 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002284 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
2286#ifdef FEAT_AUTOCMD
2287 if (win == curwin)
2288 {
2289 /*
2290 * Guess which window is going to be the new current window.
2291 * This may change because of the autocommands (sigh).
2292 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002293 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294
2295 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002296 * Be careful: If autocommands delete the window or cause this window
2297 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 */
2299 if (wp->w_buffer != curbuf)
2300 {
2301 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002302 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002304 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002305 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002306 win->w_closing = FALSE;
2307 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002308 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002310 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002312 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002313 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002314 win->w_closing = FALSE;
2315 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002316 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317# ifdef FEAT_EVAL
2318 /* autocmds may abort script processing */
2319 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002320 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321# endif
2322 }
2323#endif
2324
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002325#ifdef FEAT_GUI
2326 /* Avoid trouble with scrollbars that are going to be deleted in
2327 * win_free(). */
2328 if (gui.in_use)
2329 out_flush();
2330#endif
2331
Bram Moolenaara971b822011-09-14 14:43:25 +02002332#ifdef FEAT_SYN_HL
2333 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002334 if (win->w_buffer != NULL)
2335 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002336#endif
2337
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 /*
2339 * Close the link to the buffer.
2340 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002341 if (win->w_buffer != NULL)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002342 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002343 bufref_T bufref;
2344
2345 set_bufref(&bufref, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002346#ifdef FEAT_AUTOCMD
2347 win->w_closing = TRUE;
2348#endif
Bram Moolenaar8f913992012-08-29 15:50:26 +02002349 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002350#ifdef FEAT_AUTOCMD
2351 if (win_valid(win))
2352 win->w_closing = FALSE;
2353#endif
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002354 /* Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2355 * "wipe". */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002356 if (!bufref_valid(&bufref))
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002357 curbuf = firstbuf;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002358 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002359
Bram Moolenaar802418d2013-01-17 14:00:11 +01002360 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2361 && (last_window() || curtab != prev_curtab
2362 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002363 {
2364 /* Autocommands have close all windows, quit now. Restore
2365 * curwin->w_buffer, otherwise writing viminfo may fail. */
2366 if (curwin->w_buffer == NULL)
2367 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002368 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002369 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002370
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 /* Autocommands may have closed the window already, or closed the only
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002372 * other window or moved to another tab page. */
Bram Moolenaar802418d2013-01-17 14:00:11 +01002373 else if (!win_valid(win) || last_window() || curtab != prev_curtab
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002374 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002375 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
Bram Moolenaara971b822011-09-14 14:43:25 +02002377 /* Free the memory used for the window and get the window that received
2378 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002379 wp = win_free_mem(win, &dir, NULL);
2380
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 /* Make sure curwin isn't invalid. It can cause severe trouble when
2382 * printing an error message. For win_equal() curbuf needs to be valid
2383 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002384 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 {
2386 curwin = wp;
2387#ifdef FEAT_QUICKFIX
2388 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2389 {
2390 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002391 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 * finding another window to go to.
2393 */
2394 for (;;)
2395 {
2396 if (wp->w_next == NULL)
2397 wp = firstwin;
2398 else
2399 wp = wp->w_next;
2400 if (wp == curwin)
2401 break;
2402 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2403 {
2404 curwin = wp;
2405 break;
2406 }
2407 }
2408 }
2409#endif
2410 curbuf = curwin->w_buffer;
2411 close_curwin = TRUE;
2412 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002413 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
2414 win_equal(curwin, TRUE, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 else
2416 win_comp_pos();
2417 if (close_curwin)
2418 {
Bram Moolenaarc917da42016-07-19 22:31:36 +02002419 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420#ifdef FEAT_AUTOCMD
2421 if (other_buffer)
2422 /* careful: after this wp and win may be invalid! */
2423 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2424#endif
2425 }
2426
2427 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002428 * If last window has a status line now and we don't want one,
2429 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 */
2431 last_status(FALSE);
2432
2433 /* After closing the help window, try restoring the window layout from
2434 * before it was opened. */
2435 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002436 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002438#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2440 if (gui.in_use && !win_hasvertsplit())
2441 gui_init_which_components(NULL);
2442#endif
2443
2444 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002445 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446}
2447
2448/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002449 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002450 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002451 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002452 * Caller must check if buffer is hidden and whether the tabline needs to be
2453 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002454 */
2455 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002456win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002457{
2458 win_T *wp;
2459 int dir;
2460 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002461 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002462
Bram Moolenaar362ce482012-06-06 19:02:45 +02002463#ifdef FEAT_AUTOCMD
2464 if (win->w_closing || win->w_buffer->b_closing)
2465 return; /* window is already being closed */
2466#endif
2467
Bram Moolenaarf740b292006-02-16 22:11:02 +00002468 /* Close the link to the buffer. */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002469 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002470
2471 /* Careful: Autocommands may have closed the tab page or made it the
2472 * current tab page. */
2473 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2474 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002475 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002476 return;
2477
2478 /* Autocommands may have closed the window already. */
2479 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2480 ;
2481 if (wp == NULL)
2482 return;
2483
Bram Moolenaarf740b292006-02-16 22:11:02 +00002484 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002485 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002486 {
2487 if (tp == first_tabpage)
2488 first_tabpage = tp->tp_next;
2489 else
2490 {
2491 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2492 ptp = ptp->tp_next)
2493 ;
2494 if (ptp == NULL)
2495 {
2496 EMSG2(_(e_intern2), "win_close_othertab()");
2497 return;
2498 }
2499 ptp->tp_next = tp->tp_next;
2500 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002501 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002502 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002503
2504 /* Free the memory used for the window. */
2505 win_free_mem(win, &dir, tp);
2506
2507 if (free_tp)
2508 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002509}
2510
2511/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002512 * Free the memory used for a window.
2513 * Returns a pointer to the window that got the freed up space.
2514 */
2515 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002516win_free_mem(
2517 win_T *win,
2518 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2519 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002520{
2521 frame_T *frp;
2522 win_T *wp;
2523
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002524 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002525 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002526 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002527 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002528 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002529
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002530 /* When deleting the current window of another tab page select a new
2531 * current window. */
2532 if (tp != NULL && win == tp->tp_curwin)
2533 tp->tp_curwin = wp;
2534
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002535 return wp;
2536}
2537
2538#if defined(EXITFREE) || defined(PROTO)
2539 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002540win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002541{
2542 int dummy;
2543
Bram Moolenaarf740b292006-02-16 22:11:02 +00002544# ifdef FEAT_WINDOWS
2545 while (first_tabpage->tp_next != NULL)
2546 tabpage_close(TRUE);
2547# endif
2548
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002549# ifdef FEAT_AUTOCMD
2550 if (aucmd_win != NULL)
2551 {
2552 (void)win_free_mem(aucmd_win, &dummy, NULL);
2553 aucmd_win = NULL;
2554 }
2555# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002556
2557 while (firstwin != NULL)
2558 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002559
2560 /* No window should be used after this. Set curwin to NULL to crash
2561 * instead of using freed memory. */
2562 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002563}
2564#endif
2565
2566/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 * Remove a window and its frame from the tree of frames.
2568 * Returns a pointer to the window that got the freed up space.
2569 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002570 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002571winframe_remove(
2572 win_T *win,
2573 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2574 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575{
2576 frame_T *frp, *frp2, *frp3;
2577 frame_T *frp_close = win->w_frame;
2578 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
2580 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002581 * If there is only one window there is nothing to remove.
2582 */
2583 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
2584 return NULL;
2585
2586 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 * Remove the window from its frame.
2588 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002589 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 wp = frame2win(frp2);
2591
2592 /* Remove this frame from the list of frames. */
2593 frame_remove(frp_close);
2594
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 if (frp_close->fr_parent->fr_layout == FR_COL)
2596 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002597 /* When 'winfixheight' is set, try to find another frame in the column
2598 * (as close to the closed frame as possible) to distribute the height
2599 * to. */
2600 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2601 {
2602 frp = frp_close->fr_prev;
2603 frp3 = frp_close->fr_next;
2604 while (frp != NULL || frp3 != NULL)
2605 {
2606 if (frp != NULL)
2607 {
2608 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2609 {
2610 frp2 = frp;
2611 wp = frp->fr_win;
2612 break;
2613 }
2614 frp = frp->fr_prev;
2615 }
2616 if (frp3 != NULL)
2617 {
2618 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2619 {
2620 frp2 = frp3;
2621 wp = frp3->fr_win;
2622 break;
2623 }
2624 frp3 = frp3->fr_next;
2625 }
2626 }
2627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2629 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 *dirp = 'v';
2631 }
2632 else
2633 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002634 /* When 'winfixwidth' is set, try to find another frame in the column
2635 * (as close to the closed frame as possible) to distribute the width
2636 * to. */
2637 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2638 {
2639 frp = frp_close->fr_prev;
2640 frp3 = frp_close->fr_next;
2641 while (frp != NULL || frp3 != NULL)
2642 {
2643 if (frp != NULL)
2644 {
2645 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2646 {
2647 frp2 = frp;
2648 wp = frp->fr_win;
2649 break;
2650 }
2651 frp = frp->fr_prev;
2652 }
2653 if (frp3 != NULL)
2654 {
2655 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2656 {
2657 frp2 = frp3;
2658 wp = frp3->fr_win;
2659 break;
2660 }
2661 frp3 = frp3->fr_next;
2662 }
2663 }
2664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002666 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 *dirp = 'h';
2668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
2670 /* If rows/columns go to a window below/right its positions need to be
2671 * updated. Can only be done after the sizes have been updated. */
2672 if (frp2 == frp_close->fr_next)
2673 {
2674 int row = win->w_winrow;
2675 int col = W_WINCOL(win);
2676
2677 frame_comp_pos(frp2, &row, &col);
2678 }
2679
2680 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2681 {
2682 /* There is no other frame in this list, move its info to the parent
2683 * and remove it. */
2684 frp2->fr_parent->fr_layout = frp2->fr_layout;
2685 frp2->fr_parent->fr_child = frp2->fr_child;
2686 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2687 frp->fr_parent = frp2->fr_parent;
2688 frp2->fr_parent->fr_win = frp2->fr_win;
2689 if (frp2->fr_win != NULL)
2690 frp2->fr_win->w_frame = frp2->fr_parent;
2691 frp = frp2->fr_parent;
2692 vim_free(frp2);
2693
2694 frp2 = frp->fr_parent;
2695 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2696 {
2697 /* The frame above the parent has the same layout, have to merge
2698 * the frames into this list. */
2699 if (frp2->fr_child == frp)
2700 frp2->fr_child = frp->fr_child;
2701 frp->fr_child->fr_prev = frp->fr_prev;
2702 if (frp->fr_prev != NULL)
2703 frp->fr_prev->fr_next = frp->fr_child;
2704 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2705 {
2706 frp3->fr_parent = frp2;
2707 if (frp3->fr_next == NULL)
2708 {
2709 frp3->fr_next = frp->fr_next;
2710 if (frp->fr_next != NULL)
2711 frp->fr_next->fr_prev = frp3;
2712 break;
2713 }
2714 }
2715 vim_free(frp);
2716 }
2717 }
2718
2719 return wp;
2720}
2721
2722/*
2723 * Find out which frame is going to get the freed up space when "win" is
2724 * closed.
2725 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2726 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2727 * This makes opening a window and closing it immediately keep the same window
2728 * layout.
2729 */
2730 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002731win_altframe(
2732 win_T *win,
2733 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 frame_T *frp;
2736 int b;
2737
Bram Moolenaarf740b292006-02-16 22:11:02 +00002738 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002739 /* Last window in this tab page, will go to next tab page. */
2740 return alt_tabpage()->tp_curwin->w_frame;
2741
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 frp = win->w_frame;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002743 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 b = p_spr;
2745 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 b = p_sb;
2747 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2748 return frp->fr_next;
2749 return frp->fr_prev;
2750}
2751
2752/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002753 * Return the tabpage that will be used if the current one is closed.
2754 */
2755 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002756alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002757{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002758 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002759
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002760 /* Use the next tab page if possible. */
2761 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002762 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002763
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002764 /* Find the last but one tab page. */
2765 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2766 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002767 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002768}
2769
2770/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 * Find the left-upper window in frame "frp".
2772 */
2773 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002774frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775{
2776 while (frp->fr_win == NULL)
2777 frp = frp->fr_child;
2778 return frp->fr_win;
2779}
2780
2781/*
2782 * Return TRUE if frame "frp" contains window "wp".
2783 */
2784 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002785frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786{
2787 frame_T *p;
2788
2789 if (frp->fr_layout == FR_LEAF)
2790 return frp->fr_win == wp;
2791
2792 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2793 if (frame_has_win(p, wp))
2794 return TRUE;
2795 return FALSE;
2796}
2797
2798/*
2799 * Set a new height for a frame. Recursively sets the height for contained
2800 * frames and windows. Caller must take care of positions.
2801 */
2802 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002803frame_new_height(
2804 frame_T *topfrp,
2805 int height,
2806 int topfirst, /* resize topmost contained frame first */
2807 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 may cause the height not to be set */
2809{
2810 frame_T *frp;
2811 int extra_lines;
2812 int h;
2813
2814 if (topfrp->fr_win != NULL)
2815 {
2816 /* Simple case: just one window. */
2817 win_new_height(topfrp->fr_win,
2818 height - topfrp->fr_win->w_status_height);
2819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 else if (topfrp->fr_layout == FR_ROW)
2821 {
2822 do
2823 {
2824 /* All frames in this row get the same new height. */
2825 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2826 {
2827 frame_new_height(frp, height, topfirst, wfh);
2828 if (frp->fr_height > height)
2829 {
2830 /* Could not fit the windows, make the whole row higher. */
2831 height = frp->fr_height;
2832 break;
2833 }
2834 }
2835 }
2836 while (frp != NULL);
2837 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002838 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 {
2840 /* Complicated case: Resize a column of frames. Resize the bottom
2841 * frame first, frames above that when needed. */
2842
2843 frp = topfrp->fr_child;
2844 if (wfh)
2845 /* Advance past frames with one window with 'wfh' set. */
2846 while (frame_fixed_height(frp))
2847 {
2848 frp = frp->fr_next;
2849 if (frp == NULL)
2850 return; /* no frame without 'wfh', give up */
2851 }
2852 if (!topfirst)
2853 {
2854 /* Find the bottom frame of this column */
2855 while (frp->fr_next != NULL)
2856 frp = frp->fr_next;
2857 if (wfh)
2858 /* Advance back for frames with one window with 'wfh' set. */
2859 while (frame_fixed_height(frp))
2860 frp = frp->fr_prev;
2861 }
2862
2863 extra_lines = height - topfrp->fr_height;
2864 if (extra_lines < 0)
2865 {
2866 /* reduce height of contained frames, bottom or top frame first */
2867 while (frp != NULL)
2868 {
2869 h = frame_minheight(frp, NULL);
2870 if (frp->fr_height + extra_lines < h)
2871 {
2872 extra_lines += frp->fr_height - h;
2873 frame_new_height(frp, h, topfirst, wfh);
2874 }
2875 else
2876 {
2877 frame_new_height(frp, frp->fr_height + extra_lines,
2878 topfirst, wfh);
2879 break;
2880 }
2881 if (topfirst)
2882 {
2883 do
2884 frp = frp->fr_next;
2885 while (wfh && frp != NULL && frame_fixed_height(frp));
2886 }
2887 else
2888 {
2889 do
2890 frp = frp->fr_prev;
2891 while (wfh && frp != NULL && frame_fixed_height(frp));
2892 }
2893 /* Increase "height" if we could not reduce enough frames. */
2894 if (frp == NULL)
2895 height -= extra_lines;
2896 }
2897 }
2898 else if (extra_lines > 0)
2899 {
2900 /* increase height of bottom or top frame */
2901 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2902 }
2903 }
2904 topfrp->fr_height = height;
2905}
2906
2907/*
2908 * Return TRUE if height of frame "frp" should not be changed because of
2909 * the 'winfixheight' option.
2910 */
2911 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002912frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913{
2914 /* frame with one window: fixed height if 'winfixheight' set. */
2915 if (frp->fr_win != NULL)
2916 return frp->fr_win->w_p_wfh;
2917
2918 if (frp->fr_layout == FR_ROW)
2919 {
2920 /* The frame is fixed height if one of the frames in the row is fixed
2921 * height. */
2922 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2923 if (frame_fixed_height(frp))
2924 return TRUE;
2925 return FALSE;
2926 }
2927
2928 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2929 * frames in the row are fixed height. */
2930 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2931 if (!frame_fixed_height(frp))
2932 return FALSE;
2933 return TRUE;
2934}
2935
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002937 * Return TRUE if width of frame "frp" should not be changed because of
2938 * the 'winfixwidth' option.
2939 */
2940 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002941frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002942{
2943 /* frame with one window: fixed width if 'winfixwidth' set. */
2944 if (frp->fr_win != NULL)
2945 return frp->fr_win->w_p_wfw;
2946
2947 if (frp->fr_layout == FR_COL)
2948 {
2949 /* The frame is fixed width if one of the frames in the row is fixed
2950 * width. */
2951 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2952 if (frame_fixed_width(frp))
2953 return TRUE;
2954 return FALSE;
2955 }
2956
2957 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2958 * frames in the row are fixed width. */
2959 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2960 if (!frame_fixed_width(frp))
2961 return FALSE;
2962 return TRUE;
2963}
2964
2965/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 * Add a status line to windows at the bottom of "frp".
2967 * Note: Does not check if there is room!
2968 */
2969 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002970frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971{
2972 win_T *wp;
2973
2974 if (frp->fr_layout == FR_LEAF)
2975 {
2976 wp = frp->fr_win;
2977 if (wp->w_status_height == 0)
2978 {
2979 if (wp->w_height > 0) /* don't make it negative */
2980 --wp->w_height;
2981 wp->w_status_height = STATUS_HEIGHT;
2982 }
2983 }
2984 else if (frp->fr_layout == FR_ROW)
2985 {
2986 /* Handle all the frames in the row. */
2987 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2988 frame_add_statusline(frp);
2989 }
2990 else /* frp->fr_layout == FR_COL */
2991 {
2992 /* Only need to handle the last frame in the column. */
2993 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
2994 ;
2995 frame_add_statusline(frp);
2996 }
2997}
2998
2999/*
3000 * Set width of a frame. Handles recursively going through contained frames.
3001 * May remove separator line for windows at the right side (for win_close()).
3002 */
3003 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003004frame_new_width(
3005 frame_T *topfrp,
3006 int width,
3007 int leftfirst, /* resize leftmost contained frame first */
3008 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003009 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010{
3011 frame_T *frp;
3012 int extra_cols;
3013 int w;
3014 win_T *wp;
3015
3016 if (topfrp->fr_layout == FR_LEAF)
3017 {
3018 /* Simple case: just one window. */
3019 wp = topfrp->fr_win;
3020 /* Find out if there are any windows right of this one. */
3021 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3022 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3023 break;
3024 if (frp->fr_parent == NULL)
3025 wp->w_vsep_width = 0;
3026 win_new_width(wp, width - wp->w_vsep_width);
3027 }
3028 else if (topfrp->fr_layout == FR_COL)
3029 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003030 do
3031 {
3032 /* All frames in this column get the same new width. */
3033 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3034 {
3035 frame_new_width(frp, width, leftfirst, wfw);
3036 if (frp->fr_width > width)
3037 {
3038 /* Could not fit the windows, make whole column wider. */
3039 width = frp->fr_width;
3040 break;
3041 }
3042 }
3043 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 }
3045 else /* fr_layout == FR_ROW */
3046 {
3047 /* Complicated case: Resize a row of frames. Resize the rightmost
3048 * frame first, frames left of it when needed. */
3049
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003051 if (wfw)
3052 /* Advance past frames with one window with 'wfw' set. */
3053 while (frame_fixed_width(frp))
3054 {
3055 frp = frp->fr_next;
3056 if (frp == NULL)
3057 return; /* no frame without 'wfw', give up */
3058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003060 {
3061 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 while (frp->fr_next != NULL)
3063 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003064 if (wfw)
3065 /* Advance back for frames with one window with 'wfw' set. */
3066 while (frame_fixed_width(frp))
3067 frp = frp->fr_prev;
3068 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
3070 extra_cols = width - topfrp->fr_width;
3071 if (extra_cols < 0)
3072 {
3073 /* reduce frame width, rightmost frame first */
3074 while (frp != NULL)
3075 {
3076 w = frame_minwidth(frp, NULL);
3077 if (frp->fr_width + extra_cols < w)
3078 {
3079 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003080 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 }
3082 else
3083 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003084 frame_new_width(frp, frp->fr_width + extra_cols,
3085 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 break;
3087 }
3088 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003089 {
3090 do
3091 frp = frp->fr_next;
3092 while (wfw && frp != NULL && frame_fixed_width(frp));
3093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003095 {
3096 do
3097 frp = frp->fr_prev;
3098 while (wfw && frp != NULL && frame_fixed_width(frp));
3099 }
3100 /* Increase "width" if we could not reduce enough frames. */
3101 if (frp == NULL)
3102 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 }
3104 }
3105 else if (extra_cols > 0)
3106 {
3107 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003108 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 }
3110 }
3111 topfrp->fr_width = width;
3112}
3113
3114/*
3115 * Add the vertical separator to windows at the right side of "frp".
3116 * Note: Does not check if there is room!
3117 */
3118 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003119frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120{
3121 win_T *wp;
3122
3123 if (frp->fr_layout == FR_LEAF)
3124 {
3125 wp = frp->fr_win;
3126 if (wp->w_vsep_width == 0)
3127 {
3128 if (wp->w_width > 0) /* don't make it negative */
3129 --wp->w_width;
3130 wp->w_vsep_width = 1;
3131 }
3132 }
3133 else if (frp->fr_layout == FR_COL)
3134 {
3135 /* Handle all the frames in the column. */
3136 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3137 frame_add_vsep(frp);
3138 }
3139 else /* frp->fr_layout == FR_ROW */
3140 {
3141 /* Only need to handle the last frame in the row. */
3142 frp = frp->fr_child;
3143 while (frp->fr_next != NULL)
3144 frp = frp->fr_next;
3145 frame_add_vsep(frp);
3146 }
3147}
3148
3149/*
3150 * Set frame width from the window it contains.
3151 */
3152 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003153frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154{
3155 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3156}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157
3158/*
3159 * Set frame height from the window it contains.
3160 */
3161 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003162frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163{
3164 wp->w_frame->fr_height = wp->w_height + wp->w_status_height;
3165}
3166
3167/*
3168 * Compute the minimal height for frame "topfrp".
3169 * Uses the 'winminheight' option.
3170 * When "next_curwin" isn't NULL, use p_wh for this window.
3171 * When "next_curwin" is NOWIN, don't use at least one line for the current
3172 * window.
3173 */
3174 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003175frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176{
3177 frame_T *frp;
3178 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180
3181 if (topfrp->fr_win != NULL)
3182 {
3183 if (topfrp->fr_win == next_curwin)
3184 m = p_wh + topfrp->fr_win->w_status_height;
3185 else
3186 {
3187 /* window: minimal height of the window plus status line */
3188 m = p_wmh + topfrp->fr_win->w_status_height;
3189 /* Current window is minimal one line high */
3190 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3191 ++m;
3192 }
3193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 else if (topfrp->fr_layout == FR_ROW)
3195 {
3196 /* get the minimal height from each frame in this row */
3197 m = 0;
3198 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3199 {
3200 n = frame_minheight(frp, next_curwin);
3201 if (n > m)
3202 m = n;
3203 }
3204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 else
3206 {
3207 /* Add up the minimal heights for all frames in this column. */
3208 m = 0;
3209 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3210 m += frame_minheight(frp, next_curwin);
3211 }
3212
3213 return m;
3214}
3215
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216/*
3217 * Compute the minimal width for frame "topfrp".
3218 * When "next_curwin" isn't NULL, use p_wiw for this window.
3219 * When "next_curwin" is NOWIN, don't use at least one column for the current
3220 * window.
3221 */
3222 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003223frame_minwidth(
3224 frame_T *topfrp,
3225 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226{
3227 frame_T *frp;
3228 int m, n;
3229
3230 if (topfrp->fr_win != NULL)
3231 {
3232 if (topfrp->fr_win == next_curwin)
3233 m = p_wiw + topfrp->fr_win->w_vsep_width;
3234 else
3235 {
3236 /* window: minimal width of the window plus separator column */
3237 m = p_wmw + topfrp->fr_win->w_vsep_width;
3238 /* Current window is minimal one column wide */
3239 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3240 ++m;
3241 }
3242 }
3243 else if (topfrp->fr_layout == FR_COL)
3244 {
3245 /* get the minimal width from each frame in this column */
3246 m = 0;
3247 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3248 {
3249 n = frame_minwidth(frp, next_curwin);
3250 if (n > m)
3251 m = n;
3252 }
3253 }
3254 else
3255 {
3256 /* Add up the minimal widths for all frames in this row. */
3257 m = 0;
3258 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3259 m += frame_minwidth(frp, next_curwin);
3260 }
3261
3262 return m;
3263}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
3265
3266/*
3267 * Try to close all windows except current one.
3268 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3269 * used and the buffer was modified.
3270 *
3271 * Used by ":bdel" and ":only".
3272 */
3273 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003274close_others(
3275 int message,
3276 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277{
3278 win_T *wp;
3279 win_T *nextwp;
3280 int r;
3281
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003282 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 {
3284 if (message
3285#ifdef FEAT_AUTOCMD
3286 && !autocmd_busy
3287#endif
3288 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003289 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 return;
3291 }
3292
3293 /* Be very careful here: autocommands may change the window layout. */
3294 for (wp = firstwin; win_valid(wp); wp = nextwp)
3295 {
3296 nextwp = wp->w_next;
3297 if (wp != curwin) /* don't close current window */
3298 {
3299
3300 /* Check if it's allowed to abandon this window */
3301 r = can_abandon(wp->w_buffer, forceit);
3302#ifdef FEAT_AUTOCMD
3303 if (!win_valid(wp)) /* autocommands messed wp up */
3304 {
3305 nextwp = firstwin;
3306 continue;
3307 }
3308#endif
3309 if (!r)
3310 {
3311#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3312 if (message && (p_confirm || cmdmod.confirm) && p_write)
3313 {
3314 dialog_changed(wp->w_buffer, FALSE);
3315# ifdef FEAT_AUTOCMD
3316 if (!win_valid(wp)) /* autocommands messed wp up */
3317 {
3318 nextwp = firstwin;
3319 continue;
3320 }
3321# endif
3322 }
3323 if (bufIsChanged(wp->w_buffer))
3324#endif
3325 continue;
3326 }
3327 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer));
3328 }
3329 }
3330
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003331 if (message && lastwin != firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 EMSG(_("E445: Other window contains changes"));
3333}
3334
3335#endif /* FEAT_WINDOWS */
3336
3337/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003338 * Init the current window "curwin".
3339 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 */
3341 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003342curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003344 win_init_empty(curwin);
3345}
3346
3347 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003348win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003349{
3350 redraw_win_later(wp, NOT_VALID);
3351 wp->w_lines_valid = 0;
3352 wp->w_cursor.lnum = 1;
3353 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003355 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003357 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3358 wp->w_pcmark.col = 0;
3359 wp->w_prev_pcmark.lnum = 0;
3360 wp->w_prev_pcmark.col = 0;
3361 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003363 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003365 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003367 if (wp->w_p_rl)
3368 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003370 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003372#ifdef FEAT_SYN_HL
3373 wp->w_s = &wp->w_buffer->b_s;
3374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375}
3376
3377/*
3378 * Allocate the first window and put an empty buffer in it.
3379 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003380 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003382 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003383win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003385 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003386 return FAIL;
3387
3388#ifdef FEAT_WINDOWS
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003389 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003390 if (first_tabpage == NULL)
3391 return FAIL;
3392 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003393 curtab = first_tabpage;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003394#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003395
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003396 return OK;
3397}
3398
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003399#if defined(FEAT_AUTOCMD) || defined(PROTO)
3400/*
3401 * Init "aucmd_win". This can only be done after the first
3402 * window is fully initialized, thus it can't be in win_alloc_first().
3403 */
3404 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003405win_alloc_aucmd_win(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003406{
3407 aucmd_win = win_alloc(NULL, TRUE);
3408 if (aucmd_win != NULL)
3409 {
3410 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003411 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003412 new_frame(aucmd_win);
3413 }
3414}
3415#endif
3416
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003417/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003418 * Allocate the first window or the first window in a new tab page.
3419 * When "oldwin" is NULL create an empty buffer for it.
3420 * When "oldwin" is not NULL copy info from it to the new window (only with
3421 * FEAT_WINDOWS).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003422 * Return FAIL when something goes wrong (out of memory).
3423 */
3424 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003425win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003426{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003427 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003428 if (oldwin == NULL)
3429 {
3430 /* Very first window, need to create an empty buffer for it and
3431 * initialize from scratch. */
3432 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3433 if (curwin == NULL || curbuf == NULL)
3434 return FAIL;
3435 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003436#ifdef FEAT_SYN_HL
3437 curwin->w_s = &(curbuf->b_s);
3438#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003439 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440#ifdef FEAT_WINDOWS
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003441 curwin->w_alist = &global_alist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003443 curwin_init(); /* init current window */
3444 }
3445#ifdef FEAT_WINDOWS
3446 else
3447 {
3448 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003449 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003450
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003451 /* We don't want cursor- and scroll-binding in the first window. */
3452 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003453 }
3454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003456 new_frame(curwin);
3457 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003458 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003459 topframe = curwin->w_frame;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003460#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 topframe->fr_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 topframe->fr_height = Rows - p_ch;
3464 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003465
3466 return OK;
3467}
3468
3469/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003470 * Create a frame for window "wp".
3471 */
3472 static void
3473new_frame(win_T *wp)
3474{
3475 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3476
3477 wp->w_frame = frp;
3478 if (frp != NULL)
3479 {
3480 frp->fr_layout = FR_LEAF;
3481 frp->fr_win = wp;
3482 }
3483}
3484
3485/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003486 * Initialize the window and frame size to the maximum.
3487 */
3488 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003489win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003490{
3491 firstwin->w_height = ROWS_AVAIL;
3492 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003493#ifdef FEAT_WINDOWS
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003494 firstwin->w_width = Columns;
3495 topframe->fr_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497}
3498
3499#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003500
3501/*
3502 * Allocate a new tabpage_T and init the values.
3503 * Returns NULL when out of memory.
3504 */
3505 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003506alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003507{
3508 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003509# ifdef FEAT_GUI
3510 int i;
3511# endif
3512
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003513
3514 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003515 if (tp == NULL)
3516 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003517
Bram Moolenaar429fa852013-04-15 12:27:36 +02003518# ifdef FEAT_EVAL
3519 /* init t: variables */
3520 tp->tp_vars = dict_alloc();
3521 if (tp->tp_vars == NULL)
3522 {
3523 vim_free(tp);
3524 return NULL;
3525 }
3526 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3527# endif
3528
3529# ifdef FEAT_GUI
3530 for (i = 0; i < 3; i++)
3531 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003532# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003533# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003534 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003535# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003536 tp->tp_ch_used = p_ch;
3537
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003538 return tp;
3539}
3540
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003541 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003542free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003543{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003544 int idx;
3545
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003546# ifdef FEAT_DIFF
3547 diff_clear(tp);
3548# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003549 for (idx = 0; idx < SNAP_COUNT; ++idx)
3550 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003551#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003552 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3553 hash_init(&tp->tp_vars->dv_hashtab);
3554 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003555#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003556
3557#ifdef FEAT_PYTHON
3558 python_tabpage_free(tp);
3559#endif
3560
3561#ifdef FEAT_PYTHON3
3562 python3_tabpage_free(tp);
3563#endif
3564
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003565 vim_free(tp);
3566}
3567
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003568/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003569 * Create a new Tab page with one window.
3570 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003571 * When "after" is 0 put it just after the current Tab page.
3572 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003573 * Return FAIL or OK.
3574 */
3575 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003576win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003577{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003578 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003579 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003580 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003581
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003582 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003583 if (newtp == NULL)
3584 return FAIL;
3585
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003586 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003587 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003588 {
3589 vim_free(newtp);
3590 return FAIL;
3591 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003592 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003593
3594 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003595 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003596 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003597 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003598 if (after == 1)
3599 {
3600 /* New tab page becomes the first one. */
3601 newtp->tp_next = first_tabpage;
3602 first_tabpage = newtp;
3603 }
3604 else
3605 {
3606 if (after > 0)
3607 {
3608 /* Put new tab page before tab page "after". */
3609 n = 2;
3610 for (tp = first_tabpage; tp->tp_next != NULL
3611 && n < after; tp = tp->tp_next)
3612 ++n;
3613 }
3614 newtp->tp_next = tp->tp_next;
3615 tp->tp_next = newtp;
3616 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003617 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003618 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003619 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003620
3621 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003622 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003623
3624#if defined(FEAT_GUI)
3625 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3626 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003627 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003628#endif
3629
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003630 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003631#ifdef FEAT_AUTOCMD
Bram Moolenaarc917da42016-07-19 22:31:36 +02003632 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003633 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003634 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003635 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003636#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003637 return OK;
3638 }
3639
3640 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003641 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003642 return FAIL;
3643}
3644
3645/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003646 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3647 * like with ":split".
3648 * Returns OK if a new tab page was created, FAIL otherwise.
3649 */
3650 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003651may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003652{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003653 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003654
Bram Moolenaard326ce82007-03-11 14:48:29 +00003655 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003656 {
3657 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003658 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003659 return win_new_tabpage(n);
3660 }
3661 return FAIL;
3662}
3663
3664/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003665 * Create up to "maxcount" tabpages with empty windows.
3666 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003667 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003668 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003669make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003670{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003671 int count = maxcount;
3672 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003673
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003674 /* Limit to 'tabpagemax' tabs. */
3675 if (count > p_tpm)
3676 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003677
3678#ifdef FEAT_AUTOCMD
3679 /*
3680 * Don't execute autocommands while creating the tab pages. Must do that
3681 * when putting the buffers in the windows.
3682 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003683 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003684#endif
3685
3686 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003687 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003688 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003689
3690#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003691 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003692#endif
3693
3694 /* return actual number of tab pages */
3695 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003696}
3697
3698/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003699 * Return TRUE when "tpc" points to a valid tab page.
3700 */
3701 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003702valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003703{
3704 tabpage_T *tp;
3705
3706 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3707 if (tp == tpc)
3708 return TRUE;
3709 return FALSE;
3710}
3711
3712/*
3713 * Find tab page "n" (first one is 1). Returns NULL when not found.
3714 */
3715 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003716find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003717{
3718 tabpage_T *tp;
3719 int i = 1;
3720
3721 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3722 ++i;
3723 return tp;
3724}
3725
3726/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003727 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003728 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003729 */
3730 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003731tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003732{
3733 int i = 1;
3734 tabpage_T *tp;
3735
3736 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3737 ++i;
3738 return i;
3739}
3740
3741/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003742 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003743 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003744 * FAIL.
3745 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003746 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003747 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003748leave_tabpage(
3749 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003750 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003751 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003752{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003753 tabpage_T *tp = curtab;
3754
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003755 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003756#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003757 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003758 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003759 if (new_curbuf != curbuf)
3760 {
3761 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3762 if (curtab != tp)
3763 return FAIL;
3764 }
3765 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3766 if (curtab != tp)
3767 return FAIL;
3768 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003769 if (curtab != tp)
3770 return FAIL;
3771 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003772#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003773#if defined(FEAT_GUI)
3774 /* Remove the scrollbars. They may be added back later. */
3775 if (gui.in_use)
3776 gui_remove_scrollbars();
3777#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003778 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003779 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003780 tp->tp_firstwin = firstwin;
3781 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003782 tp->tp_old_Rows = Rows;
3783 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003784 firstwin = NULL;
3785 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003786 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003787}
3788
3789/*
3790 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003791 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003792 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3793 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003794 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003795 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003796enter_tabpage(
3797 tabpage_T *tp,
3798 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003799 int trigger_enter_autocmds,
3800 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003801{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003802 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003803 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003804
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003805 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003806 firstwin = tp->tp_firstwin;
3807 lastwin = tp->tp_lastwin;
3808 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003809
3810 /* We would like doing the TabEnter event first, but we don't have a
3811 * valid current window yet, which may break some commands.
3812 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaarc917da42016-07-19 22:31:36 +02003813 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE,
Bram Moolenaard6949742013-06-16 14:18:28 +02003814 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003815 prevwin = next_prevwin;
3816
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003817 last_status(FALSE); /* status line may appear or disappear */
3818 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003819 must_redraw = CLEAR; /* need to redraw everything */
3820#ifdef FEAT_DIFF
3821 diff_need_scrollbind = TRUE;
3822#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003823
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003824 /* The tabpage line may have appeared or disappeared, may need to resize
3825 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003826 * frame sizes too. Use the stored value of p_ch, so that it can be
3827 * different for each tab page. */
3828 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003829 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3830#ifdef FEAT_GUI_TABLINE
3831 && !gui_use_tabline()
3832#endif
3833 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003834 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003835 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003836 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003837
3838#if defined(FEAT_GUI)
3839 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3840 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003841 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003842#endif
3843
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003844#ifdef FEAT_AUTOCMD
3845 /* Apply autocommands after updating the display, when 'rows' and
3846 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003847 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003848 {
3849 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3850 if (old_curbuf != curbuf)
3851 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3852 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003853#endif
3854
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003855 redraw_all_later(CLEAR);
3856}
3857
3858/*
3859 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003860 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003861 */
3862 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003863goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003864{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003865 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003866 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003867 int i;
3868
Bram Moolenaard68071d2006-05-02 22:08:30 +00003869 if (text_locked())
3870 {
3871 /* Not allowed when editing the command line. */
3872#ifdef FEAT_CMDWIN
3873 if (cmdwin_type != 0)
3874 EMSG(_(e_cmdwin));
3875 else
3876#endif
3877 EMSG(_(e_secure));
3878 return;
3879 }
3880
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003881 /* If there is only one it can't work. */
3882 if (first_tabpage->tp_next == NULL)
3883 {
3884 if (n > 1)
3885 beep_flush();
3886 return;
3887 }
3888
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003889 if (n == 0)
3890 {
3891 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003892 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003893 tp = first_tabpage;
3894 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003895 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003896 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003897 else if (n < 0)
3898 {
3899 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3900 * this N times. */
3901 ttp = curtab;
3902 for (i = n; i < 0; ++i)
3903 {
3904 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
3905 tp = tp->tp_next)
3906 ;
3907 ttp = tp;
3908 }
3909 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003910 else if (n == 9999)
3911 {
3912 /* Go to last tab page. */
3913 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
3914 ;
3915 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003916 else
3917 {
3918 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003919 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00003920 if (tp == NULL)
3921 {
3922 beep_flush();
3923 return;
3924 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003925 }
3926
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003927 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003928
3929#ifdef FEAT_GUI_TABLINE
3930 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003931 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003932#endif
3933}
3934
3935/*
3936 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003937 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3938 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003939 * Note: doesn't update the GUI tab.
3940 */
3941 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003942goto_tabpage_tp(
3943 tabpage_T *tp,
3944 int trigger_enter_autocmds,
3945 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003946{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02003947 /* Don't repeat a message in another tab page. */
3948 set_keep_msg(NULL, 0);
3949
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003950 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
3951 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003952 {
3953 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003954 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
3955 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003956 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003957 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
3958 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003959 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003960}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961
3962/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003963 * Enter window "wp" in tab page "tp".
3964 * Also updates the GUI tab.
3965 */
3966 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003967goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003968{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003969 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003970 if (curtab == tp && win_valid(wp))
3971 {
3972 win_enter(wp, TRUE);
3973# ifdef FEAT_GUI_TABLINE
3974 if (gui_use_tabline())
3975 gui_mch_set_curtab(tabpage_index(curtab));
3976# endif
3977 }
3978}
3979
3980/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003981 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003982 */
3983 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003984tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003985{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003986 int n = 1;
3987 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003988
3989 if (first_tabpage->tp_next == NULL)
3990 return;
3991
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003992 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
3993 ++n;
3994
3995 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
3996 && tp->tp_next == curtab))
3997 return;
3998
3999 tp_dst = tp;
4000
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004001 /* Remove the current tab page from the list of tab pages. */
4002 if (curtab == first_tabpage)
4003 first_tabpage = curtab->tp_next;
4004 else
4005 {
4006 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4007 if (tp->tp_next == curtab)
4008 break;
4009 if (tp == NULL) /* "cannot happen" */
4010 return;
4011 tp->tp_next = curtab->tp_next;
4012 }
4013
4014 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004015 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004016 {
4017 curtab->tp_next = first_tabpage;
4018 first_tabpage = curtab;
4019 }
4020 else
4021 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004022 curtab->tp_next = tp_dst->tp_next;
4023 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004024 }
4025
4026 /* Need to redraw the tabline. Tab page contents doesn't change. */
4027 redraw_tabline = TRUE;
4028}
4029
4030
4031/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 * Go to another window.
4033 * When jumping to another buffer, stop Visual mode. Do this before
4034 * changing windows so we can yank the selection into the '*' register.
4035 * When jumping to another window on the same buffer, adjust its cursor
4036 * position to keep the same Visual area.
4037 */
4038 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004039win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004041#ifdef FEAT_CONCEAL
4042 win_T *owp = curwin;
4043#endif
4044
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004045 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 {
4047 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004048 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 return;
4050 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004051#ifdef FEAT_AUTOCMD
4052 if (curbuf_locked())
4053 return;
4054#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004055
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 if (wp->w_buffer != curbuf)
4057 reset_VIsual_and_resel();
4058 else if (VIsual_active)
4059 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060
4061#ifdef FEAT_GUI
4062 need_mouse_correct = TRUE;
4063#endif
4064 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004065
4066#ifdef FEAT_CONCEAL
4067 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004068 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004069 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004070 if (curwin->w_p_cole > 0 && !msg_scrolled)
4071 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004072#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073}
4074
4075#if defined(FEAT_PERL) || defined(PROTO)
4076/*
4077 * Find window number "winnr" (counting top to bottom).
4078 */
4079 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004080win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081{
4082 win_T *wp;
4083
4084# ifdef FEAT_WINDOWS
4085 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4086 if (--winnr == 0)
4087 break;
4088 return wp;
4089# else
4090 return curwin;
4091# endif
4092}
4093#endif
4094
Bram Moolenaar6fa41fb2013-05-18 20:55:35 +02004095#if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
4096 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004097/*
4098 * Find the tabpage for window "win".
4099 */
4100 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004101win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004102{
4103 win_T *wp;
4104 tabpage_T *tp;
4105
4106 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
Bram Moolenaar5e6d5ca2013-07-03 14:01:56 +02004107 for (wp = (tp == curtab ? firstwin : tp->tp_firstwin);
4108 wp != NULL; wp = wp->w_next)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004109 if (wp == win)
4110 return tp;
4111 return NULL;
4112}
4113#endif
4114
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115/*
4116 * Move to window above or below "count" times.
4117 */
4118 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004119win_goto_ver(
4120 int up, /* TRUE to go to win above */
4121 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122{
4123 frame_T *fr;
4124 frame_T *nfr;
4125 frame_T *foundfr;
4126
4127 foundfr = curwin->w_frame;
4128 while (count--)
4129 {
4130 /*
4131 * First go upwards in the tree of frames until we find a upwards or
4132 * downwards neighbor.
4133 */
4134 fr = foundfr;
4135 for (;;)
4136 {
4137 if (fr == topframe)
4138 goto end;
4139 if (up)
4140 nfr = fr->fr_prev;
4141 else
4142 nfr = fr->fr_next;
4143 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4144 break;
4145 fr = fr->fr_parent;
4146 }
4147
4148 /*
4149 * Now go downwards to find the bottom or top frame in it.
4150 */
4151 for (;;)
4152 {
4153 if (nfr->fr_layout == FR_LEAF)
4154 {
4155 foundfr = nfr;
4156 break;
4157 }
4158 fr = nfr->fr_child;
4159 if (nfr->fr_layout == FR_ROW)
4160 {
4161 /* Find the frame at the cursor row. */
4162 while (fr->fr_next != NULL
4163 && frame2win(fr)->w_wincol + fr->fr_width
4164 <= curwin->w_wincol + curwin->w_wcol)
4165 fr = fr->fr_next;
4166 }
4167 if (nfr->fr_layout == FR_COL && up)
4168 while (fr->fr_next != NULL)
4169 fr = fr->fr_next;
4170 nfr = fr;
4171 }
4172 }
4173end:
4174 if (foundfr != NULL)
4175 win_goto(foundfr->fr_win);
4176}
4177
4178/*
4179 * Move to left or right window.
4180 */
4181 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004182win_goto_hor(
4183 int left, /* TRUE to go to left win */
4184 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185{
4186 frame_T *fr;
4187 frame_T *nfr;
4188 frame_T *foundfr;
4189
4190 foundfr = curwin->w_frame;
4191 while (count--)
4192 {
4193 /*
4194 * First go upwards in the tree of frames until we find a left or
4195 * right neighbor.
4196 */
4197 fr = foundfr;
4198 for (;;)
4199 {
4200 if (fr == topframe)
4201 goto end;
4202 if (left)
4203 nfr = fr->fr_prev;
4204 else
4205 nfr = fr->fr_next;
4206 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4207 break;
4208 fr = fr->fr_parent;
4209 }
4210
4211 /*
4212 * Now go downwards to find the leftmost or rightmost frame in it.
4213 */
4214 for (;;)
4215 {
4216 if (nfr->fr_layout == FR_LEAF)
4217 {
4218 foundfr = nfr;
4219 break;
4220 }
4221 fr = nfr->fr_child;
4222 if (nfr->fr_layout == FR_COL)
4223 {
4224 /* Find the frame at the cursor row. */
4225 while (fr->fr_next != NULL
4226 && frame2win(fr)->w_winrow + fr->fr_height
4227 <= curwin->w_winrow + curwin->w_wrow)
4228 fr = fr->fr_next;
4229 }
4230 if (nfr->fr_layout == FR_ROW && left)
4231 while (fr->fr_next != NULL)
4232 fr = fr->fr_next;
4233 nfr = fr;
4234 }
4235 }
4236end:
4237 if (foundfr != NULL)
4238 win_goto(foundfr->fr_win);
4239}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240
4241/*
4242 * Make window "wp" the current window.
4243 */
4244 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004245win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246{
Bram Moolenaarc917da42016-07-19 22:31:36 +02004247 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248}
4249
4250/*
4251 * Make window wp the current window.
4252 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4253 * been closed and isn't valid.
4254 */
4255 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004256win_enter_ext(
4257 win_T *wp,
4258 int undo_sync,
4259 int curwin_invalid,
Bram Moolenaarc917da42016-07-19 22:31:36 +02004260 int trigger_new_autocmds UNUSED,
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004261 int trigger_enter_autocmds UNUSED,
4262 int trigger_leave_autocmds UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263{
4264#ifdef FEAT_AUTOCMD
4265 int other_buffer = FALSE;
4266#endif
4267
4268 if (wp == curwin && !curwin_invalid) /* nothing to do */
4269 return;
4270
4271#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004272 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 {
4274 /*
4275 * Be careful: If autocommands delete the window, return now.
4276 */
4277 if (wp->w_buffer != curbuf)
4278 {
4279 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4280 other_buffer = TRUE;
4281 if (!win_valid(wp))
4282 return;
4283 }
4284 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4285 if (!win_valid(wp))
4286 return;
4287# ifdef FEAT_EVAL
4288 /* autocmds may abort script processing */
4289 if (aborting())
4290 return;
4291# endif
4292 }
4293#endif
4294
4295 /* sync undo before leaving the current buffer */
4296 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004297 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004298
4299 /* Might need to scroll the old window before switching, e.g., when the
4300 * cursor was moved. */
4301 update_topline();
4302
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 /* may have to copy the buffer options when 'cpo' contains 'S' */
4304 if (wp->w_buffer != curbuf)
4305 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4306 if (!curwin_invalid)
4307 {
4308 prevwin = curwin; /* remember for CTRL-W p */
4309 curwin->w_redr_status = TRUE;
4310 }
4311 curwin = wp;
4312 curbuf = wp->w_buffer;
4313 check_cursor();
4314#ifdef FEAT_VIRTUALEDIT
4315 if (!virtual_active())
4316 curwin->w_cursor.coladd = 0;
4317#endif
4318 changed_line_abv_curs(); /* assume cursor position needs updating */
4319
4320 if (curwin->w_localdir != NULL)
4321 {
4322 /* Window has a local directory: Save current directory as global
4323 * directory (unless that was done already) and change to the local
4324 * directory. */
4325 if (globaldir == NULL)
4326 {
4327 char_u cwd[MAXPATHL];
4328
4329 if (mch_dirname(cwd, MAXPATHL) == OK)
4330 globaldir = vim_strsave(cwd);
4331 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004332 if (mch_chdir((char *)curwin->w_localdir) == 0)
4333 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 }
4335 else if (globaldir != NULL)
4336 {
4337 /* Window doesn't have a local directory and we are not in the global
4338 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004339 ignored = mch_chdir((char *)globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 vim_free(globaldir);
4341 globaldir = NULL;
4342 shorten_fnames(TRUE);
4343 }
4344
4345#ifdef FEAT_AUTOCMD
Bram Moolenaarc917da42016-07-19 22:31:36 +02004346 if (trigger_new_autocmds)
4347 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004348 if (trigger_enter_autocmds)
4349 {
4350 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4351 if (other_buffer)
4352 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4353 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354#endif
4355
4356#ifdef FEAT_TITLE
4357 maketitle();
4358#endif
4359 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004360 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 if (restart_edit)
4362 redraw_later(VALID); /* causes status line redraw */
4363
4364 /* set window height to desired minimal value */
4365 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4366 win_setheight((int)p_wh);
4367 else if (curwin->w_height == 0)
4368 win_setheight(1);
4369
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004371 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373
4374#ifdef FEAT_MOUSE
4375 setmouse(); /* in case jumped to/from help buffer */
4376#endif
4377
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004378 /* Change directories when the 'acd' option is set. */
4379 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380}
4381
4382#endif /* FEAT_WINDOWS */
4383
4384#if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO)
4385/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004386 * Jump to the first open window that contains buffer "buf", if one exists.
4387 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 */
4389 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004390buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004392 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004394 if (curwin->w_buffer == buf)
4395 wp = curwin;
4396# ifdef FEAT_WINDOWS
4397 else
4398 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4399 if (wp->w_buffer == buf)
4400 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 if (wp != NULL)
4402 win_enter(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004404 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004406
4407/*
4408 * Jump to the first open window in any tab page that contains buffer "buf",
4409 * if one exists.
4410 * Returns a pointer to the window found, otherwise NULL.
4411 */
4412 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004413buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004414{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004415 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004416# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004417 tabpage_T *tp;
4418
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004419 if (wp != NULL)
4420 return wp;
4421
4422 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4423 if (tp != curtab)
4424 {
4425 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4426 if (wp->w_buffer == buf)
4427 break;
4428 if (wp != NULL)
4429 {
4430 goto_tabpage_win(tp, wp);
4431 if (curwin != wp)
4432 wp = NULL; /* something went wrong */
4433 break;
4434 }
4435 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004436# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004437 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004438}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439#endif
4440
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004441static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004442
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004444 * Allocate a window structure and link it in the window list when "hidden" is
4445 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004448win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004450 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451
4452 /*
4453 * allocate window structure and linesizes arrays
4454 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004455 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004456 if (new_wp == NULL)
4457 return NULL;
4458
4459 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004461 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004462 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 }
4464
Bram Moolenaar86edef62016-03-13 18:07:30 +01004465 new_wp->w_id = ++last_win_id;
4466
Bram Moolenaar429fa852013-04-15 12:27:36 +02004467#ifdef FEAT_EVAL
4468 /* init w: variables */
4469 new_wp->w_vars = dict_alloc();
4470 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004472 win_free_lsize(new_wp);
4473 vim_free(new_wp);
4474 return NULL;
4475 }
4476 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004477#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004478
4479#ifdef FEAT_AUTOCMD
4480 /* Don't execute autocommands while the window is not properly
4481 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4482 * event. */
4483 block_autocmds();
4484#endif
4485 /*
4486 * link the window in the window list
4487 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488#ifdef FEAT_WINDOWS
Bram Moolenaar429fa852013-04-15 12:27:36 +02004489 if (!hidden)
4490 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004491 new_wp->w_wincol = 0;
4492 new_wp->w_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01004493#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494
Bram Moolenaar429fa852013-04-15 12:27:36 +02004495 /* position the display and the cursor at the top of the file. */
4496 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004498 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004500 new_wp->w_botline = 2;
4501 new_wp->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502#ifdef FEAT_SCROLLBIND
Bram Moolenaar429fa852013-04-15 12:27:36 +02004503 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504#endif
4505
Bram Moolenaar429fa852013-04-15 12:27:36 +02004506 /* We won't calculate w_fraction until resizing the window */
4507 new_wp->w_fraction = 0;
4508 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509
4510#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004511 if (gui.in_use)
4512 {
4513 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4514 SBAR_LEFT, new_wp);
4515 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4516 SBAR_RIGHT, new_wp);
4517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518#endif
4519#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004520 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521#endif
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004522#ifdef FEAT_AUTOCMD
Bram Moolenaar429fa852013-04-15 12:27:36 +02004523 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004524#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004525#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004526 new_wp->w_match_head = NULL;
4527 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004528#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004529 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530}
4531
4532#if defined(FEAT_WINDOWS) || defined(PROTO)
4533
4534/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004535 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 */
4537 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004538win_free(
4539 win_T *wp,
4540 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541{
4542 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004543 buf_T *buf;
4544 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004546#ifdef FEAT_FOLDING
4547 clearFolding(wp);
4548#endif
4549
4550 /* reduce the reference count to the argument list. */
4551 alist_unlink(wp->w_alist);
4552
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004553#ifdef FEAT_AUTOCMD
4554 /* Don't execute autocommands while the window is halfway being deleted.
4555 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004556 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004557#endif
4558
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004559#ifdef FEAT_LUA
4560 lua_window_free(wp);
4561#endif
4562
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004563#ifdef FEAT_MZSCHEME
4564 mzscheme_window_free(wp);
4565#endif
4566
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567#ifdef FEAT_PERL
4568 perl_win_free(wp);
4569#endif
4570
4571#ifdef FEAT_PYTHON
4572 python_window_free(wp);
4573#endif
4574
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004575#ifdef FEAT_PYTHON3
4576 python3_window_free(wp);
4577#endif
4578
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579#ifdef FEAT_TCL
4580 tcl_window_free(wp);
4581#endif
4582
4583#ifdef FEAT_RUBY
4584 ruby_window_free(wp);
4585#endif
4586
4587 clear_winopt(&wp->w_onebuf_opt);
4588 clear_winopt(&wp->w_allbuf_opt);
4589
4590#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004591 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4592 hash_init(&wp->w_vars->dv_hashtab);
4593 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594#endif
4595
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004596 {
4597 tabpage_T *ttp;
4598
4599 if (prevwin == wp)
4600 prevwin = NULL;
4601 for (ttp = first_tabpage; ttp != NULL; ttp = ttp->tp_next)
4602 if (ttp->tp_prevwin == wp)
4603 ttp->tp_prevwin = NULL;
4604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 win_free_lsize(wp);
4606
4607 for (i = 0; i < wp->w_tagstacklen; ++i)
4608 vim_free(wp->w_tagstack[i].tagname);
4609
4610 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004611
Bram Moolenaarff18df02013-07-24 17:51:57 +02004612 /* Remove the window from the b_wininfo lists, it may happen that the
4613 * freed memory is re-used for another window. */
4614 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
4615 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4616 if (wip->wi_win == wp)
4617 wip->wi_win = NULL;
4618
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004620 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004622
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623#ifdef FEAT_JUMPLIST
4624 free_jumplist(wp);
4625#endif
4626
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004627#ifdef FEAT_QUICKFIX
4628 qf_free_all(wp);
4629#endif
4630
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631#ifdef FEAT_GUI
4632 if (gui.in_use)
4633 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4635 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4636 }
4637#endif /* FEAT_GUI */
4638
Bram Moolenaar860cae12010-06-05 23:22:07 +02004639#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004640 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004641#endif
4642
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004643#ifdef FEAT_AUTOCMD
4644 if (wp != aucmd_win)
4645#endif
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004646 win_remove(wp, tp);
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004647#ifdef FEAT_AUTOCMD
Bram Moolenaar3be85852014-06-12 14:01:31 +02004648 if (autocmd_busy)
4649 {
4650 wp->w_next = au_pending_free_win;
4651 au_pending_free_win = wp;
4652 }
4653 else
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004654#endif
Bram Moolenaar3be85852014-06-12 14:01:31 +02004655 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004656
4657#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004658 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660}
4661
4662/*
4663 * Append window "wp" in the window list after window "after".
4664 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004665 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004666win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667{
4668 win_T *before;
4669
4670 if (after == NULL) /* after NULL is in front of the first */
4671 before = firstwin;
4672 else
4673 before = after->w_next;
4674
4675 wp->w_next = before;
4676 wp->w_prev = after;
4677 if (after == NULL)
4678 firstwin = wp;
4679 else
4680 after->w_next = wp;
4681 if (before == NULL)
4682 lastwin = wp;
4683 else
4684 before->w_prev = wp;
4685}
4686
4687/*
4688 * Remove a window from the window list.
4689 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004690 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004691win_remove(
4692 win_T *wp,
4693 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694{
4695 if (wp->w_prev != NULL)
4696 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004697 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004699 else
4700 tp->tp_firstwin = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 if (wp->w_next != NULL)
4702 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004703 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004705 else
4706 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707}
4708
4709/*
4710 * Append frame "frp" in a frame list after frame "after".
4711 */
4712 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004713frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714{
4715 frp->fr_next = after->fr_next;
4716 after->fr_next = frp;
4717 if (frp->fr_next != NULL)
4718 frp->fr_next->fr_prev = frp;
4719 frp->fr_prev = after;
4720}
4721
4722/*
4723 * Insert frame "frp" in a frame list before frame "before".
4724 */
4725 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004726frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727{
4728 frp->fr_next = before;
4729 frp->fr_prev = before->fr_prev;
4730 before->fr_prev = frp;
4731 if (frp->fr_prev != NULL)
4732 frp->fr_prev->fr_next = frp;
4733 else
4734 frp->fr_parent->fr_child = frp;
4735}
4736
4737/*
4738 * Remove a frame from a frame list.
4739 */
4740 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004741frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742{
4743 if (frp->fr_prev != NULL)
4744 frp->fr_prev->fr_next = frp->fr_next;
4745 else
4746 frp->fr_parent->fr_child = frp->fr_next;
4747 if (frp->fr_next != NULL)
4748 frp->fr_next->fr_prev = frp->fr_prev;
4749}
4750
4751#endif /* FEAT_WINDOWS */
4752
4753/*
4754 * Allocate w_lines[] for window "wp".
4755 * Return FAIL for failure, OK for success.
4756 */
4757 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004758win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759{
4760 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004761 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 if (wp->w_lines == NULL)
4763 return FAIL;
4764 return OK;
4765}
4766
4767/*
4768 * free lsize arrays for a window
4769 */
4770 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004771win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004773 /* TODO: why would wp be NULL here? */
4774 if (wp != NULL)
4775 {
4776 vim_free(wp->w_lines);
4777 wp->w_lines = NULL;
4778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779}
4780
4781/*
4782 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004783 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 */
4785 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004786shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004788 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789
4790 if (firstwin == NULL) /* not initialized yet */
4791 return;
4792#ifdef FEAT_WINDOWS
4793 if (h < frame_minheight(topframe, NULL))
4794 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004795
4796 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 * that doesn't result in the right height, forget about that option. */
4798 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004799 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 frame_new_height(topframe, h, FALSE, FALSE);
4801
4802 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4803#else
4804 if (h < 1)
4805 h = 1;
4806 win_new_height(firstwin, h);
4807#endif
4808 compute_cmdrow();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004809#ifdef FEAT_WINDOWS
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004810 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004811#endif
4812
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813#if 0
4814 /* Disabled: don't want making the screen smaller make a window larger. */
4815 if (p_ea)
4816 win_equal(curwin, FALSE, 'v');
4817#endif
4818}
4819
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004820#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821/*
4822 * Called from win_new_shellsize() after Columns changed.
4823 */
4824 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004825shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826{
4827 if (firstwin == NULL) /* not initialized yet */
4828 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004829
4830 /* First try setting the widths of windows with 'winfixwidth'. If that
4831 * doesn't result in the right width, forget about that option. */
4832 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004833 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004834 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4835
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4837#if 0
4838 /* Disabled: don't want making the screen smaller make a window larger. */
4839 if (p_ea)
4840 win_equal(curwin, FALSE, 'h');
4841#endif
4842}
4843#endif
4844
4845#if defined(FEAT_CMDWIN) || defined(PROTO)
4846/*
4847 * Save the size of all windows in "gap".
4848 */
4849 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004850win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851
4852{
4853 win_T *wp;
4854
4855 ga_init2(gap, (int)sizeof(int), 1);
4856 if (ga_grow(gap, win_count() * 2) == OK)
4857 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4858 {
4859 ((int *)gap->ga_data)[gap->ga_len++] =
4860 wp->w_width + wp->w_vsep_width;
4861 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4862 }
4863}
4864
4865/*
4866 * Restore window sizes, but only if the number of windows is still the same.
4867 * Does not free the growarray.
4868 */
4869 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004870win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871{
4872 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004873 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
4875 if (win_count() * 2 == gap->ga_len)
4876 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004877 /* The order matters, because frames contain other frames, but it's
4878 * difficult to get right. The easy way out is to do it twice. */
4879 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004881 i = 0;
4882 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4883 {
4884 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4885 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4886 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 }
4888 /* recompute the window positions */
4889 (void)win_comp_pos();
4890 }
4891}
4892#endif /* FEAT_CMDWIN */
4893
4894#if defined(FEAT_WINDOWS) || defined(PROTO)
4895/*
4896 * Update the position for all windows, using the width and height of the
4897 * frames.
4898 * Returns the row just after the last window.
4899 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004900 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004901win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004903 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 int col = 0;
4905
4906 frame_comp_pos(topframe, &row, &col);
4907 return row;
4908}
4909
4910/*
4911 * Update the position of the windows in frame "topfrp", using the width and
4912 * height of the frames.
4913 * "*row" and "*col" are the top-left position of the frame. They are updated
4914 * to the bottom-right position plus one.
4915 */
4916 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004917frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918{
4919 win_T *wp;
4920 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 int startcol;
4922 int startrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923
4924 wp = topfrp->fr_win;
4925 if (wp != NULL)
4926 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004927 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 {
4929 /* position changed, redraw */
4930 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 redraw_win_later(wp, NOT_VALID);
4933 wp->w_redr_status = TRUE;
4934 }
4935 *row += wp->w_height + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 }
4938 else
4939 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 startrow = *row;
4941 startcol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
4943 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 if (topfrp->fr_layout == FR_ROW)
4945 *row = startrow; /* all frames are at the same row */
4946 else
4947 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 frame_comp_pos(frp, row, col);
4949 }
4950 }
4951}
4952
4953#endif /* FEAT_WINDOWS */
4954
4955/*
4956 * Set current window height and take care of repositioning other windows to
4957 * fit around it.
4958 */
4959 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004960win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961{
4962 win_setheight_win(height, curwin);
4963}
4964
4965/*
4966 * Set the window height of window "win" and take care of repositioning other
4967 * windows to fit around it.
4968 */
4969 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004970win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971{
4972 int row;
4973
4974 if (win == curwin)
4975 {
4976 /* Always keep current window at least one line high, even when
4977 * 'winminheight' is zero. */
4978#ifdef FEAT_WINDOWS
4979 if (height < p_wmh)
4980 height = p_wmh;
4981#endif
4982 if (height == 0)
4983 height = 1;
4984 }
4985
4986#ifdef FEAT_WINDOWS
4987 frame_setheight(win->w_frame, height + win->w_status_height);
4988
4989 /* recompute the window positions */
4990 row = win_comp_pos();
4991#else
4992 if (height > topframe->fr_height)
4993 height = topframe->fr_height;
4994 win->w_height = height;
4995 row = height;
4996#endif
4997
4998 /*
4999 * If there is extra space created between the last window and the command
5000 * line, clear it.
5001 */
5002 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
5003 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5004 cmdline_row = row;
5005 msg_row = row;
5006 msg_col = 0;
5007
5008 redraw_all_later(NOT_VALID);
5009}
5010
5011#if defined(FEAT_WINDOWS) || defined(PROTO)
5012
5013/*
5014 * Set the height of a frame to "height" and take care that all frames and
5015 * windows inside it are resized. Also resize frames on the left and right if
5016 * the are in the same FR_ROW frame.
5017 *
5018 * Strategy:
5019 * If the frame is part of a FR_COL frame, try fitting the frame in that
5020 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5021 * go to containing frames to resize them and make room.
5022 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5023 * Check for the minimal height of the FR_ROW frame.
5024 * At the top level we can also use change the command line height.
5025 */
5026 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005027frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028{
5029 int room; /* total number of lines available */
5030 int take; /* number of lines taken from other windows */
5031 int room_cmdline; /* lines available from cmdline */
5032 int run;
5033 frame_T *frp;
5034 int h;
5035 int room_reserved;
5036
5037 /* If the height already is the desired value, nothing to do. */
5038 if (curfrp->fr_height == height)
5039 return;
5040
5041 if (curfrp->fr_parent == NULL)
5042 {
5043 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005044 if (height > ROWS_AVAIL)
5045 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 if (height > 0)
5047 frame_new_height(curfrp, height, FALSE, FALSE);
5048 }
5049 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5050 {
5051 /* Row of frames: Also need to resize frames left and right of this
5052 * one. First check for the minimal height of these. */
5053 h = frame_minheight(curfrp->fr_parent, NULL);
5054 if (height < h)
5055 height = h;
5056 frame_setheight(curfrp->fr_parent, height);
5057 }
5058 else
5059 {
5060 /*
5061 * Column of frames: try to change only frames in this column.
5062 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 /*
5064 * Do this twice:
5065 * 1: compute room available, if it's not enough try resizing the
5066 * containing frame.
5067 * 2: compute the room available and adjust the height to it.
5068 * Try not to reduce the height of a window with 'winfixheight' set.
5069 */
5070 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 {
5072 room = 0;
5073 room_reserved = 0;
5074 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5075 frp = frp->fr_next)
5076 {
5077 if (frp != curfrp
5078 && frp->fr_win != NULL
5079 && frp->fr_win->w_p_wfh)
5080 room_reserved += frp->fr_height;
5081 room += frp->fr_height;
5082 if (frp != curfrp)
5083 room -= frame_minheight(frp, NULL);
5084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 if (curfrp->fr_width != Columns)
5086 room_cmdline = 0;
5087 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 {
5089 room_cmdline = Rows - p_ch - (lastwin->w_winrow
5090 + lastwin->w_height + lastwin->w_status_height);
5091 if (room_cmdline < 0)
5092 room_cmdline = 0;
5093 }
5094
5095 if (height <= room + room_cmdline)
5096 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 if (run == 2 || curfrp->fr_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 {
5099 if (height > room + room_cmdline)
5100 height = room + room_cmdline;
5101 break;
5102 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 frame_setheight(curfrp->fr_parent, height
5104 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 }
5106
5107 /*
5108 * Compute the number of lines we will take from others frames (can be
5109 * negative!).
5110 */
5111 take = height - curfrp->fr_height;
5112
5113 /* If there is not enough room, also reduce the height of a window
5114 * with 'winfixheight' set. */
5115 if (height > room + room_cmdline - room_reserved)
5116 room_reserved = room + room_cmdline - height;
5117 /* If there is only a 'winfixheight' window and making the
5118 * window smaller, need to make the other window taller. */
5119 if (take < 0 && room - curfrp->fr_height < room_reserved)
5120 room_reserved = 0;
5121
5122 if (take > 0 && room_cmdline > 0)
5123 {
5124 /* use lines from cmdline first */
5125 if (take < room_cmdline)
5126 room_cmdline = take;
5127 take -= room_cmdline;
5128 topframe->fr_height += room_cmdline;
5129 }
5130
5131 /*
5132 * set the current frame to the new height
5133 */
5134 frame_new_height(curfrp, height, FALSE, FALSE);
5135
5136 /*
5137 * First take lines from the frames after the current frame. If
5138 * that is not enough, takes lines from frames above the current
5139 * frame.
5140 */
5141 for (run = 0; run < 2; ++run)
5142 {
5143 if (run == 0)
5144 frp = curfrp->fr_next; /* 1st run: start with next window */
5145 else
5146 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5147 while (frp != NULL && take != 0)
5148 {
5149 h = frame_minheight(frp, NULL);
5150 if (room_reserved > 0
5151 && frp->fr_win != NULL
5152 && frp->fr_win->w_p_wfh)
5153 {
5154 if (room_reserved >= frp->fr_height)
5155 room_reserved -= frp->fr_height;
5156 else
5157 {
5158 if (frp->fr_height - room_reserved > take)
5159 room_reserved = frp->fr_height - take;
5160 take -= frp->fr_height - room_reserved;
5161 frame_new_height(frp, room_reserved, FALSE, FALSE);
5162 room_reserved = 0;
5163 }
5164 }
5165 else
5166 {
5167 if (frp->fr_height - take < h)
5168 {
5169 take -= frp->fr_height - h;
5170 frame_new_height(frp, h, FALSE, FALSE);
5171 }
5172 else
5173 {
5174 frame_new_height(frp, frp->fr_height - take,
5175 FALSE, FALSE);
5176 take = 0;
5177 }
5178 }
5179 if (run == 0)
5180 frp = frp->fr_next;
5181 else
5182 frp = frp->fr_prev;
5183 }
5184 }
5185 }
5186}
5187
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188/*
5189 * Set current window width and take care of repositioning other windows to
5190 * fit around it.
5191 */
5192 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005193win_setwidth(int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194{
5195 win_setwidth_win(width, curwin);
5196}
5197
5198 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005199win_setwidth_win(int width, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200{
5201 /* Always keep current window at least one column wide, even when
5202 * 'winminwidth' is zero. */
5203 if (wp == curwin)
5204 {
5205 if (width < p_wmw)
5206 width = p_wmw;
5207 if (width == 0)
5208 width = 1;
5209 }
5210
5211 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5212
5213 /* recompute the window positions */
5214 (void)win_comp_pos();
5215
5216 redraw_all_later(NOT_VALID);
5217}
5218
5219/*
5220 * Set the width of a frame to "width" and take care that all frames and
5221 * windows inside it are resized. Also resize frames above and below if the
5222 * are in the same FR_ROW frame.
5223 *
5224 * Strategy is similar to frame_setheight().
5225 */
5226 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005227frame_setwidth(frame_T *curfrp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228{
5229 int room; /* total number of lines available */
5230 int take; /* number of lines taken from other windows */
5231 int run;
5232 frame_T *frp;
5233 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005234 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235
5236 /* If the width already is the desired value, nothing to do. */
5237 if (curfrp->fr_width == width)
5238 return;
5239
5240 if (curfrp->fr_parent == NULL)
5241 /* topframe: can't change width */
5242 return;
5243
5244 if (curfrp->fr_parent->fr_layout == FR_COL)
5245 {
5246 /* Column of frames: Also need to resize frames above and below of
5247 * this one. First check for the minimal width of these. */
5248 w = frame_minwidth(curfrp->fr_parent, NULL);
5249 if (width < w)
5250 width = w;
5251 frame_setwidth(curfrp->fr_parent, width);
5252 }
5253 else
5254 {
5255 /*
5256 * Row of frames: try to change only frames in this row.
5257 *
5258 * Do this twice:
5259 * 1: compute room available, if it's not enough try resizing the
5260 * containing frame.
5261 * 2: compute the room available and adjust the width to it.
5262 */
5263 for (run = 1; run <= 2; ++run)
5264 {
5265 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005266 room_reserved = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5268 frp = frp->fr_next)
5269 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005270 if (frp != curfrp
5271 && frp->fr_win != NULL
5272 && frp->fr_win->w_p_wfw)
5273 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 room += frp->fr_width;
5275 if (frp != curfrp)
5276 room -= frame_minwidth(frp, NULL);
5277 }
5278
5279 if (width <= room)
5280 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005281 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 {
5283 if (width > room)
5284 width = room;
5285 break;
5286 }
5287 frame_setwidth(curfrp->fr_parent, width
5288 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5289 }
5290
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 /*
5292 * Compute the number of lines we will take from others frames (can be
5293 * negative!).
5294 */
5295 take = width - curfrp->fr_width;
5296
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005297 /* If there is not enough room, also reduce the width of a window
5298 * with 'winfixwidth' set. */
5299 if (width > room - room_reserved)
5300 room_reserved = room - width;
5301 /* If there is only a 'winfixwidth' window and making the
5302 * window smaller, need to make the other window narrower. */
5303 if (take < 0 && room - curfrp->fr_width < room_reserved)
5304 room_reserved = 0;
5305
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 /*
5307 * set the current frame to the new width
5308 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005309 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310
5311 /*
5312 * First take lines from the frames right of the current frame. If
5313 * that is not enough, takes lines from frames left of the current
5314 * frame.
5315 */
5316 for (run = 0; run < 2; ++run)
5317 {
5318 if (run == 0)
5319 frp = curfrp->fr_next; /* 1st run: start with next window */
5320 else
5321 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5322 while (frp != NULL && take != 0)
5323 {
5324 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005325 if (room_reserved > 0
5326 && frp->fr_win != NULL
5327 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005329 if (room_reserved >= frp->fr_width)
5330 room_reserved -= frp->fr_width;
5331 else
5332 {
5333 if (frp->fr_width - room_reserved > take)
5334 room_reserved = frp->fr_width - take;
5335 take -= frp->fr_width - room_reserved;
5336 frame_new_width(frp, room_reserved, FALSE, FALSE);
5337 room_reserved = 0;
5338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 }
5340 else
5341 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005342 if (frp->fr_width - take < w)
5343 {
5344 take -= frp->fr_width - w;
5345 frame_new_width(frp, w, FALSE, FALSE);
5346 }
5347 else
5348 {
5349 frame_new_width(frp, frp->fr_width - take,
5350 FALSE, FALSE);
5351 take = 0;
5352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 }
5354 if (run == 0)
5355 frp = frp->fr_next;
5356 else
5357 frp = frp->fr_prev;
5358 }
5359 }
5360 }
5361}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362
5363/*
5364 * Check 'winminheight' for a valid value.
5365 */
5366 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005367win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368{
5369 int room;
5370 int first = TRUE;
5371 win_T *wp;
5372
5373 /* loop until there is a 'winminheight' that is possible */
5374 while (p_wmh > 0)
5375 {
5376 /* TODO: handle vertical splits */
5377 room = -p_wh;
5378 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5379 room += wp->w_height - p_wmh;
5380 if (room >= 0)
5381 break;
5382 --p_wmh;
5383 if (first)
5384 {
5385 EMSG(_(e_noroom));
5386 first = FALSE;
5387 }
5388 }
5389}
5390
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005391#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392
5393/*
5394 * Status line of dragwin is dragged "offset" lines down (negative is up).
5395 */
5396 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005397win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398{
5399 frame_T *curfr;
5400 frame_T *fr;
5401 int room;
5402 int row;
5403 int up; /* if TRUE, drag status line up, otherwise down */
5404 int n;
5405
5406 fr = dragwin->w_frame;
5407 curfr = fr;
5408 if (fr != topframe) /* more than one window */
5409 {
5410 fr = fr->fr_parent;
5411 /* When the parent frame is not a column of frames, its parent should
5412 * be. */
5413 if (fr->fr_layout != FR_COL)
5414 {
5415 curfr = fr;
5416 if (fr != topframe) /* only a row of windows, may drag statusline */
5417 fr = fr->fr_parent;
5418 }
5419 }
5420
5421 /* If this is the last frame in a column, may want to resize the parent
5422 * frame instead (go two up to skip a row of frames). */
5423 while (curfr != topframe && curfr->fr_next == NULL)
5424 {
5425 if (fr != topframe)
5426 fr = fr->fr_parent;
5427 curfr = fr;
5428 if (fr != topframe)
5429 fr = fr->fr_parent;
5430 }
5431
5432 if (offset < 0) /* drag up */
5433 {
5434 up = TRUE;
5435 offset = -offset;
5436 /* sum up the room of the current frame and above it */
5437 if (fr == curfr)
5438 {
5439 /* only one window */
5440 room = fr->fr_height - frame_minheight(fr, NULL);
5441 }
5442 else
5443 {
5444 room = 0;
5445 for (fr = fr->fr_child; ; fr = fr->fr_next)
5446 {
5447 room += fr->fr_height - frame_minheight(fr, NULL);
5448 if (fr == curfr)
5449 break;
5450 }
5451 }
5452 fr = curfr->fr_next; /* put fr at frame that grows */
5453 }
5454 else /* drag down */
5455 {
5456 up = FALSE;
5457 /*
5458 * Only dragging the last status line can reduce p_ch.
5459 */
5460 room = Rows - cmdline_row;
5461 if (curfr->fr_next == NULL)
5462 room -= 1;
5463 else
5464 room -= p_ch;
5465 if (room < 0)
5466 room = 0;
5467 /* sum up the room of frames below of the current one */
5468 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5469 room += fr->fr_height - frame_minheight(fr, NULL);
5470 fr = curfr; /* put fr at window that grows */
5471 }
5472
5473 if (room < offset) /* Not enough room */
5474 offset = room; /* Move as far as we can */
5475 if (offset <= 0)
5476 return;
5477
5478 /*
5479 * Grow frame fr by "offset" lines.
5480 * Doesn't happen when dragging the last status line up.
5481 */
5482 if (fr != NULL)
5483 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5484
5485 if (up)
5486 fr = curfr; /* current frame gets smaller */
5487 else
5488 fr = curfr->fr_next; /* next frame gets smaller */
5489
5490 /*
5491 * Now make the other frames smaller.
5492 */
5493 while (fr != NULL && offset > 0)
5494 {
5495 n = frame_minheight(fr, NULL);
5496 if (fr->fr_height - offset <= n)
5497 {
5498 offset -= fr->fr_height - n;
5499 frame_new_height(fr, n, !up, FALSE);
5500 }
5501 else
5502 {
5503 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5504 break;
5505 }
5506 if (up)
5507 fr = fr->fr_prev;
5508 else
5509 fr = fr->fr_next;
5510 }
5511 row = win_comp_pos();
5512 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5513 cmdline_row = row;
5514 p_ch = Rows - cmdline_row;
5515 if (p_ch < 1)
5516 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005517 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005518 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 showmode();
5520}
5521
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522/*
5523 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5524 */
5525 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005526win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527{
5528 frame_T *curfr;
5529 frame_T *fr;
5530 int room;
5531 int left; /* if TRUE, drag separator line left, otherwise right */
5532 int n;
5533
5534 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005535 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 return;
5537 curfr = fr;
5538 fr = fr->fr_parent;
5539 /* When the parent frame is not a row of frames, its parent should be. */
5540 if (fr->fr_layout != FR_ROW)
5541 {
5542 if (fr == topframe) /* only a column of windows (cannot happen?) */
5543 return;
5544 curfr = fr;
5545 fr = fr->fr_parent;
5546 }
5547
5548 /* If this is the last frame in a row, may want to resize a parent
5549 * frame instead. */
5550 while (curfr->fr_next == NULL)
5551 {
5552 if (fr == topframe)
5553 break;
5554 curfr = fr;
5555 fr = fr->fr_parent;
5556 if (fr != topframe)
5557 {
5558 curfr = fr;
5559 fr = fr->fr_parent;
5560 }
5561 }
5562
5563 if (offset < 0) /* drag left */
5564 {
5565 left = TRUE;
5566 offset = -offset;
5567 /* sum up the room of the current frame and left of it */
5568 room = 0;
5569 for (fr = fr->fr_child; ; fr = fr->fr_next)
5570 {
5571 room += fr->fr_width - frame_minwidth(fr, NULL);
5572 if (fr == curfr)
5573 break;
5574 }
5575 fr = curfr->fr_next; /* put fr at frame that grows */
5576 }
5577 else /* drag right */
5578 {
5579 left = FALSE;
5580 /* sum up the room of frames right of the current one */
5581 room = 0;
5582 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5583 room += fr->fr_width - frame_minwidth(fr, NULL);
5584 fr = curfr; /* put fr at window that grows */
5585 }
5586
5587 if (room < offset) /* Not enough room */
5588 offset = room; /* Move as far as we can */
5589 if (offset <= 0) /* No room at all, quit. */
5590 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005591 if (fr == NULL)
5592 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593
5594 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005595 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596
5597 /* shrink other frames: current and at the left or at the right */
5598 if (left)
5599 fr = curfr; /* current frame gets smaller */
5600 else
5601 fr = curfr->fr_next; /* next frame gets smaller */
5602
5603 while (fr != NULL && offset > 0)
5604 {
5605 n = frame_minwidth(fr, NULL);
5606 if (fr->fr_width - offset <= n)
5607 {
5608 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005609 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 }
5611 else
5612 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005613 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 break;
5615 }
5616 if (left)
5617 fr = fr->fr_prev;
5618 else
5619 fr = fr->fr_next;
5620 }
5621 (void)win_comp_pos();
5622 redraw_all_later(NOT_VALID);
5623}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624#endif /* FEAT_MOUSE */
5625
5626#endif /* FEAT_WINDOWS */
5627
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005628#define FRACTION_MULT 16384L
5629
5630/*
5631 * Set wp->w_fraction for the current w_wrow and w_height.
5632 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005633 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005634set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005635{
5636 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005637 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005638}
5639
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640/*
5641 * Set the height of a window.
5642 * This takes care of the things inside the window, not what happens to the
5643 * window position, the frame or to other windows.
5644 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005645 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005646win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647{
5648 linenr_T lnum;
5649 int sline, line_size;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005650 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651
5652 /* Don't want a negative height. Happens when splitting a tiny window.
5653 * Will equalize heights soon to fix it. */
5654 if (height < 0)
5655 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005656 if (wp->w_height == height)
5657 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005659 if (wp->w_height > 0)
5660 {
5661 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005662 /* w_wrow needs to be valid. When setting 'laststatus' this may
5663 * call win_new_height() recursively. */
5664 validate_cursor();
5665 if (wp->w_height != prev_height)
5666 return; /* Recursive call already changed the size, bail out here
5667 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005668 if (wp->w_wrow != wp->w_prev_fraction_row)
5669 set_fraction(wp);
5670 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671
5672 wp->w_height = height;
5673 wp->w_skipcol = 0;
5674
5675 /* Don't change w_topline when height is zero. Don't set w_topline when
5676 * 'scrollbind' is set and this isn't the current window. */
5677 if (height > 0
5678#ifdef FEAT_SCROLLBIND
5679 && (!wp->w_p_scb || wp == curwin)
5680#endif
5681 )
5682 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005683 /*
5684 * Find a value for w_topline that shows the cursor at the same
5685 * relative position in the window as before (more or less).
5686 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 lnum = wp->w_cursor.lnum;
5688 if (lnum < 1) /* can happen when starting up */
5689 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005690 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5691 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5693 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005694
5695 if (sline >= 0)
5696 {
5697 /* Make sure the whole cursor line is visible, if possible. */
5698 int rows = plines_win(wp, lnum, FALSE);
5699
5700 if (sline > wp->w_height - rows)
5701 {
5702 sline = wp->w_height - rows;
5703 wp->w_wrow -= rows - line_size;
5704 }
5705 }
5706
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 if (sline < 0)
5708 {
5709 /*
5710 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005711 * Make cursor line the first line in the window. If not enough
5712 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 */
5714 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005715 if (wp->w_wrow >= wp->w_height
5716 && (W_WIDTH(wp) - win_col_off(wp)) > 0)
5717 {
5718 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp);
5719 --wp->w_wrow;
5720 while (wp->w_wrow >= wp->w_height)
5721 {
5722 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp)
5723 + win_col_off2(wp);
5724 --wp->w_wrow;
5725 }
5726 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005727 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005729 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005731 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732 {
5733#ifdef FEAT_FOLDING
5734 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5735 if (lnum == 1)
5736 {
5737 /* first line in buffer is folded */
5738 line_size = 1;
5739 --sline;
5740 break;
5741 }
5742#endif
5743 --lnum;
5744#ifdef FEAT_DIFF
5745 if (lnum == wp->w_topline)
5746 line_size = plines_win_nofill(wp, lnum, TRUE)
5747 + wp->w_topfill;
5748 else
5749#endif
5750 line_size = plines_win(wp, lnum, TRUE);
5751 sline -= line_size;
5752 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005753
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 if (sline < 0)
5755 {
5756 /*
5757 * Line we want at top would go off top of screen. Use next
5758 * line instead.
5759 */
5760#ifdef FEAT_FOLDING
5761 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5762#endif
5763 lnum++;
5764 wp->w_wrow -= line_size + sline;
5765 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005766 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 {
5768 /* First line of file reached, use that as topline. */
5769 lnum = 1;
5770 wp->w_wrow -= sline;
5771 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005772
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005773 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 }
5776
5777 if (wp == curwin)
5778 {
5779 if (p_so)
5780 update_topline();
5781 curs_columns(FALSE); /* validate w_wrow */
5782 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005783 if (prev_height > 0)
5784 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785
5786 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005787 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788#ifdef FEAT_WINDOWS
5789 wp->w_redr_status = TRUE;
5790#endif
5791 invalidate_botline_win(wp);
5792}
5793
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005794#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795/*
5796 * Set the width of a window.
5797 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005798 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005799win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800{
5801 wp->w_width = width;
5802 wp->w_lines_valid = 0;
5803 changed_line_abv_curs_win(wp);
5804 invalidate_botline_win(wp);
5805 if (wp == curwin)
5806 {
5807 update_topline();
5808 curs_columns(TRUE); /* validate w_wrow */
5809 }
5810 redraw_win_later(wp, NOT_VALID);
5811 wp->w_redr_status = TRUE;
5812}
5813#endif
5814
5815 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005816win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817{
5818 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5819 if (wp->w_p_scr == 0)
5820 wp->w_p_scr = 1;
5821}
5822
5823/*
5824 * command_height: called whenever p_ch has been changed
5825 */
5826 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005827command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828{
5829#ifdef FEAT_WINDOWS
5830 int h;
5831 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005832 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005834 /* Use the value of p_ch that we remembered. This is needed for when the
5835 * GUI starts up, we can't be sure in what order things happen. And when
5836 * p_ch was changed in another tab page. */
5837 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005838
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 /* Find bottom frame with width of screen. */
5840 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5842 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843
5844 /* Avoid changing the height of a window with 'winfixheight' set. */
5845 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5846 && frp->fr_win->w_p_wfh)
5847 frp = frp->fr_prev;
5848
5849 if (starting != NO_SCREEN)
5850 {
5851 cmdline_row = Rows - p_ch;
5852
5853 if (p_ch > old_p_ch) /* p_ch got bigger */
5854 {
5855 while (p_ch > old_p_ch)
5856 {
5857 if (frp == NULL)
5858 {
5859 EMSG(_(e_noroom));
5860 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005861 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 cmdline_row = Rows - p_ch;
5863 break;
5864 }
5865 h = frp->fr_height - frame_minheight(frp, NULL);
5866 if (h > p_ch - old_p_ch)
5867 h = p_ch - old_p_ch;
5868 old_p_ch += h;
5869 frame_add_height(frp, -h);
5870 frp = frp->fr_prev;
5871 }
5872
5873 /* Recompute window positions. */
5874 (void)win_comp_pos();
5875
5876 /* clear the lines added to cmdline */
5877 if (full_screen)
5878 screen_fill((int)(cmdline_row), (int)Rows, 0,
5879 (int)Columns, ' ', ' ', 0);
5880 msg_row = cmdline_row;
5881 redraw_cmdline = TRUE;
5882 return;
5883 }
5884
5885 if (msg_row < cmdline_row)
5886 msg_row = cmdline_row;
5887 redraw_cmdline = TRUE;
5888 }
5889 frame_add_height(frp, (int)(old_p_ch - p_ch));
5890
5891 /* Recompute window positions. */
5892 if (frp != lastwin->w_frame)
5893 (void)win_comp_pos();
5894#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 cmdline_row = Rows - p_ch;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005896 win_setheight(cmdline_row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897#endif
5898}
5899
5900#if defined(FEAT_WINDOWS) || defined(PROTO)
5901/*
5902 * Resize frame "frp" to be "n" lines higher (negative for less high).
5903 * Also resize the frames it is contained in.
5904 */
5905 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005906frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907{
5908 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5909 for (;;)
5910 {
5911 frp = frp->fr_parent;
5912 if (frp == NULL)
5913 break;
5914 frp->fr_height += n;
5915 }
5916}
5917
5918/*
5919 * Add or remove a status line for the bottom window(s), according to the
5920 * value of 'laststatus'.
5921 */
5922 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005923last_status(
5924 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925{
5926 /* Don't make a difference between horizontal or vertical split. */
5927 last_status_rec(topframe, (p_ls == 2
5928 || (p_ls == 1 && (morewin || lastwin != firstwin))));
5929}
5930
5931 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005932last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933{
5934 frame_T *fp;
5935 win_T *wp;
5936
5937 if (fr->fr_layout == FR_LEAF)
5938 {
5939 wp = fr->fr_win;
5940 if (wp->w_status_height != 0 && !statusline)
5941 {
5942 /* remove status line */
5943 win_new_height(wp, wp->w_height + 1);
5944 wp->w_status_height = 0;
5945 comp_col();
5946 }
5947 else if (wp->w_status_height == 0 && statusline)
5948 {
5949 /* Find a frame to take a line from. */
5950 fp = fr;
5951 while (fp->fr_height <= frame_minheight(fp, NULL))
5952 {
5953 if (fp == topframe)
5954 {
5955 EMSG(_(e_noroom));
5956 return;
5957 }
5958 /* In a column of frames: go to frame above. If already at
5959 * the top or in a row of frames: go to parent. */
5960 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
5961 fp = fp->fr_prev;
5962 else
5963 fp = fp->fr_parent;
5964 }
5965 wp->w_status_height = 1;
5966 if (fp != fr)
5967 {
5968 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
5969 frame_fix_height(wp);
5970 (void)win_comp_pos();
5971 }
5972 else
5973 win_new_height(wp, wp->w_height - 1);
5974 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005975 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 }
5977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 else if (fr->fr_layout == FR_ROW)
5979 {
5980 /* vertically split windows, set status line for each one */
5981 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
5982 last_status_rec(fp, statusline);
5983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005984 else
5985 {
5986 /* horizontally split window, set status line for last one */
5987 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
5988 ;
5989 last_status_rec(fp, statusline);
5990 }
5991}
5992
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005993/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005994 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005995 */
5996 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005997tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005998{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005999#ifdef FEAT_GUI_TABLINE
6000 /* When the GUI has the tabline then this always returns zero. */
6001 if (gui_use_tabline())
6002 return 0;
6003#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006004 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006005 {
6006 case 0: return 0;
6007 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6008 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006009 return 1;
6010}
6011
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012#endif /* FEAT_WINDOWS */
6013
6014#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6015/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006016 * Get the file name at the cursor.
6017 * If Visual mode is active, use the selected text if it's in one line.
6018 * Returns the name in allocated memory, NULL for failure.
6019 */
6020 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006021grab_file_name(long count, linenr_T *file_lnum)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006022{
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006023 int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC;
6024
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006025 if (VIsual_active)
6026 {
6027 int len;
6028 char_u *ptr;
6029
6030 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6031 return NULL;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006032 return find_file_name_in_path(ptr, len, options,
6033 count, curbuf->b_ffname);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006034 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006035 return file_name_at_cursor(options | FNAME_HYP, count, file_lnum);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006036
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006037}
6038
6039/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 * Return the file name under or after the cursor.
6041 *
6042 * The 'path' option is searched if the file name is not absolute.
6043 * The string returned has been alloc'ed and should be freed by the caller.
6044 * NULL is returned if the file name or file is not found.
6045 *
6046 * options:
6047 * FNAME_MESS give error messages
6048 * FNAME_EXP expand to path
6049 * FNAME_HYP check for hypertext link
6050 * FNAME_INCL apply "includeexpr"
6051 */
6052 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006053file_name_at_cursor(int options, long count, linenr_T *file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054{
6055 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006056 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6057 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058}
6059
6060/*
6061 * Return the name of the file under or after ptr[col].
6062 * Otherwise like file_name_at_cursor().
6063 */
6064 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006065file_name_in_line(
6066 char_u *line,
6067 int col,
6068 int options,
6069 long count,
6070 char_u *rel_fname, /* file we are searching relative to */
6071 linenr_T *file_lnum) /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072{
6073 char_u *ptr;
6074 int len;
6075
6076 /*
6077 * search forward for what could be the start of a file name
6078 */
6079 ptr = line + col;
6080 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar0dd492f2005-06-22 22:25:07 +00006081 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 if (*ptr == NUL) /* nothing found */
6083 {
6084 if (options & FNAME_MESS)
6085 EMSG(_("E446: No file name under cursor"));
6086 return NULL;
6087 }
6088
6089 /*
6090 * Search backward for first char of the file name.
6091 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6092 */
6093 while (ptr > line)
6094 {
6095#ifdef FEAT_MBYTE
6096 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6097 ptr -= len + 1;
6098 else
6099#endif
6100 if (vim_isfilec(ptr[-1])
6101 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6102 --ptr;
6103 else
6104 break;
6105 }
6106
6107 /*
6108 * Search forward for the last char of the file name.
6109 * Also allow "://" when ':' is not in 'isfname'.
6110 */
6111 len = 0;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006112 while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 || ((options & FNAME_HYP) && path_is_url(ptr + len)))
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006114 {
6115 if (ptr[len] == '\\')
6116 /* Skip over the "\" in "\ ". */
6117 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118#ifdef FEAT_MBYTE
6119 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006120 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 else
6122#endif
6123 ++len;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125
6126 /*
6127 * If there is trailing punctuation, remove it.
6128 * But don't remove "..", could be a directory name.
6129 */
6130 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6131 && ptr[len - 2] != '.')
6132 --len;
6133
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006134 if (file_lnum != NULL)
6135 {
6136 char_u *p;
6137
6138 /* Get the number after the file name and a separator character */
6139 p = ptr + len;
6140 p = skipwhite(p);
6141 if (*p != NUL)
6142 {
6143 if (!isdigit(*p))
6144 ++p; /* skip the separator */
6145 p = skipwhite(p);
6146 if (isdigit(*p))
6147 *file_lnum = (int)getdigits(&p);
6148 }
6149 }
6150
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6152}
6153
6154# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006155static char_u *eval_includeexpr(char_u *ptr, int len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156
6157 static char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006158eval_includeexpr(char_u *ptr, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159{
6160 char_u *res;
6161
6162 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006163 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006164 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 set_vim_var_string(VV_FNAME, NULL, 0);
6166 return res;
6167}
6168#endif
6169
6170/*
6171 * Return the name of the file ptr[len] in 'path'.
6172 * Otherwise like file_name_at_cursor().
6173 */
6174 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006175find_file_name_in_path(
6176 char_u *ptr,
6177 int len,
6178 int options,
6179 long count,
6180 char_u *rel_fname) /* file we are searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181{
6182 char_u *file_name;
6183 int c;
6184# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6185 char_u *tofree = NULL;
6186
6187 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6188 {
6189 tofree = eval_includeexpr(ptr, len);
6190 if (tofree != NULL)
6191 {
6192 ptr = tofree;
6193 len = (int)STRLEN(ptr);
6194 }
6195 }
6196# endif
6197
6198 if (options & FNAME_EXP)
6199 {
6200 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6201 TRUE, rel_fname);
6202
6203# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6204 /*
6205 * If the file could not be found in a normal way, try applying
6206 * 'includeexpr' (unless done already).
6207 */
6208 if (file_name == NULL
6209 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6210 {
6211 tofree = eval_includeexpr(ptr, len);
6212 if (tofree != NULL)
6213 {
6214 ptr = tofree;
6215 len = (int)STRLEN(ptr);
6216 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6217 TRUE, rel_fname);
6218 }
6219 }
6220# endif
6221 if (file_name == NULL && (options & FNAME_MESS))
6222 {
6223 c = ptr[len];
6224 ptr[len] = NUL;
6225 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6226 ptr[len] = c;
6227 }
6228
6229 /* Repeat finding the file "count" times. This matters when it
6230 * appears several times in the path. */
6231 while (file_name != NULL && --count > 0)
6232 {
6233 vim_free(file_name);
6234 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6235 }
6236 }
6237 else
6238 file_name = vim_strnsave(ptr, len);
6239
6240# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6241 vim_free(tofree);
6242# endif
6243
6244 return file_name;
6245}
6246#endif /* FEAT_SEARCHPATH */
6247
6248/*
6249 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6250 * Also check for ":\\", which MS Internet Explorer accepts, return
6251 * URL_BACKSLASH.
6252 */
6253 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006254path_is_url(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255{
6256 if (STRNCMP(p, "://", (size_t)3) == 0)
6257 return URL_SLASH;
6258 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6259 return URL_BACKSLASH;
6260 return 0;
6261}
6262
6263/*
6264 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6265 * Return URL_BACKSLASH for "name:\\".
6266 * Return zero otherwise.
6267 */
6268 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006269path_with_url(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270{
6271 char_u *p;
6272
6273 for (p = fname; isalpha(*p); ++p)
6274 ;
6275 return path_is_url(p);
6276}
6277
6278/*
6279 * Return TRUE if "name" is a full (absolute) path name or URL.
6280 */
6281 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006282vim_isAbsName(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283{
6284 return (path_with_url(name) != 0 || mch_isFullName(name));
6285}
6286
6287/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006288 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 *
6290 * return FAIL for failure, OK otherwise
6291 */
6292 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006293vim_FullName(
6294 char_u *fname,
6295 char_u *buf,
6296 int len,
6297 int force) /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298{
6299 int retval = OK;
6300 int url;
6301
6302 *buf = NUL;
6303 if (fname == NULL)
6304 return FAIL;
6305
6306 url = path_with_url(fname);
6307 if (!url)
6308 retval = mch_FullName(fname, buf, len, force);
6309 if (url || retval == FAIL)
6310 {
6311 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006312 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006314#if defined(MACOS_CLASSIC) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 slash_adjust(buf);
6316#endif
6317 return retval;
6318}
6319
6320/*
6321 * Return the minimal number of rows that is needed on the screen to display
6322 * the current number of windows.
6323 */
6324 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006325min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326{
6327 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006328#ifdef FEAT_WINDOWS
6329 tabpage_T *tp;
6330 int n;
6331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332
6333 if (firstwin == NULL) /* not initialized yet */
6334 return MIN_LINES;
6335
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006337 total = 0;
6338 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6339 {
6340 n = frame_minheight(tp->tp_topframe, NULL);
6341 if (total < n)
6342 total = n;
6343 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006344 total += tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345#else
Bram Moolenaarf740b292006-02-16 22:11:02 +00006346 total = 1; /* at least one window should have a line! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006348 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 return total;
6350}
6351
6352/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006353 * Return TRUE if there is only one window (in the current tab page), not
6354 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006355 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 */
6357 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006358only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359{
6360#ifdef FEAT_WINDOWS
6361 int count = 0;
6362 win_T *wp;
6363
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006364 /* If there is another tab page there always is another window. */
6365 if (first_tabpage->tp_next != NULL)
6366 return FALSE;
6367
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368 for (wp = firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006369 if (wp->w_buffer != NULL
6370 && (!((wp->w_buffer->b_help && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371# ifdef FEAT_QUICKFIX
6372 || wp->w_p_pvw
6373# endif
6374 ) || wp == curwin)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006375# ifdef FEAT_AUTOCMD
6376 && wp != aucmd_win
6377# endif
6378 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 ++count;
6380 return (count <= 1);
6381#else
6382 return TRUE;
6383#endif
6384}
6385
6386#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO)
6387/*
6388 * Correct the cursor line number in other windows. Used after changing the
6389 * current buffer, and before applying autocommands.
6390 * When "do_curwin" is TRUE, also check current window.
6391 */
6392 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006393check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394{
6395 win_T *wp;
6396
6397#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006398 tabpage_T *tp;
6399
6400 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
6402#else
6403 wp = curwin;
6404 if (do_curwin)
6405#endif
6406 {
6407 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6408 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6409 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6410 wp->w_topline = curbuf->b_ml.ml_line_count;
6411 }
6412}
6413#endif
6414
6415#if defined(FEAT_WINDOWS) || defined(PROTO)
6416
6417/*
6418 * A snapshot of the window sizes, to restore them after closing the help
6419 * window.
6420 * Only these fields are used:
6421 * fr_layout
6422 * fr_width
6423 * fr_height
6424 * fr_next
6425 * fr_child
6426 * fr_win (only valid for the old curwin, NULL otherwise)
6427 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428
6429/*
6430 * Create a snapshot of the current frame sizes.
6431 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006432 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006433make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006435 clear_snapshot(curtab, idx);
6436 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437}
6438
6439 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006440make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441{
6442 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6443 if (*frp == NULL)
6444 return;
6445 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 (*frp)->fr_height = fr->fr_height;
6448 if (fr->fr_next != NULL)
6449 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6450 if (fr->fr_child != NULL)
6451 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6452 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6453 (*frp)->fr_win = curwin;
6454}
6455
6456/*
6457 * Remove any existing snapshot.
6458 */
6459 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006460clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006462 clear_snapshot_rec(tp->tp_snapshot[idx]);
6463 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464}
6465
6466 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006467clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468{
6469 if (fr != NULL)
6470 {
6471 clear_snapshot_rec(fr->fr_next);
6472 clear_snapshot_rec(fr->fr_child);
6473 vim_free(fr);
6474 }
6475}
6476
6477/*
6478 * Restore a previously created snapshot, if there is any.
6479 * This is only done if the screen size didn't change and the window layout is
6480 * still the same.
6481 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006482 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006483restore_snapshot(
6484 int idx,
6485 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486{
6487 win_T *wp;
6488
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006489 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006490 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006491 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6492 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006494 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495 win_comp_pos();
6496 if (wp != NULL && close_curwin)
6497 win_goto(wp);
6498 redraw_all_later(CLEAR);
6499 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006500 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501}
6502
6503/*
6504 * Check if frames "sn" and "fr" have the same layout, same following frames
6505 * and same children.
6506 */
6507 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006508check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509{
6510 if (sn->fr_layout != fr->fr_layout
6511 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6512 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6513 || (sn->fr_next != NULL
6514 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6515 || (sn->fr_child != NULL
6516 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL))
6517 return FAIL;
6518 return OK;
6519}
6520
6521/*
6522 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6523 * following frames and children.
6524 * Returns a pointer to the old current window, or NULL.
6525 */
6526 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006527restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528{
6529 win_T *wp = NULL;
6530 win_T *wp2;
6531
6532 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534 if (fr->fr_layout == FR_LEAF)
6535 {
6536 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006537 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538 wp = sn->fr_win;
6539 }
6540 if (sn->fr_next != NULL)
6541 {
6542 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6543 if (wp2 != NULL)
6544 wp = wp2;
6545 }
6546 if (sn->fr_child != NULL)
6547 {
6548 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6549 if (wp2 != NULL)
6550 wp = wp2;
6551 }
6552 return wp;
6553}
6554
6555#endif
6556
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006557#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6558 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006559/*
6560 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006561 * restore_win() MUST be called to undo, also when FAIL is returned.
6562 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006563 * When "no_display" is TRUE the display won't be affected, no redraw is
6564 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006565 * Returns FAIL if switching to "win" failed.
6566 */
6567 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006568switch_win(
6569 win_T **save_curwin UNUSED,
6570 tabpage_T **save_curtab UNUSED,
6571 win_T *win UNUSED,
6572 tabpage_T *tp UNUSED,
6573 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006574{
6575# ifdef FEAT_AUTOCMD
6576 block_autocmds();
6577# endif
6578# ifdef FEAT_WINDOWS
6579 *save_curwin = curwin;
6580 if (tp != NULL)
6581 {
6582 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006583 if (no_display)
6584 {
6585 curtab->tp_firstwin = firstwin;
6586 curtab->tp_lastwin = lastwin;
6587 curtab = tp;
6588 firstwin = curtab->tp_firstwin;
6589 lastwin = curtab->tp_lastwin;
6590 }
6591 else
6592 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006593 }
6594 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006595 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006596 curwin = win;
6597 curbuf = curwin->w_buffer;
6598# endif
6599 return OK;
6600}
6601
6602/*
6603 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006604 * When "no_display" is TRUE the display won't be affected, no redraw is
6605 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006606 */
6607 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006608restore_win(
6609 win_T *save_curwin UNUSED,
6610 tabpage_T *save_curtab UNUSED,
6611 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006612{
6613# ifdef FEAT_WINDOWS
6614 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006615 {
6616 if (no_display)
6617 {
6618 curtab->tp_firstwin = firstwin;
6619 curtab->tp_lastwin = lastwin;
6620 curtab = save_curtab;
6621 firstwin = curtab->tp_firstwin;
6622 lastwin = curtab->tp_lastwin;
6623 }
6624 else
6625 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6626 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006627 if (win_valid(save_curwin))
6628 {
6629 curwin = save_curwin;
6630 curbuf = curwin->w_buffer;
6631 }
6632# endif
6633# ifdef FEAT_AUTOCMD
6634 unblock_autocmds();
6635# endif
6636}
6637
6638/*
6639 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6640 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6641 */
6642 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006643switch_buffer(bufref_T *save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006644{
6645# ifdef FEAT_AUTOCMD
6646 block_autocmds();
6647# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006648 set_bufref(save_curbuf, curbuf);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006649 --curbuf->b_nwindows;
6650 curbuf = buf;
6651 curwin->w_buffer = buf;
6652 ++curbuf->b_nwindows;
6653}
6654
6655/*
6656 * Restore the current buffer after using switch_buffer().
6657 */
6658 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006659restore_buffer(bufref_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006660{
6661# ifdef FEAT_AUTOCMD
6662 unblock_autocmds();
6663# endif
6664 /* Check for valid buffer, just in case. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006665 if (bufref_valid(save_curbuf))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006666 {
6667 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006668 curwin->w_buffer = save_curbuf->br_buf;
6669 curbuf = save_curbuf->br_buf;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006670 ++curbuf->b_nwindows;
6671 }
6672}
6673#endif
6674
Bram Moolenaar44a2f922016-03-19 22:11:51 +01006675#if (defined(FEAT_GUI) && defined(FEAT_WINDOWS)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676/*
6677 * Return TRUE if there is any vertically split window.
6678 */
6679 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006680win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006681{
6682 frame_T *fr;
6683
6684 if (topframe->fr_layout == FR_ROW)
6685 return TRUE;
6686
6687 if (topframe->fr_layout == FR_COL)
6688 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6689 if (fr->fr_layout == FR_ROW)
6690 return TRUE;
6691
6692 return FALSE;
6693}
6694#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006695
6696#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6697/*
6698 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006699 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006700 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6701 * If no particular ID is desired, -1 must be specified for 'id'.
6702 * Return ID of added match, -1 on failure.
6703 */
6704 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006705match_add(
6706 win_T *wp,
6707 char_u *grp,
6708 char_u *pat,
6709 int prio,
6710 int id,
6711 list_T *pos_list,
6712 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006713{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006714 matchitem_T *cur;
6715 matchitem_T *prev;
6716 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006717 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006718 regprog_T *regprog = NULL;
6719 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006720
Bram Moolenaarb3414592014-06-17 17:48:32 +02006721 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006722 return -1;
6723 if (id < -1 || id == 0)
6724 {
6725 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id);
6726 return -1;
6727 }
6728 if (id != -1)
6729 {
6730 cur = wp->w_match_head;
6731 while (cur != NULL)
6732 {
6733 if (cur->id == id)
6734 {
6735 EMSGN("E801: ID already taken: %ld", id);
6736 return -1;
6737 }
6738 cur = cur->next;
6739 }
6740 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006741 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006742 {
6743 EMSG2(_(e_nogroup), grp);
6744 return -1;
6745 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006746 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006747 {
6748 EMSG2(_(e_invarg2), pat);
6749 return -1;
6750 }
6751
6752 /* Find available match ID. */
6753 while (id == -1)
6754 {
6755 cur = wp->w_match_head;
6756 while (cur != NULL && cur->id != wp->w_next_match_id)
6757 cur = cur->next;
6758 if (cur == NULL)
6759 id = wp->w_next_match_id;
6760 wp->w_next_match_id++;
6761 }
6762
6763 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006764 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006765 m->id = id;
6766 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006767 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006768 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006769 m->match.regprog = regprog;
6770 m->match.rmm_ic = FALSE;
6771 m->match.rmm_maxcol = 0;
Bram Moolenaar42356152016-03-31 22:27:40 +02006772# if defined(FEAT_CONCEAL) && defined(FEAT_MBYTE)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006773 m->conceal_char = 0;
6774 if (conceal_char != NULL)
6775 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006776# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006777
Bram Moolenaarb3414592014-06-17 17:48:32 +02006778 /* Set up position matches */
6779 if (pos_list != NULL)
6780 {
6781 linenr_T toplnum = 0;
6782 linenr_T botlnum = 0;
6783 listitem_T *li;
6784 int i;
6785
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006786 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006787 i++, li = li->li_next)
6788 {
6789 linenr_T lnum = 0;
6790 colnr_T col = 0;
6791 int len = 1;
6792 list_T *subl;
6793 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006794 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006795
Bram Moolenaarb3414592014-06-17 17:48:32 +02006796 if (li->li_tv.v_type == VAR_LIST)
6797 {
6798 subl = li->li_tv.vval.v_list;
6799 if (subl == NULL)
6800 goto fail;
6801 subli = subl->lv_first;
6802 if (subli == NULL)
6803 goto fail;
6804 lnum = get_tv_number_chk(&subli->li_tv, &error);
6805 if (error == TRUE)
6806 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006807 if (lnum == 0)
6808 {
6809 --i;
6810 continue;
6811 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006812 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006813 subli = subli->li_next;
6814 if (subli != NULL)
6815 {
6816 col = get_tv_number_chk(&subli->li_tv, &error);
6817 if (error == TRUE)
6818 goto fail;
6819 subli = subli->li_next;
6820 if (subli != NULL)
6821 {
6822 len = get_tv_number_chk(&subli->li_tv, &error);
6823 if (error == TRUE)
6824 goto fail;
6825 }
6826 }
6827 m->pos.pos[i].col = col;
6828 m->pos.pos[i].len = len;
6829 }
6830 else if (li->li_tv.v_type == VAR_NUMBER)
6831 {
6832 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006833 {
6834 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006835 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006836 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006837 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6838 m->pos.pos[i].col = 0;
6839 m->pos.pos[i].len = 0;
6840 }
6841 else
6842 {
6843 EMSG(_("List or number required"));
6844 goto fail;
6845 }
6846 if (toplnum == 0 || lnum < toplnum)
6847 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006848 if (botlnum == 0 || lnum >= botlnum)
6849 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006850 }
6851
6852 /* Calculate top and bottom lines for redrawing area */
6853 if (toplnum != 0)
6854 {
6855 if (wp->w_buffer->b_mod_set)
6856 {
6857 if (wp->w_buffer->b_mod_top > toplnum)
6858 wp->w_buffer->b_mod_top = toplnum;
6859 if (wp->w_buffer->b_mod_bot < botlnum)
6860 wp->w_buffer->b_mod_bot = botlnum;
6861 }
6862 else
6863 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006864 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006865 wp->w_buffer->b_mod_top = toplnum;
6866 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006867 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006868 }
6869 m->pos.toplnum = toplnum;
6870 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006871 rtype = VALID;
6872 }
6873 }
6874
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006875 /* Insert new match. The match list is in ascending order with regard to
6876 * the match priorities. */
6877 cur = wp->w_match_head;
6878 prev = cur;
6879 while (cur != NULL && prio >= cur->priority)
6880 {
6881 prev = cur;
6882 cur = cur->next;
6883 }
6884 if (cur == prev)
6885 wp->w_match_head = m;
6886 else
6887 prev->next = m;
6888 m->next = cur;
6889
Bram Moolenaarb3414592014-06-17 17:48:32 +02006890 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006891 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006892
6893fail:
6894 vim_free(m);
6895 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006896}
6897
6898/*
6899 * Delete match with ID 'id' in the match list of window 'wp'.
6900 * Print error messages if 'perr' is TRUE.
6901 */
6902 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006903match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006904{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006905 matchitem_T *cur = wp->w_match_head;
6906 matchitem_T *prev = cur;
6907 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006908
6909 if (id < 1)
6910 {
6911 if (perr == TRUE)
6912 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)",
6913 id);
6914 return -1;
6915 }
6916 while (cur != NULL && cur->id != id)
6917 {
6918 prev = cur;
6919 cur = cur->next;
6920 }
6921 if (cur == NULL)
6922 {
6923 if (perr == TRUE)
6924 EMSGN("E803: ID not found: %ld", id);
6925 return -1;
6926 }
6927 if (cur == prev)
6928 wp->w_match_head = cur->next;
6929 else
6930 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006931 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006932 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006933 if (cur->pos.toplnum != 0)
6934 {
6935 if (wp->w_buffer->b_mod_set)
6936 {
6937 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6938 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6939 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
6940 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
6941 }
6942 else
6943 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006944 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006945 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6946 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006947 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006948 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006949 rtype = VALID;
6950 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006951 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006952 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006953 return 0;
6954}
6955
6956/*
6957 * Delete all matches in the match list of window 'wp'.
6958 */
6959 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006960clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006961{
6962 matchitem_T *m;
6963
6964 while (wp->w_match_head != NULL)
6965 {
6966 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006967 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006968 vim_free(wp->w_match_head->pattern);
6969 vim_free(wp->w_match_head);
6970 wp->w_match_head = m;
6971 }
6972 redraw_later(SOME_VALID);
6973}
6974
6975/*
6976 * Get match from ID 'id' in window 'wp'.
6977 * Return NULL if match not found.
6978 */
6979 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006980get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006981{
6982 matchitem_T *cur = wp->w_match_head;
6983
6984 while (cur != NULL && cur->id != id)
6985 cur = cur->next;
6986 return cur;
6987}
6988#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02006989
6990#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
6991 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006992get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02006993{
6994 int i = 1;
6995 win_T *w;
6996
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006997 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02006998 ++i;
6999
7000 if (w == NULL)
7001 return 0;
7002 else
7003 return i;
7004}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007005
7006 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007007get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007008{
7009 int i = 1;
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007010# ifdef FEAT_WINDOWS
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007011 tabpage_T *t;
7012
7013 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7014 ++i;
7015
7016 if (t == NULL)
7017 return 0;
7018 else
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007019# endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007020 return i;
7021}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007022#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007023
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01007024#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007025/*
7026 * Return TRUE if "topfrp" and its children are at the right height.
7027 */
7028 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007029frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007030{
7031 frame_T *frp;
7032
7033 if (topfrp->fr_height != height)
7034 return FALSE;
7035
7036 if (topfrp->fr_layout == FR_ROW)
7037 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7038 if (frp->fr_height != height)
7039 return FALSE;
7040
7041 return TRUE;
7042}
Bram Moolenaarf0327f62013-06-28 20:16:55 +02007043#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007044
Bram Moolenaar44a2f922016-03-19 22:11:51 +01007045#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007046/*
7047 * Return TRUE if "topfrp" and its children are at the right width.
7048 */
7049 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007050frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007051{
7052 frame_T *frp;
7053
7054 if (topfrp->fr_width != width)
7055 return FALSE;
7056
7057 if (topfrp->fr_layout == FR_COL)
7058 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7059 if (frp->fr_width != width)
7060 return FALSE;
7061
7062 return TRUE;
7063}
7064#endif
7065
Bram Moolenaar86edef62016-03-13 18:07:30 +01007066#if defined(FEAT_EVAL) || defined(PROTO)
7067 int
7068win_getid(typval_T *argvars)
7069{
7070 int winnr;
7071 win_T *wp;
7072
7073 if (argvars[0].v_type == VAR_UNKNOWN)
7074 return curwin->w_id;
7075 winnr = get_tv_number(&argvars[0]);
7076 if (winnr > 0)
7077 {
7078 if (argvars[1].v_type == VAR_UNKNOWN)
7079 wp = firstwin;
7080 else
7081 {
7082 tabpage_T *tp;
7083 int tabnr = get_tv_number(&argvars[1]);
7084
7085 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7086 if (--tabnr == 0)
7087 break;
7088 if (tp == NULL)
7089 return -1;
7090 wp = tp->tp_firstwin;
7091 }
7092 for ( ; wp != NULL; wp = wp->w_next)
7093 if (--winnr == 0)
7094 return wp->w_id;
7095 }
7096 return 0;
7097}
7098
7099 int
7100win_gotoid(typval_T *argvars)
7101{
7102 win_T *wp;
7103 tabpage_T *tp;
7104 int id = get_tv_number(&argvars[0]);
7105
7106 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7107 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7108 wp != NULL; wp = wp->w_next)
7109 if (wp->w_id == id)
7110 {
7111 goto_tabpage_win(tp, wp);
7112 return 1;
7113 }
7114 return 0;
7115}
7116
7117 void
7118win_id2tabwin(typval_T *argvars, list_T *list)
7119{
7120 win_T *wp;
7121 tabpage_T *tp;
7122 int winnr = 1;
7123 int tabnr = 1;
7124 int id = get_tv_number(&argvars[0]);
7125
7126 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7127 {
7128 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7129 wp != NULL; wp = wp->w_next)
7130 {
7131 if (wp->w_id == id)
7132 {
7133 list_append_number(list, tabnr);
7134 list_append_number(list, winnr);
7135 return;
7136 }
7137 ++winnr;
7138 }
7139 ++tabnr;
7140 winnr = 1;
7141 }
7142 list_append_number(list, 0);
7143 list_append_number(list, 0);
7144}
7145
7146 int
7147win_id2win(typval_T *argvars)
7148{
7149 win_T *wp;
7150 int nr = 1;
7151 int id = get_tv_number(&argvars[0]);
7152
7153 for (wp = firstwin; wp != NULL; wp = wp->w_next)
7154 {
7155 if (wp->w_id == id)
7156 return nr;
7157 ++nr;
7158 }
7159 return 0;
7160}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007161
7162 void
7163win_findbuf(typval_T *argvars, list_T *list)
7164{
7165 win_T *wp;
7166 tabpage_T *tp;
7167 int bufnr = get_tv_number(&argvars[0]);
7168
7169 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7170 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7171 wp != NULL; wp = wp->w_next)
7172 if (wp->w_buffer->b_fnum == bufnr)
7173 list_append_number(list, wp->w_id);
7174}
7175
Bram Moolenaar86edef62016-03-13 18:07:30 +01007176#endif