blob: 92fcbbe710dd7ba0774a9b4f86910862010e7f2f [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 Moolenaar071d4272004-06-13 20:20:40 +000012static int path_is_url __ARGS((char_u *p));
13#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar884ae642009-02-22 01:37:59 +000014static void win_init __ARGS((win_T *newp, win_T *oldp, int flags));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000015static void win_init_some __ARGS((win_T *newp, win_T *oldp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016static void frame_comp_pos __ARGS((frame_T *topfrp, int *row, int *col));
17static void frame_setheight __ARGS((frame_T *curfrp, int height));
18#ifdef FEAT_VERTSPLIT
19static void frame_setwidth __ARGS((frame_T *curfrp, int width));
20#endif
21static void win_exchange __ARGS((long));
22static void win_rotate __ARGS((int, int));
23static void win_totop __ARGS((int size, int flags));
24static void win_equal_rec __ARGS((win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000025static int last_window __ARGS((void));
Bram Moolenaarbef1c362012-05-25 12:39:00 +020026static int close_last_window_tabpage __ARGS((win_T *win, int free_buf, tabpage_T *prev_curtab));
Bram Moolenaarf740b292006-02-16 22:11:02 +000027static win_T *win_free_mem __ARGS((win_T *win, int *dirp, tabpage_T *tp));
Bram Moolenaarf740b292006-02-16 22:11:02 +000028static frame_T *win_altframe __ARGS((win_T *win, tabpage_T *tp));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000029static tabpage_T *alt_tabpage __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000030static win_T *frame2win __ARGS((frame_T *frp));
31static int frame_has_win __ARGS((frame_T *frp, win_T *wp));
32static void frame_new_height __ARGS((frame_T *topfrp, int height, int topfirst, int wfh));
33static int frame_fixed_height __ARGS((frame_T *frp));
34#ifdef FEAT_VERTSPLIT
Bram Moolenaarbe4d5062006-03-18 21:30:13 +000035static int frame_fixed_width __ARGS((frame_T *frp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000036static void frame_add_statusline __ARGS((frame_T *frp));
Bram Moolenaarbe4d5062006-03-18 21:30:13 +000037static void frame_new_width __ARGS((frame_T *topfrp, int width, int leftfirst, int wfw));
Bram Moolenaar071d4272004-06-13 20:20:40 +000038static void frame_add_vsep __ARGS((frame_T *frp));
39static int frame_minwidth __ARGS((frame_T *topfrp, win_T *next_curwin));
40static void frame_fix_width __ARGS((win_T *wp));
41#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000042#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +000043static int win_alloc_firstwin __ARGS((win_T *oldwin));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000044static void new_frame __ARGS((win_T *wp));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000045#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000046static tabpage_T *alloc_tabpage __ARGS((void));
Bram Moolenaar49e649f2013-05-06 04:50:35 +020047static int leave_tabpage __ARGS((buf_T *new_curbuf, int trigger_leave_autocmds));
48static void enter_tabpage __ARGS((tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds));
Bram Moolenaar071d4272004-06-13 20:20:40 +000049static void frame_fix_height __ARGS((win_T *wp));
50static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin));
Bram Moolenaar49e649f2013-05-06 04:50:35 +020051static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin, int trigger_enter_autocmds, int trigger_leave_autocmds));
Bram Moolenaarf740b292006-02-16 22:11:02 +000052static void win_free __ARGS((win_T *wp, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000053static void frame_append __ARGS((frame_T *after, frame_T *frp));
54static void frame_insert __ARGS((frame_T *before, frame_T *frp));
55static void frame_remove __ARGS((frame_T *frp));
Bram Moolenaarf0327f62013-06-28 20:16:55 +020056# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +000057static void win_goto_ver __ARGS((int up, long count));
58static void win_goto_hor __ARGS((int left, long count));
Bram Moolenaarf0327f62013-06-28 20:16:55 +020059# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000060static void frame_add_height __ARGS((frame_T *frp, int n));
61static void last_status_rec __ARGS((frame_T *fr, int statusline));
62
Bram Moolenaar071d4272004-06-13 20:20:40 +000063static void make_snapshot_rec __ARGS((frame_T *fr, frame_T **frp));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000064static void clear_snapshot __ARGS((tabpage_T *tp, int idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065static void clear_snapshot_rec __ARGS((frame_T *fr));
Bram Moolenaar071d4272004-06-13 20:20:40 +000066static int check_snapshot_rec __ARGS((frame_T *sn, frame_T *fr));
67static win_T *restore_snapshot_rec __ARGS((frame_T *sn, frame_T *fr));
68
Bram Moolenaarb893ac22013-06-26 14:04:47 +020069static int frame_check_height __ARGS((frame_T *topfrp, int height));
70#ifdef FEAT_VERTSPLIT
71static int frame_check_width __ARGS((frame_T *topfrp, int width));
72#endif
73
Bram Moolenaar071d4272004-06-13 20:20:40 +000074#endif /* FEAT_WINDOWS */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000075
Bram Moolenaar746ebd32009-06-16 14:01:43 +000076static win_T *win_alloc __ARGS((win_T *after, int hidden));
Bram Moolenaar0215e8e2010-12-17 17:35:10 +010077static void set_fraction __ARGS((win_T *wp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
79#define URL_SLASH 1 /* path_is_url() has found "://" */
80#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
81
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000082#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000083
Bram Moolenaar05159a02005-02-26 23:04:13 +000084#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +000085# define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000086#else
87# define ROWS_AVAIL (Rows - p_ch)
Bram Moolenaar05159a02005-02-26 23:04:13 +000088#endif
89
Bram Moolenaar071d4272004-06-13 20:20:40 +000090#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000091
92static char *m_onlyone = N_("Already only one window");
93
Bram Moolenaar071d4272004-06-13 20:20:40 +000094/*
95 * all CTRL-W window commands are handled here, called from normal_cmd().
96 */
97 void
98do_window(nchar, Prenum, xchar)
99 int nchar;
100 long Prenum;
101 int xchar; /* extra char from ":wincmd gx" or NUL */
102{
103 long Prenum1;
104 win_T *wp;
105#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
106 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000107 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#endif
109#ifdef FEAT_FIND_ID
110 int type = FIND_DEFINE;
111 int len;
112#endif
113 char_u cbuf[40];
114
115 if (Prenum == 0)
116 Prenum1 = 1;
117 else
118 Prenum1 = Prenum;
119
120#ifdef FEAT_CMDWIN
121# define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
122#else
123# define CHECK_CMDWIN
124#endif
125
126 switch (nchar)
127 {
128/* split current window in two parts, horizontally */
129 case 'S':
130 case Ctrl_S:
131 case 's':
132 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000134#ifdef FEAT_QUICKFIX
135 /* When splitting the quickfix window open a new buffer in it,
136 * don't replicate the quickfix buffer. */
137 if (bt_quickfix(curbuf))
138 goto newwindow;
139#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#ifdef FEAT_GUI
141 need_mouse_correct = TRUE;
142#endif
143 win_split((int)Prenum, 0);
144 break;
145
146#ifdef FEAT_VERTSPLIT
147/* split current window in two parts, vertically */
148 case Ctrl_V:
149 case 'v':
150 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000152# ifdef FEAT_QUICKFIX
153 /* When splitting the quickfix window open a new buffer in it,
154 * don't replicate the quickfix buffer. */
155 if (bt_quickfix(curbuf))
156 goto newwindow;
157# endif
158# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 need_mouse_correct = TRUE;
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000160# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 win_split((int)Prenum, WSP_VERT);
162 break;
163#endif
164
165/* split current window and edit alternate file */
166 case Ctrl_HAT:
167 case '^':
168 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170 STRCPY(cbuf, "split #");
171 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000172 vim_snprintf((char *)cbuf + 7, sizeof(cbuf) - 7,
173 "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 do_cmdline_cmd(cbuf);
175 break;
176
177/* open new window */
178 case Ctrl_N:
179 case 'n':
180 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000182#ifdef FEAT_QUICKFIX
183newwindow:
184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000186 /* window height */
187 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 else
189 cbuf[0] = NUL;
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000190#if defined(FEAT_VERTSPLIT) && defined(FEAT_QUICKFIX)
191 if (nchar == 'v' || nchar == Ctrl_V)
192 STRCAT(cbuf, "v");
193#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 STRCAT(cbuf, "new");
195 do_cmdline_cmd(cbuf);
196 break;
197
198/* quit current window */
199 case Ctrl_Q:
200 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100202 STRCPY(cbuf, "quit");
203 if (Prenum)
204 vim_snprintf((char *)cbuf + 4, sizeof(cbuf) - 5,
205 "%ld", Prenum);
206 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 break;
208
209/* close current window */
210 case Ctrl_C:
211 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100213 STRCPY(cbuf, "close");
214 if (Prenum)
215 vim_snprintf((char *)cbuf + 5, sizeof(cbuf) - 5,
216 "%ld", Prenum);
217 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 break;
219
220#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
221/* close preview window */
222 case Ctrl_Z:
223 case 'z':
224 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 do_cmdline_cmd((char_u *)"pclose");
227 break;
228
229/* cursor to preview window */
230 case 'P':
231 for (wp = firstwin; wp != NULL; wp = wp->w_next)
232 if (wp->w_p_pvw)
233 break;
234 if (wp == NULL)
235 EMSG(_("E441: There is no preview window"));
236 else
237 win_goto(wp);
238 break;
239#endif
240
241/* close all but current window */
242 case Ctrl_O:
243 case 'o':
244 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100246 STRCPY(cbuf, "only");
247 if (Prenum > 0)
248 vim_snprintf((char *)cbuf + 4, sizeof(cbuf) - 4,
249 "%ld", Prenum);
250 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 break;
252
253/* cursor to next window with wrap around */
254 case Ctrl_W:
255 case 'w':
256/* cursor to previous window with wrap around */
257 case 'W':
258 CHECK_CMDWIN
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000259 if (firstwin == lastwin && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 beep_flush();
261 else
262 {
263 if (Prenum) /* go to specified window */
264 {
265 for (wp = firstwin; --Prenum > 0; )
266 {
267 if (wp->w_next == NULL)
268 break;
269 else
270 wp = wp->w_next;
271 }
272 }
273 else
274 {
275 if (nchar == 'W') /* go to previous window */
276 {
277 wp = curwin->w_prev;
278 if (wp == NULL)
279 wp = lastwin; /* wrap around */
280 }
281 else /* go to next window */
282 {
283 wp = curwin->w_next;
284 if (wp == NULL)
285 wp = firstwin; /* wrap around */
286 }
287 }
288 win_goto(wp);
289 }
290 break;
291
292/* cursor to window below */
293 case 'j':
294 case K_DOWN:
295 case Ctrl_J:
296 CHECK_CMDWIN
297#ifdef FEAT_VERTSPLIT
298 win_goto_ver(FALSE, Prenum1);
299#else
300 for (wp = curwin; wp->w_next != NULL && Prenum1-- > 0;
301 wp = wp->w_next)
302 ;
303 win_goto(wp);
304#endif
305 break;
306
307/* cursor to window above */
308 case 'k':
309 case K_UP:
310 case Ctrl_K:
311 CHECK_CMDWIN
312#ifdef FEAT_VERTSPLIT
313 win_goto_ver(TRUE, Prenum1);
314#else
315 for (wp = curwin; wp->w_prev != NULL && Prenum1-- > 0;
316 wp = wp->w_prev)
317 ;
318 win_goto(wp);
319#endif
320 break;
321
322#ifdef FEAT_VERTSPLIT
323/* cursor to left window */
324 case 'h':
325 case K_LEFT:
326 case Ctrl_H:
327 case K_BS:
328 CHECK_CMDWIN
329 win_goto_hor(TRUE, Prenum1);
330 break;
331
332/* cursor to right window */
333 case 'l':
334 case K_RIGHT:
335 case Ctrl_L:
336 CHECK_CMDWIN
337 win_goto_hor(FALSE, Prenum1);
338 break;
339#endif
340
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000341/* move window to new tab page */
342 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000343 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000344 MSG(_(m_onlyone));
345 else
346 {
347 tabpage_T *oldtab = curtab;
348 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000349
350 /* First create a new tab with the window, then go back to
351 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000352 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000353 if (win_new_tabpage((int)Prenum) == OK
354 && valid_tabpage(oldtab))
355 {
356 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200357 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000358 if (curwin == wp)
359 win_close(curwin, FALSE);
360 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200361 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000362 }
363 }
364 break;
365
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366/* cursor to top-left window */
367 case 't':
368 case Ctrl_T:
369 win_goto(firstwin);
370 break;
371
372/* cursor to bottom-right window */
373 case 'b':
374 case Ctrl_B:
375 win_goto(lastwin);
376 break;
377
378/* cursor to last accessed (previous) window */
379 case 'p':
380 case Ctrl_P:
381 if (prevwin == NULL)
382 beep_flush();
383 else
384 win_goto(prevwin);
385 break;
386
387/* exchange current and next window */
388 case 'x':
389 case Ctrl_X:
390 CHECK_CMDWIN
391 win_exchange(Prenum);
392 break;
393
394/* rotate windows downwards */
395 case Ctrl_R:
396 case 'r':
397 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 win_rotate(FALSE, (int)Prenum1); /* downwards */
400 break;
401
402/* rotate windows upwards */
403 case 'R':
404 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 win_rotate(TRUE, (int)Prenum1); /* upwards */
407 break;
408
409/* move window to the very top/bottom/left/right */
410 case 'K':
411 case 'J':
412#ifdef FEAT_VERTSPLIT
413 case 'H':
414 case 'L':
415#endif
416 CHECK_CMDWIN
417 win_totop((int)Prenum,
418 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
419 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
420 break;
421
422/* make all windows the same height */
423 case '=':
424#ifdef FEAT_GUI
425 need_mouse_correct = TRUE;
426#endif
427 win_equal(NULL, FALSE, 'b');
428 break;
429
430/* increase current window height */
431 case '+':
432#ifdef FEAT_GUI
433 need_mouse_correct = TRUE;
434#endif
435 win_setheight(curwin->w_height + (int)Prenum1);
436 break;
437
438/* decrease current window height */
439 case '-':
440#ifdef FEAT_GUI
441 need_mouse_correct = TRUE;
442#endif
443 win_setheight(curwin->w_height - (int)Prenum1);
444 break;
445
446/* set current window height */
447 case Ctrl__:
448 case '_':
449#ifdef FEAT_GUI
450 need_mouse_correct = TRUE;
451#endif
452 win_setheight(Prenum ? (int)Prenum : 9999);
453 break;
454
455#ifdef FEAT_VERTSPLIT
456/* increase current window width */
457 case '>':
458#ifdef FEAT_GUI
459 need_mouse_correct = TRUE;
460#endif
461 win_setwidth(curwin->w_width + (int)Prenum1);
462 break;
463
464/* decrease current window width */
465 case '<':
466#ifdef FEAT_GUI
467 need_mouse_correct = TRUE;
468#endif
469 win_setwidth(curwin->w_width - (int)Prenum1);
470 break;
471
472/* set current window width */
473 case '|':
474#ifdef FEAT_GUI
475 need_mouse_correct = TRUE;
476#endif
477 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
478 break;
479#endif
480
481/* jump to tag and split window if tag exists (in preview window) */
482#if defined(FEAT_QUICKFIX)
483 case '}':
484 CHECK_CMDWIN
485 if (Prenum)
486 g_do_tagpreview = Prenum;
487 else
488 g_do_tagpreview = p_pvh;
489 /*FALLTHROUGH*/
490#endif
491 case ']':
492 case Ctrl_RSB:
493 CHECK_CMDWIN
Bram Moolenaard355c502014-09-23 13:48:43 +0200494 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 if (Prenum)
496 postponed_split = Prenum;
497 else
498 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200499#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200500 if (nchar != '}')
501 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200502#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaard355c502014-09-23 13:48:43 +0200504 /* Execute the command right here, required when "wincmd ]"
505 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 do_nv_ident(Ctrl_RSB, NUL);
507 break;
508
509#ifdef FEAT_SEARCHPATH
510/* edit file name under cursor in a new window */
511 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000512 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000514wingotofile:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 CHECK_CMDWIN
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000516
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000517 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 if (ptr != NULL)
519 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000520# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000522# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 setpcmark();
524 if (win_split(0, 0) == OK)
525 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200526 RESET_BINDING(curwin);
Bram Moolenaar701f7af2008-11-15 13:12:07 +0000527 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
528 ECMD_HIDE, NULL);
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000529 if (nchar == 'F' && lnum >= 0)
530 {
531 curwin->w_cursor.lnum = lnum;
532 check_cursor_lnum();
533 beginline(BL_SOL | BL_FIX);
534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 }
536 vim_free(ptr);
537 }
538 break;
539#endif
540
541#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000542/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 * new window -- webb
544 */
545 case 'i': /* Go to any match */
546 case Ctrl_I:
547 type = FIND_ANY;
548 /* FALLTHROUGH */
549 case 'd': /* Go to definition, using 'define' */
550 case Ctrl_D:
551 CHECK_CMDWIN
552 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
553 break;
554 find_pattern_in_path(ptr, 0, len, TRUE,
555 Prenum == 0 ? TRUE : FALSE, type,
556 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
557 curwin->w_set_curswant = TRUE;
558 break;
559#endif
560
Bram Moolenaar05159a02005-02-26 23:04:13 +0000561 case K_KENTER:
562 case CAR:
563#if defined(FEAT_QUICKFIX)
564 /*
565 * In a quickfix window a <CR> jumps to the error under the
566 * cursor in a new window.
567 */
568 if (bt_quickfix(curbuf))
569 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000570 sprintf((char *)cbuf, "split +%ld%s",
571 (long)curwin->w_cursor.lnum,
572 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000573 do_cmdline_cmd(cbuf);
574 }
575#endif
576 break;
577
578
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579/* CTRL-W g extended commands */
580 case 'g':
581 case Ctrl_G:
582 CHECK_CMDWIN
583#ifdef USE_ON_FLY_SCROLL
584 dont_scroll = TRUE; /* disallow scrolling here */
585#endif
586 ++no_mapping;
587 ++allow_keys; /* no mapping for xchar, but allow key codes */
588 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000589 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 --no_mapping;
592 --allow_keys;
593#ifdef FEAT_CMDL_INFO
594 (void)add_to_showcmd(xchar);
595#endif
596 switch (xchar)
597 {
598#if defined(FEAT_QUICKFIX)
599 case '}':
600 xchar = Ctrl_RSB;
601 if (Prenum)
602 g_do_tagpreview = Prenum;
603 else
604 g_do_tagpreview = p_pvh;
605 /*FALLTHROUGH*/
606#endif
607 case ']':
608 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200609 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 if (Prenum)
611 postponed_split = Prenum;
612 else
613 postponed_split = -1;
614
615 /* Execute the command right here, required when
616 * "wincmd g}" was used in a function. */
617 do_nv_ident('g', xchar);
618 break;
619
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000620#ifdef FEAT_SEARCHPATH
621 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000622 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100623 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000624 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000625 goto wingotofile;
626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 default:
628 beep_flush();
629 break;
630 }
631 break;
632
633 default: beep_flush();
634 break;
635 }
636}
637
638/*
639 * split the current window, implements CTRL-W s and :split
640 *
641 * "size" is the height or width for the new window, 0 to use half of current
642 * height or width.
643 *
644 * "flags":
645 * WSP_ROOM: require enough room for new window
646 * WSP_VERT: vertical split.
647 * WSP_TOP: open window at the top-left of the shell (help window).
648 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
649 * WSP_HELP: creating the help window, keep layout snapshot
650 *
651 * return FAIL for failure, OK otherwise
652 */
653 int
654win_split(size, flags)
655 int size;
656 int flags;
657{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000658 /* When the ":tab" modifier was used open a new tab page instead. */
659 if (may_open_tabpage() == OK)
660 return OK;
661
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 /* Add flags from ":vertical", ":topleft" and ":botright". */
663 flags |= cmdmod.split;
664 if ((flags & WSP_TOP) && (flags & WSP_BOT))
665 {
666 EMSG(_("E442: Can't split topleft and botright at the same time"));
667 return FAIL;
668 }
669
670 /* When creating the help window make a snapshot of the window layout.
671 * Otherwise clear the snapshot, it's now invalid. */
672 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000673 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000675 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
677 return win_split_ins(size, flags, NULL, 0);
678}
679
680/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100681 * When "new_wp" is NULL: split the current window in two.
682 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 * top/left/right/bottom.
684 * return FAIL for failure, OK otherwise
685 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000686 int
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100687win_split_ins(size, flags, new_wp, dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 int size;
689 int flags;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100690 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 int dir;
692{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100693 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 win_T *oldwin;
695 int new_size = size;
696 int i;
697 int need_status = 0;
698 int do_equal = FALSE;
699 int needed;
700 int available;
701 int oldwin_height = 0;
702 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200703 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200705 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200706 int wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
708 if (flags & WSP_TOP)
709 oldwin = firstwin;
710 else if (flags & WSP_BOT)
711 oldwin = lastwin;
712 else
713 oldwin = curwin;
714
715 /* add a status line when p_ls == 1 and splitting the first window */
716 if (lastwin == firstwin && p_ls == 1 && oldwin->w_status_height == 0)
717 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100718 if (oldwin->w_height <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 {
720 EMSG(_(e_noroom));
721 return FAIL;
722 }
723 need_status = STATUS_HEIGHT;
724 }
725
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000726#ifdef FEAT_GUI
727 /* May be needed for the scrollbars that are going to change. */
728 if (gui.in_use)
729 out_flush();
730#endif
731
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732#ifdef FEAT_VERTSPLIT
733 if (flags & WSP_VERT)
734 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200735 int wmw1;
736 int minwidth;
737
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739
740 /*
741 * Check if we are able to split the current window and compute its
742 * width.
743 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200744 /* Current window requires at least 1 space. */
745 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
746 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200748 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200749 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200751 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200753 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200755 else if (p_ea)
756 {
757 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
758 prevfrp = oldwin->w_frame;
759 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
760 frp = frp->fr_parent)
761 {
762 if (frp->fr_layout == FR_ROW)
763 for (frp2 = frp->fr_child; frp2 != NULL;
764 frp2 = frp2->fr_next)
765 if (frp2 != prevfrp)
766 minwidth += frame_minwidth(frp2, NOWIN);
767 prevfrp = frp;
768 }
769 available = topframe->fr_width;
770 needed += minwidth;
771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200773 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200774 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
775 available = oldwin->w_frame->fr_width;
776 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200777 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100778 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 {
780 EMSG(_(e_noroom));
781 return FAIL;
782 }
783 if (new_size == 0)
784 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200785 if (new_size > available - minwidth - 1)
786 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200787 if (new_size < wmw1)
788 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789
790 /* if it doesn't fit in the current window, need win_equal() */
791 if (oldwin->w_width - new_size - 1 < p_wmw)
792 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000793
794 /* We don't like to take lines for the new window from a
795 * 'winfixwidth' window. Take them from a window to the left or right
796 * instead, if possible. */
797 if (oldwin->w_p_wfw)
798 win_setwidth_win(oldwin->w_width + new_size, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000799
800 /* Only make all windows the same width if one of them (except oldwin)
801 * is wider than one of the split windows. */
802 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
803 && oldwin->w_frame->fr_parent != NULL)
804 {
805 frp = oldwin->w_frame->fr_parent->fr_child;
806 while (frp != NULL)
807 {
808 if (frp->fr_win != oldwin && frp->fr_win != NULL
809 && (frp->fr_win->w_width > new_size
810 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100811 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000812 {
813 do_equal = TRUE;
814 break;
815 }
816 frp = frp->fr_next;
817 }
818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 }
820 else
821#endif
822 {
823 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824
825 /*
826 * Check if we are able to split the current window and compute its
827 * height.
828 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200829 /* Current window requires at least 1 space. */
830 wmh1 = (p_wmh == 0 ? 1 : p_wmh);
831 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200833 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200834 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200836 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200838 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200840 else if (p_ea)
841 {
842 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
843 prevfrp = oldwin->w_frame;
844 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
845 frp = frp->fr_parent)
846 {
847 if (frp->fr_layout == FR_COL)
848 for (frp2 = frp->fr_child; frp2 != NULL;
849 frp2 = frp2->fr_next)
850 if (frp2 != prevfrp)
851 minheight += frame_minheight(frp2, NOWIN);
852 prevfrp = frp;
853 }
854 available = topframe->fr_height;
855 needed += minheight;
856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 else
858 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200859 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
860 available = oldwin->w_frame->fr_height;
861 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100863 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 {
865 EMSG(_(e_noroom));
866 return FAIL;
867 }
868 oldwin_height = oldwin->w_height;
869 if (need_status)
870 {
871 oldwin->w_status_height = STATUS_HEIGHT;
872 oldwin_height -= STATUS_HEIGHT;
873 }
874 if (new_size == 0)
875 new_size = oldwin_height / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200876 if (new_size > available - minheight - STATUS_HEIGHT)
877 new_size = available - minheight - STATUS_HEIGHT;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200878 if (new_size < wmh1)
879 new_size = wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880
881 /* if it doesn't fit in the current window, need win_equal() */
882 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
883 do_equal = TRUE;
884
885 /* We don't like to take lines for the new window from a
886 * 'winfixheight' window. Take them from a window above or below
887 * instead, if possible. */
888 if (oldwin->w_p_wfh)
889 {
890 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
891 oldwin);
892 oldwin_height = oldwin->w_height;
893 if (need_status)
894 oldwin_height -= STATUS_HEIGHT;
895 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000896
897 /* Only make all windows the same height if one of them (except oldwin)
898 * is higher than one of the split windows. */
899 if (!do_equal && p_ea && size == 0
900#ifdef FEAT_VERTSPLIT
901 && *p_ead != 'h'
902#endif
903 && oldwin->w_frame->fr_parent != NULL)
904 {
905 frp = oldwin->w_frame->fr_parent->fr_child;
906 while (frp != NULL)
907 {
908 if (frp->fr_win != oldwin && frp->fr_win != NULL
909 && (frp->fr_win->w_height > new_size
910 || frp->fr_win->w_height > oldwin_height - new_size
911 - STATUS_HEIGHT))
912 {
913 do_equal = TRUE;
914 break;
915 }
916 frp = frp->fr_next;
917 }
918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 }
920
921 /*
922 * allocate new window structure and link it in the window list
923 */
924 if ((flags & WSP_TOP) == 0
925 && ((flags & WSP_BOT)
926 || (flags & WSP_BELOW)
927 || (!(flags & WSP_ABOVE)
928 && (
929#ifdef FEAT_VERTSPLIT
930 (flags & WSP_VERT) ? p_spr :
931#endif
932 p_sb))))
933 {
934 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100935 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000936 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 else
938 win_append(oldwin, wp);
939 }
940 else
941 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100942 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000943 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 else
945 win_append(oldwin->w_prev, wp);
946 }
947
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100948 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 {
950 if (wp == NULL)
951 return FAIL;
952
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000953 new_frame(wp);
954 if (wp->w_frame == NULL)
955 {
956 win_free(wp, NULL);
957 return FAIL;
958 }
959
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000960 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +0000961 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963
964 /*
965 * Reorganise the tree of frames to insert the new window.
966 */
967 if (flags & (WSP_TOP | WSP_BOT))
968 {
969#ifdef FEAT_VERTSPLIT
970 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
971 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
972#else
973 if (topframe->fr_layout == FR_COL)
974#endif
975 {
976 curfrp = topframe->fr_child;
977 if (flags & WSP_BOT)
978 while (curfrp->fr_next != NULL)
979 curfrp = curfrp->fr_next;
980 }
981 else
982 curfrp = topframe;
983 before = (flags & WSP_TOP);
984 }
985 else
986 {
987 curfrp = oldwin->w_frame;
988 if (flags & WSP_BELOW)
989 before = FALSE;
990 else if (flags & WSP_ABOVE)
991 before = TRUE;
992 else
993#ifdef FEAT_VERTSPLIT
994 if (flags & WSP_VERT)
995 before = !p_spr;
996 else
997#endif
998 before = !p_sb;
999 }
1000 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
1001 {
1002 /* Need to create a new frame in the tree to make a branch. */
1003 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
1004 *frp = *curfrp;
1005 curfrp->fr_layout = layout;
1006 frp->fr_parent = curfrp;
1007 frp->fr_next = NULL;
1008 frp->fr_prev = NULL;
1009 curfrp->fr_child = frp;
1010 curfrp->fr_win = NULL;
1011 curfrp = frp;
1012 if (frp->fr_win != NULL)
1013 oldwin->w_frame = frp;
1014 else
1015 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
1016 frp->fr_parent = curfrp;
1017 }
1018
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001019 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001020 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001022 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 frp->fr_parent = curfrp->fr_parent;
1024
1025 /* Insert the new frame at the right place in the frame list. */
1026 if (before)
1027 frame_insert(curfrp, frp);
1028 else
1029 frame_append(curfrp, frp);
1030
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001031 /* Set w_fraction now so that the cursor keeps the same relative
1032 * vertical position. */
Bram Moolenaar13d831f2011-01-08 14:46:03 +01001033 if (oldwin->w_height > 0)
1034 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001035 wp->w_fraction = oldwin->w_fraction;
1036
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037#ifdef FEAT_VERTSPLIT
1038 if (flags & WSP_VERT)
1039 {
1040 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001041
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 if (need_status)
1043 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001044 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 oldwin->w_status_height = need_status;
1046 }
1047 if (flags & (WSP_TOP | WSP_BOT))
1048 {
1049 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001050 wp->w_winrow = tabline_height();
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001051 win_new_height(wp, curfrp->fr_height - (p_ls > 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 wp->w_status_height = (p_ls > 0);
1053 }
1054 else
1055 {
1056 /* height and row of new window is same as current window */
1057 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001058 win_new_height(wp, oldwin->w_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 wp->w_status_height = oldwin->w_status_height;
1060 }
1061 frp->fr_height = curfrp->fr_height;
1062
1063 /* "new_size" of the current window goes to the new window, use
1064 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001065 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 if (before)
1067 wp->w_vsep_width = 1;
1068 else
1069 {
1070 wp->w_vsep_width = oldwin->w_vsep_width;
1071 oldwin->w_vsep_width = 1;
1072 }
1073 if (flags & (WSP_TOP | WSP_BOT))
1074 {
1075 if (flags & WSP_BOT)
1076 frame_add_vsep(curfrp);
1077 /* Set width of neighbor frame */
1078 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001079 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1080 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 }
1082 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001083 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 if (before) /* new window left of current one */
1085 {
1086 wp->w_wincol = oldwin->w_wincol;
1087 oldwin->w_wincol += new_size + 1;
1088 }
1089 else /* new window right of current one */
1090 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1091 frame_fix_width(oldwin);
1092 frame_fix_width(wp);
1093 }
1094 else
1095#endif
1096 {
1097 /* width and column of new window is same as current window */
1098#ifdef FEAT_VERTSPLIT
1099 if (flags & (WSP_TOP | WSP_BOT))
1100 {
1101 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001102 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 wp->w_vsep_width = 0;
1104 }
1105 else
1106 {
1107 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001108 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 wp->w_vsep_width = oldwin->w_vsep_width;
1110 }
1111 frp->fr_width = curfrp->fr_width;
1112#endif
1113
1114 /* "new_size" of the current window goes to the new window, use
1115 * one row for the status line */
1116 win_new_height(wp, new_size);
1117 if (flags & (WSP_TOP | WSP_BOT))
1118 frame_new_height(curfrp, curfrp->fr_height
1119 - (new_size + STATUS_HEIGHT), flags & WSP_TOP, FALSE);
1120 else
1121 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1122 if (before) /* new window above current one */
1123 {
1124 wp->w_winrow = oldwin->w_winrow;
1125 wp->w_status_height = STATUS_HEIGHT;
1126 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1127 }
1128 else /* new window below current one */
1129 {
1130 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
1131 wp->w_status_height = oldwin->w_status_height;
1132 oldwin->w_status_height = STATUS_HEIGHT;
1133 }
1134#ifdef FEAT_VERTSPLIT
1135 if (flags & WSP_BOT)
1136 frame_add_statusline(curfrp);
1137#endif
1138 frame_fix_height(wp);
1139 frame_fix_height(oldwin);
1140 }
1141
1142 if (flags & (WSP_TOP | WSP_BOT))
1143 (void)win_comp_pos();
1144
1145 /*
1146 * Both windows need redrawing
1147 */
1148 redraw_win_later(wp, NOT_VALID);
1149 wp->w_redr_status = TRUE;
1150 redraw_win_later(oldwin, NOT_VALID);
1151 oldwin->w_redr_status = TRUE;
1152
1153 if (need_status)
1154 {
1155 msg_row = Rows - 1;
1156 msg_col = sc_col;
1157 msg_clr_eos_force(); /* Old command/ruler may still be there */
1158 comp_col();
1159 msg_row = Rows - 1;
1160 msg_col = 0; /* put position back at start of line */
1161 }
1162
1163 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001164 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 */
1166 if (do_equal || dir != 0)
1167 win_equal(wp, TRUE,
1168#ifdef FEAT_VERTSPLIT
1169 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
1170 : dir == 'h' ? 'b' :
1171#endif
1172 'v');
1173
1174 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1175 * size was given. */
1176#ifdef FEAT_VERTSPLIT
1177 if (flags & WSP_VERT)
1178 {
1179 i = p_wiw;
1180 if (size != 0)
1181 p_wiw = size;
1182
1183# ifdef FEAT_GUI
1184 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1185 if (gui.in_use)
1186 gui_init_which_components(NULL);
1187# endif
1188 }
1189 else
1190#endif
1191 {
1192 i = p_wh;
1193 if (size != 0)
1194 p_wh = size;
1195 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001196
Bram Moolenaar23fb7a92014-07-30 14:05:00 +02001197#ifdef FEAT_JUMPLIST
1198 /* Keep same changelist position in new window. */
1199 wp->w_changelistidx = oldwin->w_changelistidx;
1200#endif
1201
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001202 /*
1203 * make the new window the current window
1204 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 win_enter(wp, FALSE);
1206#ifdef FEAT_VERTSPLIT
1207 if (flags & WSP_VERT)
1208 p_wiw = i;
1209 else
1210#endif
1211 p_wh = i;
1212
1213 return OK;
1214}
1215
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001216
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001217/*
1218 * Initialize window "newp" from window "oldp".
1219 * Used when splitting a window and when creating a new tab page.
1220 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001221 * WSP_NEWLOC may be specified in flags to prevent the location list from
1222 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001223 */
1224 static void
Bram Moolenaar884ae642009-02-22 01:37:59 +00001225win_init(newp, oldp, flags)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001226 win_T *newp;
1227 win_T *oldp;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001228 int flags UNUSED;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001229{
1230 int i;
1231
1232 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001233#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001234 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001235#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001236 oldp->w_buffer->b_nwindows++;
1237 newp->w_cursor = oldp->w_cursor;
1238 newp->w_valid = 0;
1239 newp->w_curswant = oldp->w_curswant;
1240 newp->w_set_curswant = oldp->w_set_curswant;
1241 newp->w_topline = oldp->w_topline;
1242#ifdef FEAT_DIFF
1243 newp->w_topfill = oldp->w_topfill;
1244#endif
1245 newp->w_leftcol = oldp->w_leftcol;
1246 newp->w_pcmark = oldp->w_pcmark;
1247 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1248 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001249 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001250 newp->w_fraction = oldp->w_fraction;
1251 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1252#ifdef FEAT_JUMPLIST
1253 copy_jumplist(oldp, newp);
1254#endif
1255#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001256 if (flags & WSP_NEWLOC)
1257 {
1258 /* Don't copy the location list. */
1259 newp->w_llist = NULL;
1260 newp->w_llist_ref = NULL;
1261 }
1262 else
1263 copy_loclist(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001264#endif
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01001265 newp->w_localdir = (oldp->w_localdir == NULL)
1266 ? NULL : vim_strsave(oldp->w_localdir);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001267
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001268 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001269 for (i = 0; i < oldp->w_tagstacklen; i++)
1270 {
1271 newp->w_tagstack[i] = oldp->w_tagstack[i];
1272 if (newp->w_tagstack[i].tagname != NULL)
1273 newp->w_tagstack[i].tagname =
1274 vim_strsave(newp->w_tagstack[i].tagname);
1275 }
1276 newp->w_tagstackidx = oldp->w_tagstackidx;
1277 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001278#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001279 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001280#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001281
1282 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001283
Bram Moolenaara971b822011-09-14 14:43:25 +02001284#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001285 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001286#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001287}
1288
1289/*
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001290 * Initialize window "newp" from window "old".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001291 * Only the essential things are copied.
1292 */
1293 static void
1294win_init_some(newp, oldp)
1295 win_T *newp;
1296 win_T *oldp;
1297{
1298 /* Use the same argument list. */
1299 newp->w_alist = oldp->w_alist;
1300 ++newp->w_alist->al_refcount;
1301 newp->w_arg_idx = oldp->w_arg_idx;
1302
1303 /* copy options from existing window */
1304 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001305}
1306
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307#endif /* FEAT_WINDOWS */
1308
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309#if defined(FEAT_WINDOWS) || defined(PROTO)
1310/*
1311 * Check if "win" is a pointer to an existing window.
1312 */
1313 int
1314win_valid(win)
1315 win_T *win;
1316{
1317 win_T *wp;
1318
1319 if (win == NULL)
1320 return FALSE;
1321 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1322 if (wp == win)
1323 return TRUE;
1324 return FALSE;
1325}
1326
1327/*
1328 * Return the number of windows.
1329 */
1330 int
1331win_count()
1332{
1333 win_T *wp;
1334 int count = 0;
1335
1336 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1337 ++count;
1338 return count;
1339}
1340
1341/*
1342 * Make "count" windows on the screen.
1343 * Return actual number of windows on the screen.
1344 * Must be called when there is just one window, filling the whole screen
1345 * (excluding the command line).
1346 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 int
1348make_windows(count, vertical)
1349 int count;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001350 int vertical UNUSED; /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351{
1352 int maxcount;
1353 int todo;
1354
1355#ifdef FEAT_VERTSPLIT
1356 if (vertical)
1357 {
1358 /* Each windows needs at least 'winminwidth' lines and a separator
1359 * column. */
1360 maxcount = (curwin->w_width + curwin->w_vsep_width
1361 - (p_wiw - p_wmw)) / (p_wmw + 1);
1362 }
1363 else
1364#endif
1365 {
1366 /* Each window needs at least 'winminheight' lines and a status line. */
1367 maxcount = (curwin->w_height + curwin->w_status_height
1368 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1369 }
1370
1371 if (maxcount < 2)
1372 maxcount = 2;
1373 if (count > maxcount)
1374 count = maxcount;
1375
1376 /*
1377 * add status line now, otherwise first window will be too big
1378 */
1379 if (count > 1)
1380 last_status(TRUE);
1381
1382#ifdef FEAT_AUTOCMD
1383 /*
1384 * Don't execute autocommands while creating the windows. Must do that
1385 * when putting the buffers in the windows.
1386 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001387 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388#endif
1389
1390 /* todo is number of windows left to create */
1391 for (todo = count - 1; todo > 0; --todo)
1392#ifdef FEAT_VERTSPLIT
1393 if (vertical)
1394 {
1395 if (win_split(curwin->w_width - (curwin->w_width - todo)
1396 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1397 break;
1398 }
1399 else
1400#endif
1401 {
1402 if (win_split(curwin->w_height - (curwin->w_height - todo
1403 * STATUS_HEIGHT) / (todo + 1)
1404 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1405 break;
1406 }
1407
1408#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001409 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410#endif
1411
1412 /* return actual number of windows */
1413 return (count - todo);
1414}
1415
1416/*
1417 * Exchange current and next window
1418 */
1419 static void
1420win_exchange(Prenum)
1421 long Prenum;
1422{
1423 frame_T *frp;
1424 frame_T *frp2;
1425 win_T *wp;
1426 win_T *wp2;
1427 int temp;
1428
1429 if (lastwin == firstwin) /* just one window */
1430 {
1431 beep_flush();
1432 return;
1433 }
1434
1435#ifdef FEAT_GUI
1436 need_mouse_correct = TRUE;
1437#endif
1438
1439 /*
1440 * find window to exchange with
1441 */
1442 if (Prenum)
1443 {
1444 frp = curwin->w_frame->fr_parent->fr_child;
1445 while (frp != NULL && --Prenum > 0)
1446 frp = frp->fr_next;
1447 }
1448 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1449 frp = curwin->w_frame->fr_next;
1450 else /* Swap last window in row/col with previous */
1451 frp = curwin->w_frame->fr_prev;
1452
1453 /* We can only exchange a window with another window, not with a frame
1454 * containing windows. */
1455 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1456 return;
1457 wp = frp->fr_win;
1458
1459/*
1460 * 1. remove curwin from the list. Remember after which window it was in wp2
1461 * 2. insert curwin before wp in the list
1462 * if wp != wp2
1463 * 3. remove wp from the list
1464 * 4. insert wp after wp2
1465 * 5. exchange the status line height and vsep width.
1466 */
1467 wp2 = curwin->w_prev;
1468 frp2 = curwin->w_frame->fr_prev;
1469 if (wp->w_prev != curwin)
1470 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001471 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 frame_remove(curwin->w_frame);
1473 win_append(wp->w_prev, curwin);
1474 frame_insert(frp, curwin->w_frame);
1475 }
1476 if (wp != wp2)
1477 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001478 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 frame_remove(wp->w_frame);
1480 win_append(wp2, wp);
1481 if (frp2 == NULL)
1482 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1483 else
1484 frame_append(frp2, wp->w_frame);
1485 }
1486 temp = curwin->w_status_height;
1487 curwin->w_status_height = wp->w_status_height;
1488 wp->w_status_height = temp;
1489#ifdef FEAT_VERTSPLIT
1490 temp = curwin->w_vsep_width;
1491 curwin->w_vsep_width = wp->w_vsep_width;
1492 wp->w_vsep_width = temp;
1493
1494 /* If the windows are not in the same frame, exchange the sizes to avoid
1495 * messing up the window layout. Otherwise fix the frame sizes. */
1496 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1497 {
1498 temp = curwin->w_height;
1499 curwin->w_height = wp->w_height;
1500 wp->w_height = temp;
1501 temp = curwin->w_width;
1502 curwin->w_width = wp->w_width;
1503 wp->w_width = temp;
1504 }
1505 else
1506 {
1507 frame_fix_height(curwin);
1508 frame_fix_height(wp);
1509 frame_fix_width(curwin);
1510 frame_fix_width(wp);
1511 }
1512#endif
1513
1514 (void)win_comp_pos(); /* recompute window positions */
1515
1516 win_enter(wp, TRUE);
1517 redraw_later(CLEAR);
1518}
1519
1520/*
1521 * rotate windows: if upwards TRUE the second window becomes the first one
1522 * if upwards FALSE the first window becomes the second one
1523 */
1524 static void
1525win_rotate(upwards, count)
1526 int upwards;
1527 int count;
1528{
1529 win_T *wp1;
1530 win_T *wp2;
1531 frame_T *frp;
1532 int n;
1533
1534 if (firstwin == lastwin) /* nothing to do */
1535 {
1536 beep_flush();
1537 return;
1538 }
1539
1540#ifdef FEAT_GUI
1541 need_mouse_correct = TRUE;
1542#endif
1543
1544#ifdef FEAT_VERTSPLIT
1545 /* Check if all frames in this row/col have one window. */
1546 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1547 frp = frp->fr_next)
1548 if (frp->fr_win == NULL)
1549 {
1550 EMSG(_("E443: Cannot rotate when another window is split"));
1551 return;
1552 }
1553#endif
1554
1555 while (count--)
1556 {
1557 if (upwards) /* first window becomes last window */
1558 {
1559 /* remove first window/frame from the list */
1560 frp = curwin->w_frame->fr_parent->fr_child;
1561 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001562 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 frame_remove(frp);
1564
1565 /* find last frame and append removed window/frame after it */
1566 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1567 ;
1568 win_append(frp->fr_win, wp1);
1569 frame_append(frp, wp1->w_frame);
1570
1571 wp2 = frp->fr_win; /* previously last window */
1572 }
1573 else /* last window becomes first window */
1574 {
1575 /* find last window/frame in the list and remove it */
1576 for (frp = curwin->w_frame; frp->fr_next != NULL;
1577 frp = frp->fr_next)
1578 ;
1579 wp1 = frp->fr_win;
1580 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001581 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 frame_remove(frp);
1583
1584 /* append the removed window/frame before the first in the list */
1585 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1586 frame_insert(frp->fr_parent->fr_child, frp);
1587 }
1588
1589 /* exchange status height and vsep width of old and new last window */
1590 n = wp2->w_status_height;
1591 wp2->w_status_height = wp1->w_status_height;
1592 wp1->w_status_height = n;
1593 frame_fix_height(wp1);
1594 frame_fix_height(wp2);
1595#ifdef FEAT_VERTSPLIT
1596 n = wp2->w_vsep_width;
1597 wp2->w_vsep_width = wp1->w_vsep_width;
1598 wp1->w_vsep_width = n;
1599 frame_fix_width(wp1);
1600 frame_fix_width(wp2);
1601#endif
1602
1603 /* recompute w_winrow and w_wincol for all windows */
1604 (void)win_comp_pos();
1605 }
1606
1607 redraw_later(CLEAR);
1608}
1609
1610/*
1611 * Move the current window to the very top/bottom/left/right of the screen.
1612 */
1613 static void
1614win_totop(size, flags)
1615 int size;
1616 int flags;
1617{
1618 int dir;
1619 int height = curwin->w_height;
1620
1621 if (lastwin == firstwin)
1622 {
1623 beep_flush();
1624 return;
1625 }
1626
1627 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001628 (void)winframe_remove(curwin, &dir, NULL);
1629 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 last_status(FALSE); /* may need to remove last status line */
1631 (void)win_comp_pos(); /* recompute window positions */
1632
1633 /* Split a window on the desired side and put the window there. */
1634 (void)win_split_ins(size, flags, curwin, dir);
1635 if (!(flags & WSP_VERT))
1636 {
1637 win_setheight(height);
1638 if (p_ea)
1639 win_equal(curwin, TRUE, 'v');
1640 }
1641
1642#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
1643 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1644 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001645 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647}
1648
1649/*
1650 * Move window "win1" to below/right of "win2" and make "win1" the current
1651 * window. Only works within the same frame!
1652 */
1653 void
1654win_move_after(win1, win2)
1655 win_T *win1, *win2;
1656{
1657 int height;
1658
1659 /* check if the arguments are reasonable */
1660 if (win1 == win2)
1661 return;
1662
1663 /* check if there is something to do */
1664 if (win2->w_next != win1)
1665 {
1666 /* may need move the status line/vertical separator of the last window
1667 * */
1668 if (win1 == lastwin)
1669 {
1670 height = win1->w_prev->w_status_height;
1671 win1->w_prev->w_status_height = win1->w_status_height;
1672 win1->w_status_height = height;
1673#ifdef FEAT_VERTSPLIT
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001674 if (win1->w_prev->w_vsep_width == 1)
1675 {
1676 /* Remove the vertical separator from the last-but-one window,
1677 * add it to the last window. Adjust the frame widths. */
1678 win1->w_prev->w_vsep_width = 0;
1679 win1->w_prev->w_frame->fr_width -= 1;
1680 win1->w_vsep_width = 1;
1681 win1->w_frame->fr_width += 1;
1682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683#endif
1684 }
1685 else if (win2 == lastwin)
1686 {
1687 height = win1->w_status_height;
1688 win1->w_status_height = win2->w_status_height;
1689 win2->w_status_height = height;
1690#ifdef FEAT_VERTSPLIT
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001691 if (win1->w_vsep_width == 1)
1692 {
1693 /* Remove the vertical separator from win1, add it to the last
1694 * window, win2. Adjust the frame widths. */
1695 win2->w_vsep_width = 1;
1696 win2->w_frame->fr_width += 1;
1697 win1->w_vsep_width = 0;
1698 win1->w_frame->fr_width -= 1;
1699 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700#endif
1701 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001702 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 frame_remove(win1->w_frame);
1704 win_append(win2, win1);
1705 frame_append(win2->w_frame, win1->w_frame);
1706
1707 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1708 redraw_later(NOT_VALID);
1709 }
1710 win_enter(win1, FALSE);
1711}
1712
1713/*
1714 * Make all windows the same height.
1715 * 'next_curwin' will soon be the current window, make sure it has enough
1716 * rows.
1717 */
1718 void
1719win_equal(next_curwin, current, dir)
1720 win_T *next_curwin; /* pointer to current window to be or NULL */
1721 int current; /* do only frame with current window */
1722 int dir; /* 'v' for vertically, 'h' for horizontally,
1723 'b' for both, 0 for using p_ead */
1724{
1725 if (dir == 0)
1726#ifdef FEAT_VERTSPLIT
1727 dir = *p_ead;
1728#else
1729 dir = 'b';
1730#endif
1731 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001732 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001733 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734}
1735
1736/*
1737 * Set a frame to a new position and height, spreading the available room
1738 * equally over contained frames.
1739 * The window "next_curwin" (if not NULL) should at least get the size from
1740 * 'winheight' and 'winwidth' if possible.
1741 */
1742 static void
1743win_equal_rec(next_curwin, current, topfr, dir, col, row, width, height)
1744 win_T *next_curwin; /* pointer to current window to be or NULL */
1745 int current; /* do only frame with current window */
1746 frame_T *topfr; /* frame to set size off */
1747 int dir; /* 'v', 'h' or 'b', see win_equal() */
1748 int col; /* horizontal position for frame */
1749 int row; /* vertical position for frame */
1750 int width; /* new width of frame */
1751 int height; /* new height of frame */
1752{
1753 int n, m;
1754 int extra_sep = 0;
1755 int wincount, totwincount = 0;
1756 frame_T *fr;
1757 int next_curwin_size = 0;
1758 int room = 0;
1759 int new_size;
1760 int has_next_curwin = 0;
1761 int hnc;
1762
1763 if (topfr->fr_layout == FR_LEAF)
1764 {
1765 /* Set the width/height of this frame.
1766 * Redraw when size or position changes */
1767 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
1768#ifdef FEAT_VERTSPLIT
1769 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
1770#endif
1771 )
1772 {
1773 topfr->fr_win->w_winrow = row;
1774 frame_new_height(topfr, height, FALSE, FALSE);
1775#ifdef FEAT_VERTSPLIT
1776 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001777 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778#endif
1779 redraw_all_later(CLEAR);
1780 }
1781 }
1782#ifdef FEAT_VERTSPLIT
1783 else if (topfr->fr_layout == FR_ROW)
1784 {
1785 topfr->fr_width = width;
1786 topfr->fr_height = height;
1787
1788 if (dir != 'v') /* equalize frame widths */
1789 {
1790 /* Compute the maximum number of windows horizontally in this
1791 * frame. */
1792 n = frame_minwidth(topfr, NOWIN);
1793 /* add one for the rightmost window, it doesn't have a separator */
1794 if (col + width == Columns)
1795 extra_sep = 1;
1796 else
1797 extra_sep = 0;
1798 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001799 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001801 /*
1802 * Compute width for "next_curwin" window and room available for
1803 * other windows.
1804 * "m" is the minimal width when counting p_wiw for "next_curwin".
1805 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 m = frame_minwidth(topfr, next_curwin);
1807 room = width - m;
1808 if (room < 0)
1809 {
1810 next_curwin_size = p_wiw + room;
1811 room = 0;
1812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 else
1814 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001815 next_curwin_size = -1;
1816 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1817 {
1818 /* If 'winfixwidth' set keep the window width if
1819 * possible.
1820 * Watch out for this window being the next_curwin. */
1821 if (frame_fixed_width(fr))
1822 {
1823 n = frame_minwidth(fr, NOWIN);
1824 new_size = fr->fr_width;
1825 if (frame_has_win(fr, next_curwin))
1826 {
1827 room += p_wiw - p_wmw;
1828 next_curwin_size = 0;
1829 if (new_size < p_wiw)
1830 new_size = p_wiw;
1831 }
1832 else
1833 /* These windows don't use up room. */
1834 totwincount -= (n + (fr->fr_next == NULL
1835 ? extra_sep : 0)) / (p_wmw + 1);
1836 room -= new_size - n;
1837 if (room < 0)
1838 {
1839 new_size += room;
1840 room = 0;
1841 }
1842 fr->fr_newwidth = new_size;
1843 }
1844 }
1845 if (next_curwin_size == -1)
1846 {
1847 if (!has_next_curwin)
1848 next_curwin_size = 0;
1849 else if (totwincount > 1
1850 && (room + (totwincount - 2))
1851 / (totwincount - 1) > p_wiw)
1852 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001853 /* Can make all windows wider than 'winwidth', spread
1854 * the room equally. */
1855 next_curwin_size = (room + p_wiw
1856 + (totwincount - 1) * p_wmw
1857 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001858 room -= next_curwin_size - p_wiw;
1859 }
1860 else
1861 next_curwin_size = p_wiw;
1862 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001864
1865 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 --totwincount; /* don't count curwin */
1867 }
1868
1869 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1870 {
1871 n = m = 0;
1872 wincount = 1;
1873 if (fr->fr_next == NULL)
1874 /* last frame gets all that remains (avoid roundoff error) */
1875 new_size = width;
1876 else if (dir == 'v')
1877 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001878 else if (frame_fixed_width(fr))
1879 {
1880 new_size = fr->fr_newwidth;
1881 wincount = 0; /* doesn't count as a sizeable window */
1882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 else
1884 {
1885 /* Compute the maximum number of windows horiz. in "fr". */
1886 n = frame_minwidth(fr, NOWIN);
1887 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1888 / (p_wmw + 1);
1889 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001890 if (has_next_curwin)
1891 hnc = frame_has_win(fr, next_curwin);
1892 else
1893 hnc = FALSE;
1894 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001896 if (totwincount == 0)
1897 new_size = room;
1898 else
1899 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001901 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 {
1903 next_curwin_size -= p_wiw - (m - n);
1904 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001905 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001907 else
1908 room -= new_size;
1909 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 }
1911
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001912 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 * window, unless equalizing all frames. */
1914 if (!current || dir != 'v' || topfr->fr_parent != NULL
1915 || (new_size != fr->fr_width)
1916 || frame_has_win(fr, next_curwin))
1917 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001918 new_size, height);
1919 col += new_size;
1920 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 totwincount -= wincount;
1922 }
1923 }
1924#endif
1925 else /* topfr->fr_layout == FR_COL */
1926 {
1927#ifdef FEAT_VERTSPLIT
1928 topfr->fr_width = width;
1929#endif
1930 topfr->fr_height = height;
1931
1932 if (dir != 'h') /* equalize frame heights */
1933 {
1934 /* Compute maximum number of windows vertically in this frame. */
1935 n = frame_minheight(topfr, NOWIN);
1936 /* add one for the bottom window if it doesn't have a statusline */
1937 if (row + height == cmdline_row && p_ls == 0)
1938 extra_sep = 1;
1939 else
1940 extra_sep = 0;
1941 totwincount = (n + extra_sep) / (p_wmh + 1);
1942 has_next_curwin = frame_has_win(topfr, next_curwin);
1943
1944 /*
1945 * Compute height for "next_curwin" window and room available for
1946 * other windows.
1947 * "m" is the minimal height when counting p_wh for "next_curwin".
1948 */
1949 m = frame_minheight(topfr, next_curwin);
1950 room = height - m;
1951 if (room < 0)
1952 {
1953 /* The room is less then 'winheight', use all space for the
1954 * current window. */
1955 next_curwin_size = p_wh + room;
1956 room = 0;
1957 }
1958 else
1959 {
1960 next_curwin_size = -1;
1961 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1962 {
1963 /* If 'winfixheight' set keep the window height if
1964 * possible.
1965 * Watch out for this window being the next_curwin. */
1966 if (frame_fixed_height(fr))
1967 {
1968 n = frame_minheight(fr, NOWIN);
1969 new_size = fr->fr_height;
1970 if (frame_has_win(fr, next_curwin))
1971 {
1972 room += p_wh - p_wmh;
1973 next_curwin_size = 0;
1974 if (new_size < p_wh)
1975 new_size = p_wh;
1976 }
1977 else
1978 /* These windows don't use up room. */
1979 totwincount -= (n + (fr->fr_next == NULL
1980 ? extra_sep : 0)) / (p_wmh + 1);
1981 room -= new_size - n;
1982 if (room < 0)
1983 {
1984 new_size += room;
1985 room = 0;
1986 }
1987 fr->fr_newheight = new_size;
1988 }
1989 }
1990 if (next_curwin_size == -1)
1991 {
1992 if (!has_next_curwin)
1993 next_curwin_size = 0;
1994 else if (totwincount > 1
1995 && (room + (totwincount - 2))
1996 / (totwincount - 1) > p_wh)
1997 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001998 /* can make all windows higher than 'winheight',
1999 * spread the room equally. */
2000 next_curwin_size = (room + p_wh
2001 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 + (totwincount - 1)) / totwincount;
2003 room -= next_curwin_size - p_wh;
2004 }
2005 else
2006 next_curwin_size = p_wh;
2007 }
2008 }
2009
2010 if (has_next_curwin)
2011 --totwincount; /* don't count curwin */
2012 }
2013
2014 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
2015 {
2016 n = m = 0;
2017 wincount = 1;
2018 if (fr->fr_next == NULL)
2019 /* last frame gets all that remains (avoid roundoff error) */
2020 new_size = height;
2021 else if (dir == 'h')
2022 new_size = fr->fr_height;
2023 else if (frame_fixed_height(fr))
2024 {
2025 new_size = fr->fr_newheight;
2026 wincount = 0; /* doesn't count as a sizeable window */
2027 }
2028 else
2029 {
2030 /* Compute the maximum number of windows vert. in "fr". */
2031 n = frame_minheight(fr, NOWIN);
2032 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2033 / (p_wmh + 1);
2034 m = frame_minheight(fr, next_curwin);
2035 if (has_next_curwin)
2036 hnc = frame_has_win(fr, next_curwin);
2037 else
2038 hnc = FALSE;
2039 if (hnc) /* don't count next_curwin */
2040 --wincount;
2041 if (totwincount == 0)
2042 new_size = room;
2043 else
2044 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2045 / totwincount;
2046 if (hnc) /* add next_curwin size */
2047 {
2048 next_curwin_size -= p_wh - (m - n);
2049 new_size += next_curwin_size;
2050 room -= new_size - next_curwin_size;
2051 }
2052 else
2053 room -= new_size;
2054 new_size += n;
2055 }
2056 /* Skip frame that is full width when splitting or closing a
2057 * window, unless equalizing all frames. */
2058 if (!current || dir != 'h' || topfr->fr_parent != NULL
2059 || (new_size != fr->fr_height)
2060 || frame_has_win(fr, next_curwin))
2061 win_equal_rec(next_curwin, current, fr, dir, col, row,
2062 width, new_size);
2063 row += new_size;
2064 height -= new_size;
2065 totwincount -= wincount;
2066 }
2067 }
2068}
2069
2070/*
2071 * close all windows for buffer 'buf'
2072 */
2073 void
Bram Moolenaarf740b292006-02-16 22:11:02 +00002074close_windows(buf, keep_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 buf_T *buf;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002076 int keep_curwin; /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002078 win_T *wp;
2079 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002080 int h = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081
2082 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002083
2084 for (wp = firstwin; wp != NULL && lastwin != firstwin; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002086 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
2087#ifdef FEAT_AUTOCMD
2088 && !(wp->w_closing || wp->w_buffer->b_closing)
2089#endif
2090 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002092 win_close(wp, FALSE);
2093
2094 /* Start all over, autocommands may change the window layout. */
2095 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 }
2097 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002098 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002100
2101 /* Also check windows in other tab pages. */
2102 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2103 {
2104 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002105 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002106 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002107 if (wp->w_buffer == buf
2108#ifdef FEAT_AUTOCMD
2109 && !(wp->w_closing || wp->w_buffer->b_closing)
2110#endif
2111 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00002112 {
2113 win_close_othertab(wp, FALSE, tp);
2114
2115 /* Start all over, the tab page may be closed and
2116 * autocommands may change the window layout. */
2117 nexttp = first_tabpage;
2118 break;
2119 }
2120 }
2121
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002123
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002124 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002125 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002126 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127}
2128
2129/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002130 * Return TRUE if the current window is the only window that exists (ignoring
2131 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002132 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002133 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002134 static int
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002135last_window()
2136{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002137 return (one_window() && first_tabpage->tp_next == NULL);
2138}
2139
2140/*
2141 * Return TRUE if there is only one window other than "aucmd_win" in the
2142 * current tab page.
2143 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002144 int
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002145one_window()
2146{
2147#ifdef FEAT_AUTOCMD
2148 win_T *wp;
2149 int seen_one = FALSE;
2150
2151 FOR_ALL_WINDOWS(wp)
2152 {
2153 if (wp != aucmd_win)
2154 {
2155 if (seen_one)
2156 return FALSE;
2157 seen_one = TRUE;
2158 }
2159 }
2160 return TRUE;
2161#else
2162 return firstwin == lastwin;
2163#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002164}
2165
2166/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002167 * Close the possibly last window in a tab page.
2168 * Returns TRUE when the window was closed already.
2169 */
2170 static int
2171close_last_window_tabpage(win, free_buf, prev_curtab)
2172 win_T *win;
2173 int free_buf;
2174 tabpage_T *prev_curtab;
2175{
2176 if (firstwin == lastwin)
2177 {
Bram Moolenaar07729b22013-05-15 23:13:10 +02002178#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002179 buf_T *old_curbuf = curbuf;
Bram Moolenaar07729b22013-05-15 23:13:10 +02002180#endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002181
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002182 /*
2183 * Closing the last window in a tab page. First go to another tab
2184 * page and then close the window and the tab page. This avoids that
2185 * curwin and curtab are invalid while we are freeing memory, they may
2186 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002187 * Don't trigger autocommands yet, they may use wrong values, so do
2188 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002189 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002190 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002191 redraw_tabline = TRUE;
2192
2193 /* Safety check: Autocommands may have closed the window when jumping
2194 * to the other tab page. */
2195 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2196 {
2197 int h = tabline_height();
2198
2199 win_close_othertab(win, free_buf, prev_curtab);
2200 if (h != tabline_height())
2201 shell_new_rows();
2202 }
Bram Moolenaara8596c42012-06-13 14:28:20 +02002203 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2204 * that now. */
2205#ifdef FEAT_AUTOCMD
Bram Moolenaara8596c42012-06-13 14:28:20 +02002206 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002207 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2208 if (old_curbuf != curbuf)
2209 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002210#endif
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002211 return TRUE;
2212 }
2213 return FALSE;
2214}
2215
2216/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002217 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 * If "free_buf" is TRUE related buffer may be unloaded.
2219 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002220 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002221 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002223 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224win_close(win, free_buf)
2225 win_T *win;
2226 int free_buf;
2227{
2228 win_T *wp;
2229#ifdef FEAT_AUTOCMD
2230 int other_buffer = FALSE;
2231#endif
2232 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 int dir;
2234 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002235 tabpage_T *prev_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002237 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 {
2239 EMSG(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002240 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 }
2242
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002243#ifdef FEAT_AUTOCMD
Bram Moolenaar756287d2012-07-06 16:39:47 +02002244 if (win->w_closing || (win->w_buffer != NULL && win->w_buffer->b_closing))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002245 return FAIL; /* window is already being closed */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002246 if (win == aucmd_win)
2247 {
2248 EMSG(_("E813: Cannot close autocmd window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002249 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002250 }
2251 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2252 {
2253 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002254 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002255 }
2256#endif
2257
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002258 /* When closing the last window in a tab page first go to another tab page
2259 * and then close the window and the tab page to avoid that curwin and
2260 * curtab are invalid while we are freeing memory. */
2261 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002262 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002263
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 /* When closing the help window, try restoring a snapshot after closing
2265 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002266 if (win->w_buffer != NULL && win->w_buffer->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 help_window = TRUE;
2268 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002269 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270
2271#ifdef FEAT_AUTOCMD
2272 if (win == curwin)
2273 {
2274 /*
2275 * Guess which window is going to be the new current window.
2276 * This may change because of the autocommands (sigh).
2277 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002278 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279
2280 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002281 * Be careful: If autocommands delete the window or cause this window
2282 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 */
2284 if (wp->w_buffer != curbuf)
2285 {
2286 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002287 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002289 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002290 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002291 win->w_closing = FALSE;
2292 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002293 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002295 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002297 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002298 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002299 win->w_closing = FALSE;
2300 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002301 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302# ifdef FEAT_EVAL
2303 /* autocmds may abort script processing */
2304 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002305 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306# endif
2307 }
2308#endif
2309
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002310#ifdef FEAT_GUI
2311 /* Avoid trouble with scrollbars that are going to be deleted in
2312 * win_free(). */
2313 if (gui.in_use)
2314 out_flush();
2315#endif
2316
Bram Moolenaara971b822011-09-14 14:43:25 +02002317#ifdef FEAT_SYN_HL
2318 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002319 if (win->w_buffer != NULL)
2320 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002321#endif
2322
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 /*
2324 * Close the link to the buffer.
2325 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002326 if (win->w_buffer != NULL)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002327 {
2328#ifdef FEAT_AUTOCMD
2329 win->w_closing = TRUE;
2330#endif
Bram Moolenaar8f913992012-08-29 15:50:26 +02002331 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002332#ifdef FEAT_AUTOCMD
2333 if (win_valid(win))
2334 win->w_closing = FALSE;
2335#endif
2336 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002337
Bram Moolenaar802418d2013-01-17 14:00:11 +01002338 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2339 && (last_window() || curtab != prev_curtab
2340 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002341 {
2342 /* Autocommands have close all windows, quit now. Restore
2343 * curwin->w_buffer, otherwise writing viminfo may fail. */
2344 if (curwin->w_buffer == NULL)
2345 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002346 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002347 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002348
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 /* Autocommands may have closed the window already, or closed the only
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002350 * other window or moved to another tab page. */
Bram Moolenaar802418d2013-01-17 14:00:11 +01002351 else if (!win_valid(win) || last_window() || curtab != prev_curtab
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002352 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002353 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354
Bram Moolenaara971b822011-09-14 14:43:25 +02002355 /* Free the memory used for the window and get the window that received
2356 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002357 wp = win_free_mem(win, &dir, NULL);
2358
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 /* Make sure curwin isn't invalid. It can cause severe trouble when
2360 * printing an error message. For win_equal() curbuf needs to be valid
2361 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002362 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 {
2364 curwin = wp;
2365#ifdef FEAT_QUICKFIX
2366 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2367 {
2368 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002369 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 * finding another window to go to.
2371 */
2372 for (;;)
2373 {
2374 if (wp->w_next == NULL)
2375 wp = firstwin;
2376 else
2377 wp = wp->w_next;
2378 if (wp == curwin)
2379 break;
2380 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2381 {
2382 curwin = wp;
2383 break;
2384 }
2385 }
2386 }
2387#endif
2388 curbuf = curwin->w_buffer;
2389 close_curwin = TRUE;
2390 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002391 if (p_ea
2392#ifdef FEAT_VERTSPLIT
2393 && (*p_ead == 'b' || *p_ead == dir)
2394#endif
2395 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 win_equal(curwin, TRUE,
2397#ifdef FEAT_VERTSPLIT
2398 dir
2399#else
2400 0
2401#endif
2402 );
2403 else
2404 win_comp_pos();
2405 if (close_curwin)
2406 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002407 win_enter_ext(wp, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408#ifdef FEAT_AUTOCMD
2409 if (other_buffer)
2410 /* careful: after this wp and win may be invalid! */
2411 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2412#endif
2413 }
2414
2415 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002416 * If last window has a status line now and we don't want one,
2417 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 */
2419 last_status(FALSE);
2420
2421 /* After closing the help window, try restoring the window layout from
2422 * before it was opened. */
2423 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002424 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
2426#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
2427 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2428 if (gui.in_use && !win_hasvertsplit())
2429 gui_init_which_components(NULL);
2430#endif
2431
2432 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002433 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434}
2435
2436/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002437 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002438 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002439 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002440 * Caller must check if buffer is hidden and whether the tabline needs to be
2441 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002442 */
2443 void
2444win_close_othertab(win, free_buf, tp)
2445 win_T *win;
2446 int free_buf;
2447 tabpage_T *tp;
2448{
2449 win_T *wp;
2450 int dir;
2451 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002452 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002453
Bram Moolenaar362ce482012-06-06 19:02:45 +02002454#ifdef FEAT_AUTOCMD
2455 if (win->w_closing || win->w_buffer->b_closing)
2456 return; /* window is already being closed */
2457#endif
2458
Bram Moolenaarf740b292006-02-16 22:11:02 +00002459 /* Close the link to the buffer. */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002460 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002461
2462 /* Careful: Autocommands may have closed the tab page or made it the
2463 * current tab page. */
2464 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2465 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002466 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002467 return;
2468
2469 /* Autocommands may have closed the window already. */
2470 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2471 ;
2472 if (wp == NULL)
2473 return;
2474
Bram Moolenaarf740b292006-02-16 22:11:02 +00002475 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002476 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002477 {
2478 if (tp == first_tabpage)
2479 first_tabpage = tp->tp_next;
2480 else
2481 {
2482 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2483 ptp = ptp->tp_next)
2484 ;
2485 if (ptp == NULL)
2486 {
2487 EMSG2(_(e_intern2), "win_close_othertab()");
2488 return;
2489 }
2490 ptp->tp_next = tp->tp_next;
2491 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002492 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002493 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002494
2495 /* Free the memory used for the window. */
2496 win_free_mem(win, &dir, tp);
2497
2498 if (free_tp)
2499 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002500}
2501
2502/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002503 * Free the memory used for a window.
2504 * Returns a pointer to the window that got the freed up space.
2505 */
2506 static win_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002507win_free_mem(win, dirp, tp)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002508 win_T *win;
2509 int *dirp; /* set to 'v' or 'h' for direction if 'ea' */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002510 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002511{
2512 frame_T *frp;
2513 win_T *wp;
2514
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002515 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002516 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002517 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002518 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002519 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002520
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002521 /* When deleting the current window of another tab page select a new
2522 * current window. */
2523 if (tp != NULL && win == tp->tp_curwin)
2524 tp->tp_curwin = wp;
2525
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002526 return wp;
2527}
2528
2529#if defined(EXITFREE) || defined(PROTO)
2530 void
2531win_free_all()
2532{
2533 int dummy;
2534
Bram Moolenaarf740b292006-02-16 22:11:02 +00002535# ifdef FEAT_WINDOWS
2536 while (first_tabpage->tp_next != NULL)
2537 tabpage_close(TRUE);
2538# endif
2539
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002540# ifdef FEAT_AUTOCMD
2541 if (aucmd_win != NULL)
2542 {
2543 (void)win_free_mem(aucmd_win, &dummy, NULL);
2544 aucmd_win = NULL;
2545 }
2546# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002547
2548 while (firstwin != NULL)
2549 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002550
2551 /* No window should be used after this. Set curwin to NULL to crash
2552 * instead of using freed memory. */
2553 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002554}
2555#endif
2556
2557/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 * Remove a window and its frame from the tree of frames.
2559 * Returns a pointer to the window that got the freed up space.
2560 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002561 win_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002562winframe_remove(win, dirp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 win_T *win;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002564 int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002565 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 frame_T *frp, *frp2, *frp3;
2568 frame_T *frp_close = win->w_frame;
2569 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570
2571 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002572 * If there is only one window there is nothing to remove.
2573 */
2574 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
2575 return NULL;
2576
2577 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 * Remove the window from its frame.
2579 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002580 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 wp = frame2win(frp2);
2582
2583 /* Remove this frame from the list of frames. */
2584 frame_remove(frp_close);
2585
2586#ifdef FEAT_VERTSPLIT
2587 if (frp_close->fr_parent->fr_layout == FR_COL)
2588 {
2589#endif
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002590 /* When 'winfixheight' is set, try to find another frame in the column
2591 * (as close to the closed frame as possible) to distribute the height
2592 * to. */
2593 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2594 {
2595 frp = frp_close->fr_prev;
2596 frp3 = frp_close->fr_next;
2597 while (frp != NULL || frp3 != NULL)
2598 {
2599 if (frp != NULL)
2600 {
2601 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2602 {
2603 frp2 = frp;
2604 wp = frp->fr_win;
2605 break;
2606 }
2607 frp = frp->fr_prev;
2608 }
2609 if (frp3 != NULL)
2610 {
2611 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2612 {
2613 frp2 = frp3;
2614 wp = frp3->fr_win;
2615 break;
2616 }
2617 frp3 = frp3->fr_next;
2618 }
2619 }
2620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2622 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623#ifdef FEAT_VERTSPLIT
2624 *dirp = 'v';
2625 }
2626 else
2627 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002628 /* When 'winfixwidth' is set, try to find another frame in the column
2629 * (as close to the closed frame as possible) to distribute the width
2630 * to. */
2631 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2632 {
2633 frp = frp_close->fr_prev;
2634 frp3 = frp_close->fr_next;
2635 while (frp != NULL || frp3 != NULL)
2636 {
2637 if (frp != NULL)
2638 {
2639 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2640 {
2641 frp2 = frp;
2642 wp = frp->fr_win;
2643 break;
2644 }
2645 frp = frp->fr_prev;
2646 }
2647 if (frp3 != NULL)
2648 {
2649 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2650 {
2651 frp2 = frp3;
2652 wp = frp3->fr_win;
2653 break;
2654 }
2655 frp3 = frp3->fr_next;
2656 }
2657 }
2658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002660 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 *dirp = 'h';
2662 }
2663#endif
2664
2665 /* If rows/columns go to a window below/right its positions need to be
2666 * updated. Can only be done after the sizes have been updated. */
2667 if (frp2 == frp_close->fr_next)
2668 {
2669 int row = win->w_winrow;
2670 int col = W_WINCOL(win);
2671
2672 frame_comp_pos(frp2, &row, &col);
2673 }
2674
2675 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2676 {
2677 /* There is no other frame in this list, move its info to the parent
2678 * and remove it. */
2679 frp2->fr_parent->fr_layout = frp2->fr_layout;
2680 frp2->fr_parent->fr_child = frp2->fr_child;
2681 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2682 frp->fr_parent = frp2->fr_parent;
2683 frp2->fr_parent->fr_win = frp2->fr_win;
2684 if (frp2->fr_win != NULL)
2685 frp2->fr_win->w_frame = frp2->fr_parent;
2686 frp = frp2->fr_parent;
2687 vim_free(frp2);
2688
2689 frp2 = frp->fr_parent;
2690 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2691 {
2692 /* The frame above the parent has the same layout, have to merge
2693 * the frames into this list. */
2694 if (frp2->fr_child == frp)
2695 frp2->fr_child = frp->fr_child;
2696 frp->fr_child->fr_prev = frp->fr_prev;
2697 if (frp->fr_prev != NULL)
2698 frp->fr_prev->fr_next = frp->fr_child;
2699 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2700 {
2701 frp3->fr_parent = frp2;
2702 if (frp3->fr_next == NULL)
2703 {
2704 frp3->fr_next = frp->fr_next;
2705 if (frp->fr_next != NULL)
2706 frp->fr_next->fr_prev = frp3;
2707 break;
2708 }
2709 }
2710 vim_free(frp);
2711 }
2712 }
2713
2714 return wp;
2715}
2716
2717/*
2718 * Find out which frame is going to get the freed up space when "win" is
2719 * closed.
2720 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2721 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2722 * This makes opening a window and closing it immediately keep the same window
2723 * layout.
2724 */
2725 static frame_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002726win_altframe(win, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002728 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
2730 frame_T *frp;
2731 int b;
2732
Bram Moolenaarf740b292006-02-16 22:11:02 +00002733 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002734 /* Last window in this tab page, will go to next tab page. */
2735 return alt_tabpage()->tp_curwin->w_frame;
2736
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 frp = win->w_frame;
2738#ifdef FEAT_VERTSPLIT
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002739 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 b = p_spr;
2741 else
2742#endif
2743 b = p_sb;
2744 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2745 return frp->fr_next;
2746 return frp->fr_prev;
2747}
2748
2749/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002750 * Return the tabpage that will be used if the current one is closed.
2751 */
2752 static tabpage_T *
2753alt_tabpage()
2754{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002755 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002756
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002757 /* Use the next tab page if possible. */
2758 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002759 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002760
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002761 /* Find the last but one tab page. */
2762 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2763 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002764 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002765}
2766
2767/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 * Find the left-upper window in frame "frp".
2769 */
2770 static win_T *
2771frame2win(frp)
2772 frame_T *frp;
2773{
2774 while (frp->fr_win == NULL)
2775 frp = frp->fr_child;
2776 return frp->fr_win;
2777}
2778
2779/*
2780 * Return TRUE if frame "frp" contains window "wp".
2781 */
2782 static int
2783frame_has_win(frp, wp)
2784 frame_T *frp;
2785 win_T *wp;
2786{
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
2803frame_new_height(topfrp, height, topfirst, wfh)
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;
2808 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 }
2820#ifdef FEAT_VERTSPLIT
2821 else if (topfrp->fr_layout == FR_ROW)
2822 {
2823 do
2824 {
2825 /* All frames in this row get the same new height. */
2826 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2827 {
2828 frame_new_height(frp, height, topfirst, wfh);
2829 if (frp->fr_height > height)
2830 {
2831 /* Could not fit the windows, make the whole row higher. */
2832 height = frp->fr_height;
2833 break;
2834 }
2835 }
2836 }
2837 while (frp != NULL);
2838 }
2839#endif
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002840 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 {
2842 /* Complicated case: Resize a column of frames. Resize the bottom
2843 * frame first, frames above that when needed. */
2844
2845 frp = topfrp->fr_child;
2846 if (wfh)
2847 /* Advance past frames with one window with 'wfh' set. */
2848 while (frame_fixed_height(frp))
2849 {
2850 frp = frp->fr_next;
2851 if (frp == NULL)
2852 return; /* no frame without 'wfh', give up */
2853 }
2854 if (!topfirst)
2855 {
2856 /* Find the bottom frame of this column */
2857 while (frp->fr_next != NULL)
2858 frp = frp->fr_next;
2859 if (wfh)
2860 /* Advance back for frames with one window with 'wfh' set. */
2861 while (frame_fixed_height(frp))
2862 frp = frp->fr_prev;
2863 }
2864
2865 extra_lines = height - topfrp->fr_height;
2866 if (extra_lines < 0)
2867 {
2868 /* reduce height of contained frames, bottom or top frame first */
2869 while (frp != NULL)
2870 {
2871 h = frame_minheight(frp, NULL);
2872 if (frp->fr_height + extra_lines < h)
2873 {
2874 extra_lines += frp->fr_height - h;
2875 frame_new_height(frp, h, topfirst, wfh);
2876 }
2877 else
2878 {
2879 frame_new_height(frp, frp->fr_height + extra_lines,
2880 topfirst, wfh);
2881 break;
2882 }
2883 if (topfirst)
2884 {
2885 do
2886 frp = frp->fr_next;
2887 while (wfh && frp != NULL && frame_fixed_height(frp));
2888 }
2889 else
2890 {
2891 do
2892 frp = frp->fr_prev;
2893 while (wfh && frp != NULL && frame_fixed_height(frp));
2894 }
2895 /* Increase "height" if we could not reduce enough frames. */
2896 if (frp == NULL)
2897 height -= extra_lines;
2898 }
2899 }
2900 else if (extra_lines > 0)
2901 {
2902 /* increase height of bottom or top frame */
2903 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2904 }
2905 }
2906 topfrp->fr_height = height;
2907}
2908
2909/*
2910 * Return TRUE if height of frame "frp" should not be changed because of
2911 * the 'winfixheight' option.
2912 */
2913 static int
2914frame_fixed_height(frp)
2915 frame_T *frp;
2916{
2917 /* frame with one window: fixed height if 'winfixheight' set. */
2918 if (frp->fr_win != NULL)
2919 return frp->fr_win->w_p_wfh;
2920
2921 if (frp->fr_layout == FR_ROW)
2922 {
2923 /* The frame is fixed height if one of the frames in the row is fixed
2924 * height. */
2925 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2926 if (frame_fixed_height(frp))
2927 return TRUE;
2928 return FALSE;
2929 }
2930
2931 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2932 * frames in the row are fixed height. */
2933 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2934 if (!frame_fixed_height(frp))
2935 return FALSE;
2936 return TRUE;
2937}
2938
2939#ifdef FEAT_VERTSPLIT
2940/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002941 * Return TRUE if width of frame "frp" should not be changed because of
2942 * the 'winfixwidth' option.
2943 */
2944 static int
2945frame_fixed_width(frp)
2946 frame_T *frp;
2947{
2948 /* frame with one window: fixed width if 'winfixwidth' set. */
2949 if (frp->fr_win != NULL)
2950 return frp->fr_win->w_p_wfw;
2951
2952 if (frp->fr_layout == FR_COL)
2953 {
2954 /* The frame is fixed width if one of the frames in the row is fixed
2955 * width. */
2956 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2957 if (frame_fixed_width(frp))
2958 return TRUE;
2959 return FALSE;
2960 }
2961
2962 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2963 * frames in the row are fixed width. */
2964 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2965 if (!frame_fixed_width(frp))
2966 return FALSE;
2967 return TRUE;
2968}
2969
2970/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 * Add a status line to windows at the bottom of "frp".
2972 * Note: Does not check if there is room!
2973 */
2974 static void
2975frame_add_statusline(frp)
2976 frame_T *frp;
2977{
2978 win_T *wp;
2979
2980 if (frp->fr_layout == FR_LEAF)
2981 {
2982 wp = frp->fr_win;
2983 if (wp->w_status_height == 0)
2984 {
2985 if (wp->w_height > 0) /* don't make it negative */
2986 --wp->w_height;
2987 wp->w_status_height = STATUS_HEIGHT;
2988 }
2989 }
2990 else if (frp->fr_layout == FR_ROW)
2991 {
2992 /* Handle all the frames in the row. */
2993 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2994 frame_add_statusline(frp);
2995 }
2996 else /* frp->fr_layout == FR_COL */
2997 {
2998 /* Only need to handle the last frame in the column. */
2999 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
3000 ;
3001 frame_add_statusline(frp);
3002 }
3003}
3004
3005/*
3006 * Set width of a frame. Handles recursively going through contained frames.
3007 * May remove separator line for windows at the right side (for win_close()).
3008 */
3009 static void
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003010frame_new_width(topfrp, width, leftfirst, wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 frame_T *topfrp;
3012 int width;
3013 int leftfirst; /* resize leftmost contained frame first */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003014 int wfw; /* obey 'winfixwidth' when there is a choice;
3015 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016{
3017 frame_T *frp;
3018 int extra_cols;
3019 int w;
3020 win_T *wp;
3021
3022 if (topfrp->fr_layout == FR_LEAF)
3023 {
3024 /* Simple case: just one window. */
3025 wp = topfrp->fr_win;
3026 /* Find out if there are any windows right of this one. */
3027 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3028 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3029 break;
3030 if (frp->fr_parent == NULL)
3031 wp->w_vsep_width = 0;
3032 win_new_width(wp, width - wp->w_vsep_width);
3033 }
3034 else if (topfrp->fr_layout == FR_COL)
3035 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003036 do
3037 {
3038 /* All frames in this column get the same new width. */
3039 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3040 {
3041 frame_new_width(frp, width, leftfirst, wfw);
3042 if (frp->fr_width > width)
3043 {
3044 /* Could not fit the windows, make whole column wider. */
3045 width = frp->fr_width;
3046 break;
3047 }
3048 }
3049 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 }
3051 else /* fr_layout == FR_ROW */
3052 {
3053 /* Complicated case: Resize a row of frames. Resize the rightmost
3054 * frame first, frames left of it when needed. */
3055
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003057 if (wfw)
3058 /* Advance past frames with one window with 'wfw' set. */
3059 while (frame_fixed_width(frp))
3060 {
3061 frp = frp->fr_next;
3062 if (frp == NULL)
3063 return; /* no frame without 'wfw', give up */
3064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003066 {
3067 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 while (frp->fr_next != NULL)
3069 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003070 if (wfw)
3071 /* Advance back for frames with one window with 'wfw' set. */
3072 while (frame_fixed_width(frp))
3073 frp = frp->fr_prev;
3074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075
3076 extra_cols = width - topfrp->fr_width;
3077 if (extra_cols < 0)
3078 {
3079 /* reduce frame width, rightmost frame first */
3080 while (frp != NULL)
3081 {
3082 w = frame_minwidth(frp, NULL);
3083 if (frp->fr_width + extra_cols < w)
3084 {
3085 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003086 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 }
3088 else
3089 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003090 frame_new_width(frp, frp->fr_width + extra_cols,
3091 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 break;
3093 }
3094 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003095 {
3096 do
3097 frp = frp->fr_next;
3098 while (wfw && frp != NULL && frame_fixed_width(frp));
3099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003101 {
3102 do
3103 frp = frp->fr_prev;
3104 while (wfw && frp != NULL && frame_fixed_width(frp));
3105 }
3106 /* Increase "width" if we could not reduce enough frames. */
3107 if (frp == NULL)
3108 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 }
3110 }
3111 else if (extra_cols > 0)
3112 {
3113 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003114 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 }
3116 }
3117 topfrp->fr_width = width;
3118}
3119
3120/*
3121 * Add the vertical separator to windows at the right side of "frp".
3122 * Note: Does not check if there is room!
3123 */
3124 static void
3125frame_add_vsep(frp)
3126 frame_T *frp;
3127{
3128 win_T *wp;
3129
3130 if (frp->fr_layout == FR_LEAF)
3131 {
3132 wp = frp->fr_win;
3133 if (wp->w_vsep_width == 0)
3134 {
3135 if (wp->w_width > 0) /* don't make it negative */
3136 --wp->w_width;
3137 wp->w_vsep_width = 1;
3138 }
3139 }
3140 else if (frp->fr_layout == FR_COL)
3141 {
3142 /* Handle all the frames in the column. */
3143 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3144 frame_add_vsep(frp);
3145 }
3146 else /* frp->fr_layout == FR_ROW */
3147 {
3148 /* Only need to handle the last frame in the row. */
3149 frp = frp->fr_child;
3150 while (frp->fr_next != NULL)
3151 frp = frp->fr_next;
3152 frame_add_vsep(frp);
3153 }
3154}
3155
3156/*
3157 * Set frame width from the window it contains.
3158 */
3159 static void
3160frame_fix_width(wp)
3161 win_T *wp;
3162{
3163 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3164}
3165#endif
3166
3167/*
3168 * Set frame height from the window it contains.
3169 */
3170 static void
3171frame_fix_height(wp)
3172 win_T *wp;
3173{
3174 wp->w_frame->fr_height = wp->w_height + wp->w_status_height;
3175}
3176
3177/*
3178 * Compute the minimal height for frame "topfrp".
3179 * Uses the 'winminheight' option.
3180 * When "next_curwin" isn't NULL, use p_wh for this window.
3181 * When "next_curwin" is NOWIN, don't use at least one line for the current
3182 * window.
3183 */
3184 static int
3185frame_minheight(topfrp, next_curwin)
3186 frame_T *topfrp;
3187 win_T *next_curwin;
3188{
3189 frame_T *frp;
3190 int m;
3191#ifdef FEAT_VERTSPLIT
3192 int n;
3193#endif
3194
3195 if (topfrp->fr_win != NULL)
3196 {
3197 if (topfrp->fr_win == next_curwin)
3198 m = p_wh + topfrp->fr_win->w_status_height;
3199 else
3200 {
3201 /* window: minimal height of the window plus status line */
3202 m = p_wmh + topfrp->fr_win->w_status_height;
3203 /* Current window is minimal one line high */
3204 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3205 ++m;
3206 }
3207 }
3208#ifdef FEAT_VERTSPLIT
3209 else if (topfrp->fr_layout == FR_ROW)
3210 {
3211 /* get the minimal height from each frame in this row */
3212 m = 0;
3213 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3214 {
3215 n = frame_minheight(frp, next_curwin);
3216 if (n > m)
3217 m = n;
3218 }
3219 }
3220#endif
3221 else
3222 {
3223 /* Add up the minimal heights for all frames in this column. */
3224 m = 0;
3225 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3226 m += frame_minheight(frp, next_curwin);
3227 }
3228
3229 return m;
3230}
3231
3232#ifdef FEAT_VERTSPLIT
3233/*
3234 * Compute the minimal width for frame "topfrp".
3235 * When "next_curwin" isn't NULL, use p_wiw for this window.
3236 * When "next_curwin" is NOWIN, don't use at least one column for the current
3237 * window.
3238 */
3239 static int
3240frame_minwidth(topfrp, next_curwin)
3241 frame_T *topfrp;
3242 win_T *next_curwin; /* use p_wh and p_wiw for next_curwin */
3243{
3244 frame_T *frp;
3245 int m, n;
3246
3247 if (topfrp->fr_win != NULL)
3248 {
3249 if (topfrp->fr_win == next_curwin)
3250 m = p_wiw + topfrp->fr_win->w_vsep_width;
3251 else
3252 {
3253 /* window: minimal width of the window plus separator column */
3254 m = p_wmw + topfrp->fr_win->w_vsep_width;
3255 /* Current window is minimal one column wide */
3256 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3257 ++m;
3258 }
3259 }
3260 else if (topfrp->fr_layout == FR_COL)
3261 {
3262 /* get the minimal width from each frame in this column */
3263 m = 0;
3264 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3265 {
3266 n = frame_minwidth(frp, next_curwin);
3267 if (n > m)
3268 m = n;
3269 }
3270 }
3271 else
3272 {
3273 /* Add up the minimal widths for all frames in this row. */
3274 m = 0;
3275 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3276 m += frame_minwidth(frp, next_curwin);
3277 }
3278
3279 return m;
3280}
3281#endif
3282
3283
3284/*
3285 * Try to close all windows except current one.
3286 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3287 * used and the buffer was modified.
3288 *
3289 * Used by ":bdel" and ":only".
3290 */
3291 void
3292close_others(message, forceit)
3293 int message;
3294 int forceit; /* always hide all other windows */
3295{
3296 win_T *wp;
3297 win_T *nextwp;
3298 int r;
3299
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003300 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 {
3302 if (message
3303#ifdef FEAT_AUTOCMD
3304 && !autocmd_busy
3305#endif
3306 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003307 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 return;
3309 }
3310
3311 /* Be very careful here: autocommands may change the window layout. */
3312 for (wp = firstwin; win_valid(wp); wp = nextwp)
3313 {
3314 nextwp = wp->w_next;
3315 if (wp != curwin) /* don't close current window */
3316 {
3317
3318 /* Check if it's allowed to abandon this window */
3319 r = can_abandon(wp->w_buffer, forceit);
3320#ifdef FEAT_AUTOCMD
3321 if (!win_valid(wp)) /* autocommands messed wp up */
3322 {
3323 nextwp = firstwin;
3324 continue;
3325 }
3326#endif
3327 if (!r)
3328 {
3329#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3330 if (message && (p_confirm || cmdmod.confirm) && p_write)
3331 {
3332 dialog_changed(wp->w_buffer, FALSE);
3333# ifdef FEAT_AUTOCMD
3334 if (!win_valid(wp)) /* autocommands messed wp up */
3335 {
3336 nextwp = firstwin;
3337 continue;
3338 }
3339# endif
3340 }
3341 if (bufIsChanged(wp->w_buffer))
3342#endif
3343 continue;
3344 }
3345 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer));
3346 }
3347 }
3348
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003349 if (message && lastwin != firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 EMSG(_("E445: Other window contains changes"));
3351}
3352
3353#endif /* FEAT_WINDOWS */
3354
3355/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003356 * Init the current window "curwin".
3357 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 */
3359 void
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003360curwin_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003362 win_init_empty(curwin);
3363}
3364
3365 void
3366win_init_empty(wp)
3367 win_T *wp;
3368{
3369 redraw_win_later(wp, NOT_VALID);
3370 wp->w_lines_valid = 0;
3371 wp->w_cursor.lnum = 1;
3372 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003374 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003376 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3377 wp->w_pcmark.col = 0;
3378 wp->w_prev_pcmark.lnum = 0;
3379 wp->w_prev_pcmark.col = 0;
3380 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003382 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003384 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003386 if (wp->w_p_rl)
3387 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003389 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003391#ifdef FEAT_SYN_HL
3392 wp->w_s = &wp->w_buffer->b_s;
3393#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394}
3395
3396/*
3397 * Allocate the first window and put an empty buffer in it.
3398 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003399 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003401 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402win_alloc_first()
3403{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003404 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003405 return FAIL;
3406
3407#ifdef FEAT_WINDOWS
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003408 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003409 if (first_tabpage == NULL)
3410 return FAIL;
3411 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003412 curtab = first_tabpage;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003413#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003414
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003415 return OK;
3416}
3417
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003418#if defined(FEAT_AUTOCMD) || defined(PROTO)
3419/*
3420 * Init "aucmd_win". This can only be done after the first
3421 * window is fully initialized, thus it can't be in win_alloc_first().
3422 */
3423 void
3424win_alloc_aucmd_win()
3425{
3426 aucmd_win = win_alloc(NULL, TRUE);
3427 if (aucmd_win != NULL)
3428 {
3429 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003430 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003431 new_frame(aucmd_win);
3432 }
3433}
3434#endif
3435
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003436/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003437 * Allocate the first window or the first window in a new tab page.
3438 * When "oldwin" is NULL create an empty buffer for it.
3439 * When "oldwin" is not NULL copy info from it to the new window (only with
3440 * FEAT_WINDOWS).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003441 * Return FAIL when something goes wrong (out of memory).
3442 */
3443 static int
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003444win_alloc_firstwin(oldwin)
3445 win_T *oldwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003446{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003447 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003448 if (oldwin == NULL)
3449 {
3450 /* Very first window, need to create an empty buffer for it and
3451 * initialize from scratch. */
3452 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3453 if (curwin == NULL || curbuf == NULL)
3454 return FAIL;
3455 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003456#ifdef FEAT_SYN_HL
3457 curwin->w_s = &(curbuf->b_s);
3458#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003459 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460#ifdef FEAT_WINDOWS
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003461 curwin->w_alist = &global_alist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003463 curwin_init(); /* init current window */
3464 }
3465#ifdef FEAT_WINDOWS
3466 else
3467 {
3468 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003469 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003470
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003471 /* We don't want cursor- and scroll-binding in the first window. */
3472 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003473 }
3474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003476 new_frame(curwin);
3477 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003478 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003479 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480#ifdef FEAT_VERTSPLIT
3481 topframe->fr_width = Columns;
3482#endif
3483 topframe->fr_height = Rows - p_ch;
3484 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003485
3486 return OK;
3487}
3488
3489/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003490 * Create a frame for window "wp".
3491 */
3492 static void
3493new_frame(win_T *wp)
3494{
3495 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3496
3497 wp->w_frame = frp;
3498 if (frp != NULL)
3499 {
3500 frp->fr_layout = FR_LEAF;
3501 frp->fr_win = wp;
3502 }
3503}
3504
3505/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003506 * Initialize the window and frame size to the maximum.
3507 */
3508 void
3509win_init_size()
3510{
3511 firstwin->w_height = ROWS_AVAIL;
3512 topframe->fr_height = ROWS_AVAIL;
3513#ifdef FEAT_VERTSPLIT
3514 firstwin->w_width = Columns;
3515 topframe->fr_width = Columns;
3516#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517}
3518
3519#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003520
3521/*
3522 * Allocate a new tabpage_T and init the values.
3523 * Returns NULL when out of memory.
3524 */
3525 static tabpage_T *
3526alloc_tabpage()
3527{
3528 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003529# ifdef FEAT_GUI
3530 int i;
3531# endif
3532
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003533
3534 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003535 if (tp == NULL)
3536 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003537
Bram Moolenaar429fa852013-04-15 12:27:36 +02003538# ifdef FEAT_EVAL
3539 /* init t: variables */
3540 tp->tp_vars = dict_alloc();
3541 if (tp->tp_vars == NULL)
3542 {
3543 vim_free(tp);
3544 return NULL;
3545 }
3546 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3547# endif
3548
3549# ifdef FEAT_GUI
3550 for (i = 0; i < 3; i++)
3551 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003552# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003553# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003554 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003555# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003556 tp->tp_ch_used = p_ch;
3557
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003558 return tp;
3559}
3560
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003561 void
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003562free_tabpage(tp)
3563 tabpage_T *tp;
3564{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003565 int idx;
3566
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003567# ifdef FEAT_DIFF
3568 diff_clear(tp);
3569# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003570 for (idx = 0; idx < SNAP_COUNT; ++idx)
3571 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003572#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003573 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3574 hash_init(&tp->tp_vars->dv_hashtab);
3575 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003576#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003577
3578#ifdef FEAT_PYTHON
3579 python_tabpage_free(tp);
3580#endif
3581
3582#ifdef FEAT_PYTHON3
3583 python3_tabpage_free(tp);
3584#endif
3585
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003586 vim_free(tp);
3587}
3588
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003589/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003590 * Create a new Tab page with one window.
3591 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003592 * When "after" is 0 put it just after the current Tab page.
3593 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003594 * Return FAIL or OK.
3595 */
3596 int
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003597win_new_tabpage(after)
3598 int after;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003599{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003600 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003601 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003602 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003603
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003604 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003605 if (newtp == NULL)
3606 return FAIL;
3607
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003608 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003609 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003610 {
3611 vim_free(newtp);
3612 return FAIL;
3613 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003614 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003615
3616 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003617 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003618 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003619 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003620 if (after == 1)
3621 {
3622 /* New tab page becomes the first one. */
3623 newtp->tp_next = first_tabpage;
3624 first_tabpage = newtp;
3625 }
3626 else
3627 {
3628 if (after > 0)
3629 {
3630 /* Put new tab page before tab page "after". */
3631 n = 2;
3632 for (tp = first_tabpage; tp->tp_next != NULL
3633 && n < after; tp = tp->tp_next)
3634 ++n;
3635 }
3636 newtp->tp_next = tp->tp_next;
3637 tp->tp_next = newtp;
3638 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003639 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003640 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003641 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003642
3643 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003644 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003645
3646#if defined(FEAT_GUI)
3647 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3648 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003649 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003650#endif
3651
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003652 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003653#ifdef FEAT_AUTOCMD
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003654 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003655 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003656#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003657 return OK;
3658 }
3659
3660 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003661 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003662 return FAIL;
3663}
3664
3665/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003666 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3667 * like with ":split".
3668 * Returns OK if a new tab page was created, FAIL otherwise.
3669 */
3670 int
3671may_open_tabpage()
3672{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003673 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003674
Bram Moolenaard326ce82007-03-11 14:48:29 +00003675 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003676 {
3677 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003678 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003679 return win_new_tabpage(n);
3680 }
3681 return FAIL;
3682}
3683
3684/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003685 * Create up to "maxcount" tabpages with empty windows.
3686 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003687 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003688 int
3689make_tabpages(maxcount)
3690 int maxcount;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003691{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003692 int count = maxcount;
3693 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003694
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003695 /* Limit to 'tabpagemax' tabs. */
3696 if (count > p_tpm)
3697 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003698
3699#ifdef FEAT_AUTOCMD
3700 /*
3701 * Don't execute autocommands while creating the tab pages. Must do that
3702 * when putting the buffers in the windows.
3703 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003704 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003705#endif
3706
3707 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003708 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003709 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003710
3711#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003712 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003713#endif
3714
3715 /* return actual number of tab pages */
3716 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003717}
3718
3719/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003720 * Return TRUE when "tpc" points to a valid tab page.
3721 */
3722 int
3723valid_tabpage(tpc)
3724 tabpage_T *tpc;
3725{
3726 tabpage_T *tp;
3727
3728 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3729 if (tp == tpc)
3730 return TRUE;
3731 return FALSE;
3732}
3733
3734/*
3735 * Find tab page "n" (first one is 1). Returns NULL when not found.
3736 */
3737 tabpage_T *
3738find_tabpage(n)
3739 int n;
3740{
3741 tabpage_T *tp;
3742 int i = 1;
3743
3744 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3745 ++i;
3746 return tp;
3747}
3748
3749/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003750 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003751 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003752 */
3753 int
3754tabpage_index(ftp)
3755 tabpage_T *ftp;
3756{
3757 int i = 1;
3758 tabpage_T *tp;
3759
3760 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3761 ++i;
3762 return i;
3763}
3764
3765/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003766 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003767 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003768 * FAIL.
3769 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003770 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003771 static int
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003772leave_tabpage(new_curbuf, trigger_leave_autocmds)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003773 buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003774 NULL if unknown */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003775 int trigger_leave_autocmds UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003776{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003777 tabpage_T *tp = curtab;
3778
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003779 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003780#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003781 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003782 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003783 if (new_curbuf != curbuf)
3784 {
3785 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3786 if (curtab != tp)
3787 return FAIL;
3788 }
3789 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3790 if (curtab != tp)
3791 return FAIL;
3792 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003793 if (curtab != tp)
3794 return FAIL;
3795 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003796#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003797#if defined(FEAT_GUI)
3798 /* Remove the scrollbars. They may be added back later. */
3799 if (gui.in_use)
3800 gui_remove_scrollbars();
3801#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003802 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003803 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003804 tp->tp_firstwin = firstwin;
3805 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003806 tp->tp_old_Rows = Rows;
3807 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003808 firstwin = NULL;
3809 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003810 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003811}
3812
3813/*
3814 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003815 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003816 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3817 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003818 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003819 static void
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003820enter_tabpage(tp, old_curbuf, trigger_enter_autocmds, trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003821 tabpage_T *tp;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003822 buf_T *old_curbuf UNUSED;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003823 int trigger_enter_autocmds UNUSED;
3824 int trigger_leave_autocmds UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003825{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003826 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003827 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003828
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003829 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003830 firstwin = tp->tp_firstwin;
3831 lastwin = tp->tp_lastwin;
3832 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003833
3834 /* We would like doing the TabEnter event first, but we don't have a
3835 * valid current window yet, which may break some commands.
3836 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaard6949742013-06-16 14:18:28 +02003837 win_enter_ext(tp->tp_curwin, FALSE, TRUE,
3838 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003839 prevwin = next_prevwin;
3840
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003841 last_status(FALSE); /* status line may appear or disappear */
3842 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003843 must_redraw = CLEAR; /* need to redraw everything */
3844#ifdef FEAT_DIFF
3845 diff_need_scrollbind = TRUE;
3846#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003847
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003848 /* The tabpage line may have appeared or disappeared, may need to resize
3849 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003850 * frame sizes too. Use the stored value of p_ch, so that it can be
3851 * different for each tab page. */
3852 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003853 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3854#ifdef FEAT_GUI_TABLINE
3855 && !gui_use_tabline()
3856#endif
3857 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003858 shell_new_rows();
3859#ifdef FEAT_VERTSPLIT
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003860 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003861 shell_new_columns(); /* update window widths */
3862#endif
3863
3864#if defined(FEAT_GUI)
3865 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3866 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003867 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003868#endif
3869
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003870#ifdef FEAT_AUTOCMD
3871 /* Apply autocommands after updating the display, when 'rows' and
3872 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003873 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003874 {
3875 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3876 if (old_curbuf != curbuf)
3877 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3878 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003879#endif
3880
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003881 redraw_all_later(CLEAR);
3882}
3883
3884/*
3885 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003886 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003887 */
3888 void
3889goto_tabpage(n)
3890 int n;
3891{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003892 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003893 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003894 int i;
3895
Bram Moolenaard68071d2006-05-02 22:08:30 +00003896 if (text_locked())
3897 {
3898 /* Not allowed when editing the command line. */
3899#ifdef FEAT_CMDWIN
3900 if (cmdwin_type != 0)
3901 EMSG(_(e_cmdwin));
3902 else
3903#endif
3904 EMSG(_(e_secure));
3905 return;
3906 }
3907
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003908 /* If there is only one it can't work. */
3909 if (first_tabpage->tp_next == NULL)
3910 {
3911 if (n > 1)
3912 beep_flush();
3913 return;
3914 }
3915
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003916 if (n == 0)
3917 {
3918 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003919 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003920 tp = first_tabpage;
3921 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003922 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003923 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003924 else if (n < 0)
3925 {
3926 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3927 * this N times. */
3928 ttp = curtab;
3929 for (i = n; i < 0; ++i)
3930 {
3931 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
3932 tp = tp->tp_next)
3933 ;
3934 ttp = tp;
3935 }
3936 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003937 else if (n == 9999)
3938 {
3939 /* Go to last tab page. */
3940 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
3941 ;
3942 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003943 else
3944 {
3945 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003946 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00003947 if (tp == NULL)
3948 {
3949 beep_flush();
3950 return;
3951 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003952 }
3953
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003954 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003955
3956#ifdef FEAT_GUI_TABLINE
3957 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003958 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003959#endif
3960}
3961
3962/*
3963 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003964 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3965 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003966 * Note: doesn't update the GUI tab.
3967 */
3968 void
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003969goto_tabpage_tp(tp, trigger_enter_autocmds, trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003970 tabpage_T *tp;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003971 int trigger_enter_autocmds;
3972 int trigger_leave_autocmds;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003973{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02003974 /* Don't repeat a message in another tab page. */
3975 set_keep_msg(NULL, 0);
3976
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003977 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
3978 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003979 {
3980 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003981 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
3982 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003983 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003984 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
3985 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003986 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003987}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988
3989/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003990 * Enter window "wp" in tab page "tp".
3991 * Also updates the GUI tab.
3992 */
3993 void
3994goto_tabpage_win(tp, wp)
3995 tabpage_T *tp;
3996 win_T *wp;
3997{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003998 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003999 if (curtab == tp && win_valid(wp))
4000 {
4001 win_enter(wp, TRUE);
4002# ifdef FEAT_GUI_TABLINE
4003 if (gui_use_tabline())
4004 gui_mch_set_curtab(tabpage_index(curtab));
4005# endif
4006 }
4007}
4008
4009/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004010 * Move the current tab page to before tab page "nr".
4011 */
4012 void
4013tabpage_move(nr)
4014 int nr;
4015{
4016 int n = nr;
4017 tabpage_T *tp;
4018
4019 if (first_tabpage->tp_next == NULL)
4020 return;
4021
4022 /* Remove the current tab page from the list of tab pages. */
4023 if (curtab == first_tabpage)
4024 first_tabpage = curtab->tp_next;
4025 else
4026 {
4027 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4028 if (tp->tp_next == curtab)
4029 break;
4030 if (tp == NULL) /* "cannot happen" */
4031 return;
4032 tp->tp_next = curtab->tp_next;
4033 }
4034
4035 /* Re-insert it at the specified position. */
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02004036 if (n <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004037 {
4038 curtab->tp_next = first_tabpage;
4039 first_tabpage = curtab;
4040 }
4041 else
4042 {
4043 for (tp = first_tabpage; tp->tp_next != NULL && n > 1; tp = tp->tp_next)
4044 --n;
4045 curtab->tp_next = tp->tp_next;
4046 tp->tp_next = curtab;
4047 }
4048
4049 /* Need to redraw the tabline. Tab page contents doesn't change. */
4050 redraw_tabline = TRUE;
4051}
4052
4053
4054/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 * Go to another window.
4056 * When jumping to another buffer, stop Visual mode. Do this before
4057 * changing windows so we can yank the selection into the '*' register.
4058 * When jumping to another window on the same buffer, adjust its cursor
4059 * position to keep the same Visual area.
4060 */
4061 void
4062win_goto(wp)
4063 win_T *wp;
4064{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004065#ifdef FEAT_CONCEAL
4066 win_T *owp = curwin;
4067#endif
4068
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004069 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 {
4071 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004072 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 return;
4074 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004075#ifdef FEAT_AUTOCMD
4076 if (curbuf_locked())
4077 return;
4078#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004079
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 if (wp->w_buffer != curbuf)
4081 reset_VIsual_and_resel();
4082 else if (VIsual_active)
4083 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084
4085#ifdef FEAT_GUI
4086 need_mouse_correct = TRUE;
4087#endif
4088 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004089
4090#ifdef FEAT_CONCEAL
4091 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004092 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004093 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004094 if (curwin->w_p_cole > 0 && !msg_scrolled)
4095 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097}
4098
4099#if defined(FEAT_PERL) || defined(PROTO)
4100/*
4101 * Find window number "winnr" (counting top to bottom).
4102 */
4103 win_T *
4104win_find_nr(winnr)
4105 int winnr;
4106{
4107 win_T *wp;
4108
4109# ifdef FEAT_WINDOWS
4110 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4111 if (--winnr == 0)
4112 break;
4113 return wp;
4114# else
4115 return curwin;
4116# endif
4117}
4118#endif
4119
Bram Moolenaar6fa41fb2013-05-18 20:55:35 +02004120#if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
4121 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004122/*
4123 * Find the tabpage for window "win".
4124 */
4125 tabpage_T *
4126win_find_tabpage(win)
4127 win_T *win;
4128{
4129 win_T *wp;
4130 tabpage_T *tp;
4131
4132 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
Bram Moolenaar5e6d5ca2013-07-03 14:01:56 +02004133 for (wp = (tp == curtab ? firstwin : tp->tp_firstwin);
4134 wp != NULL; wp = wp->w_next)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004135 if (wp == win)
4136 return tp;
4137 return NULL;
4138}
4139#endif
4140
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141#ifdef FEAT_VERTSPLIT
4142/*
4143 * Move to window above or below "count" times.
4144 */
4145 static void
4146win_goto_ver(up, count)
4147 int up; /* TRUE to go to win above */
4148 long count;
4149{
4150 frame_T *fr;
4151 frame_T *nfr;
4152 frame_T *foundfr;
4153
4154 foundfr = curwin->w_frame;
4155 while (count--)
4156 {
4157 /*
4158 * First go upwards in the tree of frames until we find a upwards or
4159 * downwards neighbor.
4160 */
4161 fr = foundfr;
4162 for (;;)
4163 {
4164 if (fr == topframe)
4165 goto end;
4166 if (up)
4167 nfr = fr->fr_prev;
4168 else
4169 nfr = fr->fr_next;
4170 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4171 break;
4172 fr = fr->fr_parent;
4173 }
4174
4175 /*
4176 * Now go downwards to find the bottom or top frame in it.
4177 */
4178 for (;;)
4179 {
4180 if (nfr->fr_layout == FR_LEAF)
4181 {
4182 foundfr = nfr;
4183 break;
4184 }
4185 fr = nfr->fr_child;
4186 if (nfr->fr_layout == FR_ROW)
4187 {
4188 /* Find the frame at the cursor row. */
4189 while (fr->fr_next != NULL
4190 && frame2win(fr)->w_wincol + fr->fr_width
4191 <= curwin->w_wincol + curwin->w_wcol)
4192 fr = fr->fr_next;
4193 }
4194 if (nfr->fr_layout == FR_COL && up)
4195 while (fr->fr_next != NULL)
4196 fr = fr->fr_next;
4197 nfr = fr;
4198 }
4199 }
4200end:
4201 if (foundfr != NULL)
4202 win_goto(foundfr->fr_win);
4203}
4204
4205/*
4206 * Move to left or right window.
4207 */
4208 static void
4209win_goto_hor(left, count)
4210 int left; /* TRUE to go to left win */
4211 long count;
4212{
4213 frame_T *fr;
4214 frame_T *nfr;
4215 frame_T *foundfr;
4216
4217 foundfr = curwin->w_frame;
4218 while (count--)
4219 {
4220 /*
4221 * First go upwards in the tree of frames until we find a left or
4222 * right neighbor.
4223 */
4224 fr = foundfr;
4225 for (;;)
4226 {
4227 if (fr == topframe)
4228 goto end;
4229 if (left)
4230 nfr = fr->fr_prev;
4231 else
4232 nfr = fr->fr_next;
4233 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4234 break;
4235 fr = fr->fr_parent;
4236 }
4237
4238 /*
4239 * Now go downwards to find the leftmost or rightmost frame in it.
4240 */
4241 for (;;)
4242 {
4243 if (nfr->fr_layout == FR_LEAF)
4244 {
4245 foundfr = nfr;
4246 break;
4247 }
4248 fr = nfr->fr_child;
4249 if (nfr->fr_layout == FR_COL)
4250 {
4251 /* Find the frame at the cursor row. */
4252 while (fr->fr_next != NULL
4253 && frame2win(fr)->w_winrow + fr->fr_height
4254 <= curwin->w_winrow + curwin->w_wrow)
4255 fr = fr->fr_next;
4256 }
4257 if (nfr->fr_layout == FR_ROW && left)
4258 while (fr->fr_next != NULL)
4259 fr = fr->fr_next;
4260 nfr = fr;
4261 }
4262 }
4263end:
4264 if (foundfr != NULL)
4265 win_goto(foundfr->fr_win);
4266}
4267#endif
4268
4269/*
4270 * Make window "wp" the current window.
4271 */
4272 void
4273win_enter(wp, undo_sync)
4274 win_T *wp;
4275 int undo_sync;
4276{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004277 win_enter_ext(wp, undo_sync, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278}
4279
4280/*
4281 * Make window wp the current window.
4282 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4283 * been closed and isn't valid.
4284 */
4285 static void
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004286win_enter_ext(wp, undo_sync, curwin_invalid, trigger_enter_autocmds, trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 win_T *wp;
4288 int undo_sync;
4289 int curwin_invalid;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004290 int trigger_enter_autocmds UNUSED;
4291 int trigger_leave_autocmds UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292{
4293#ifdef FEAT_AUTOCMD
4294 int other_buffer = FALSE;
4295#endif
4296
4297 if (wp == curwin && !curwin_invalid) /* nothing to do */
4298 return;
4299
4300#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004301 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 {
4303 /*
4304 * Be careful: If autocommands delete the window, return now.
4305 */
4306 if (wp->w_buffer != curbuf)
4307 {
4308 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4309 other_buffer = TRUE;
4310 if (!win_valid(wp))
4311 return;
4312 }
4313 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4314 if (!win_valid(wp))
4315 return;
4316# ifdef FEAT_EVAL
4317 /* autocmds may abort script processing */
4318 if (aborting())
4319 return;
4320# endif
4321 }
4322#endif
4323
4324 /* sync undo before leaving the current buffer */
4325 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004326 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004327
4328 /* Might need to scroll the old window before switching, e.g., when the
4329 * cursor was moved. */
4330 update_topline();
4331
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 /* may have to copy the buffer options when 'cpo' contains 'S' */
4333 if (wp->w_buffer != curbuf)
4334 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4335 if (!curwin_invalid)
4336 {
4337 prevwin = curwin; /* remember for CTRL-W p */
4338 curwin->w_redr_status = TRUE;
4339 }
4340 curwin = wp;
4341 curbuf = wp->w_buffer;
4342 check_cursor();
4343#ifdef FEAT_VIRTUALEDIT
4344 if (!virtual_active())
4345 curwin->w_cursor.coladd = 0;
4346#endif
4347 changed_line_abv_curs(); /* assume cursor position needs updating */
4348
4349 if (curwin->w_localdir != NULL)
4350 {
4351 /* Window has a local directory: Save current directory as global
4352 * directory (unless that was done already) and change to the local
4353 * directory. */
4354 if (globaldir == NULL)
4355 {
4356 char_u cwd[MAXPATHL];
4357
4358 if (mch_dirname(cwd, MAXPATHL) == OK)
4359 globaldir = vim_strsave(cwd);
4360 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004361 if (mch_chdir((char *)curwin->w_localdir) == 0)
4362 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 }
4364 else if (globaldir != NULL)
4365 {
4366 /* Window doesn't have a local directory and we are not in the global
4367 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004368 ignored = mch_chdir((char *)globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 vim_free(globaldir);
4370 globaldir = NULL;
4371 shorten_fnames(TRUE);
4372 }
4373
4374#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004375 if (trigger_enter_autocmds)
4376 {
4377 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4378 if (other_buffer)
4379 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4380 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381#endif
4382
4383#ifdef FEAT_TITLE
4384 maketitle();
4385#endif
4386 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004387 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 if (restart_edit)
4389 redraw_later(VALID); /* causes status line redraw */
4390
4391 /* set window height to desired minimal value */
4392 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4393 win_setheight((int)p_wh);
4394 else if (curwin->w_height == 0)
4395 win_setheight(1);
4396
4397#ifdef FEAT_VERTSPLIT
4398 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004399 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 win_setwidth((int)p_wiw);
4401#endif
4402
4403#ifdef FEAT_MOUSE
4404 setmouse(); /* in case jumped to/from help buffer */
4405#endif
4406
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004407 /* Change directories when the 'acd' option is set. */
4408 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409}
4410
4411#endif /* FEAT_WINDOWS */
4412
4413#if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO)
4414/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004415 * Jump to the first open window that contains buffer "buf", if one exists.
4416 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 */
4418 win_T *
4419buf_jump_open_win(buf)
4420 buf_T *buf;
4421{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004422 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004424 if (curwin->w_buffer == buf)
4425 wp = curwin;
4426# ifdef FEAT_WINDOWS
4427 else
4428 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4429 if (wp->w_buffer == buf)
4430 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 if (wp != NULL)
4432 win_enter(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004434 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004436
4437/*
4438 * Jump to the first open window in any tab page that contains buffer "buf",
4439 * if one exists.
4440 * Returns a pointer to the window found, otherwise NULL.
4441 */
4442 win_T *
4443buf_jump_open_tab(buf)
4444 buf_T *buf;
4445{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004446 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004447# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004448 tabpage_T *tp;
4449
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004450 if (wp != NULL)
4451 return wp;
4452
4453 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4454 if (tp != curtab)
4455 {
4456 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4457 if (wp->w_buffer == buf)
4458 break;
4459 if (wp != NULL)
4460 {
4461 goto_tabpage_win(tp, wp);
4462 if (curwin != wp)
4463 wp = NULL; /* something went wrong */
4464 break;
4465 }
4466 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004467# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004468 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004469}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470#endif
4471
4472/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004473 * Allocate a window structure and link it in the window list when "hidden" is
4474 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 static win_T *
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004477win_alloc(after, hidden)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00004478 win_T *after UNUSED;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004479 int hidden UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004481 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482
4483 /*
4484 * allocate window structure and linesizes arrays
4485 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004486 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004487 if (new_wp == NULL)
4488 return NULL;
4489
4490 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004492 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004493 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 }
4495
Bram Moolenaar429fa852013-04-15 12:27:36 +02004496#ifdef FEAT_EVAL
4497 /* init w: variables */
4498 new_wp->w_vars = dict_alloc();
4499 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004501 win_free_lsize(new_wp);
4502 vim_free(new_wp);
4503 return NULL;
4504 }
4505 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004506#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004507
4508#ifdef FEAT_AUTOCMD
4509 /* Don't execute autocommands while the window is not properly
4510 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4511 * event. */
4512 block_autocmds();
4513#endif
4514 /*
4515 * link the window in the window list
4516 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517#ifdef FEAT_WINDOWS
Bram Moolenaar429fa852013-04-15 12:27:36 +02004518 if (!hidden)
4519 win_append(after, new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520#endif
4521#ifdef FEAT_VERTSPLIT
Bram Moolenaar429fa852013-04-15 12:27:36 +02004522 new_wp->w_wincol = 0;
4523 new_wp->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524#endif
4525
Bram Moolenaar429fa852013-04-15 12:27:36 +02004526 /* position the display and the cursor at the top of the file. */
4527 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004529 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004531 new_wp->w_botline = 2;
4532 new_wp->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533#ifdef FEAT_SCROLLBIND
Bram Moolenaar429fa852013-04-15 12:27:36 +02004534 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535#endif
4536
Bram Moolenaar429fa852013-04-15 12:27:36 +02004537 /* We won't calculate w_fraction until resizing the window */
4538 new_wp->w_fraction = 0;
4539 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540
4541#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004542 if (gui.in_use)
4543 {
4544 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4545 SBAR_LEFT, new_wp);
4546 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4547 SBAR_RIGHT, new_wp);
4548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549#endif
4550#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004551 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552#endif
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004553#ifdef FEAT_AUTOCMD
Bram Moolenaar429fa852013-04-15 12:27:36 +02004554 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004555#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004556#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004557 new_wp->w_match_head = NULL;
4558 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004559#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004560 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561}
4562
4563#if defined(FEAT_WINDOWS) || defined(PROTO)
4564
4565/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004566 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 */
4568 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00004569win_free(wp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004571 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572{
4573 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004574 buf_T *buf;
4575 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004577#ifdef FEAT_FOLDING
4578 clearFolding(wp);
4579#endif
4580
4581 /* reduce the reference count to the argument list. */
4582 alist_unlink(wp->w_alist);
4583
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004584#ifdef FEAT_AUTOCMD
4585 /* Don't execute autocommands while the window is halfway being deleted.
4586 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004587 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004588#endif
4589
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004590#ifdef FEAT_LUA
4591 lua_window_free(wp);
4592#endif
4593
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004594#ifdef FEAT_MZSCHEME
4595 mzscheme_window_free(wp);
4596#endif
4597
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598#ifdef FEAT_PERL
4599 perl_win_free(wp);
4600#endif
4601
4602#ifdef FEAT_PYTHON
4603 python_window_free(wp);
4604#endif
4605
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004606#ifdef FEAT_PYTHON3
4607 python3_window_free(wp);
4608#endif
4609
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610#ifdef FEAT_TCL
4611 tcl_window_free(wp);
4612#endif
4613
4614#ifdef FEAT_RUBY
4615 ruby_window_free(wp);
4616#endif
4617
4618 clear_winopt(&wp->w_onebuf_opt);
4619 clear_winopt(&wp->w_allbuf_opt);
4620
4621#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004622 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4623 hash_init(&wp->w_vars->dv_hashtab);
4624 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625#endif
4626
4627 if (prevwin == wp)
4628 prevwin = NULL;
4629 win_free_lsize(wp);
4630
4631 for (i = 0; i < wp->w_tagstacklen; ++i)
4632 vim_free(wp->w_tagstack[i].tagname);
4633
4634 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004635
Bram Moolenaarff18df02013-07-24 17:51:57 +02004636 /* Remove the window from the b_wininfo lists, it may happen that the
4637 * freed memory is re-used for another window. */
4638 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
4639 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4640 if (wip->wi_win == wp)
4641 wip->wi_win = NULL;
4642
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004644 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004646
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647#ifdef FEAT_JUMPLIST
4648 free_jumplist(wp);
4649#endif
4650
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004651#ifdef FEAT_QUICKFIX
4652 qf_free_all(wp);
4653#endif
4654
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655#ifdef FEAT_GUI
4656 if (gui.in_use)
4657 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4659 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4660 }
4661#endif /* FEAT_GUI */
4662
Bram Moolenaar860cae12010-06-05 23:22:07 +02004663#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004664 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004665#endif
4666
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004667#ifdef FEAT_AUTOCMD
4668 if (wp != aucmd_win)
4669#endif
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004670 win_remove(wp, tp);
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004671#ifdef FEAT_AUTOCMD
Bram Moolenaar3be85852014-06-12 14:01:31 +02004672 if (autocmd_busy)
4673 {
4674 wp->w_next = au_pending_free_win;
4675 au_pending_free_win = wp;
4676 }
4677 else
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004678#endif
Bram Moolenaar3be85852014-06-12 14:01:31 +02004679 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004680
4681#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004682 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004683#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684}
4685
4686/*
4687 * Append window "wp" in the window list after window "after".
4688 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004689 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690win_append(after, wp)
4691 win_T *after, *wp;
4692{
4693 win_T *before;
4694
4695 if (after == NULL) /* after NULL is in front of the first */
4696 before = firstwin;
4697 else
4698 before = after->w_next;
4699
4700 wp->w_next = before;
4701 wp->w_prev = after;
4702 if (after == NULL)
4703 firstwin = wp;
4704 else
4705 after->w_next = wp;
4706 if (before == NULL)
4707 lastwin = wp;
4708 else
4709 before->w_prev = wp;
4710}
4711
4712/*
4713 * Remove a window from the window list.
4714 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004715 void
Bram Moolenaarf740b292006-02-16 22:11:02 +00004716win_remove(wp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004718 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719{
4720 if (wp->w_prev != NULL)
4721 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004722 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004724 else
4725 tp->tp_firstwin = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 if (wp->w_next != NULL)
4727 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004728 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004730 else
4731 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732}
4733
4734/*
4735 * Append frame "frp" in a frame list after frame "after".
4736 */
4737 static void
4738frame_append(after, frp)
4739 frame_T *after, *frp;
4740{
4741 frp->fr_next = after->fr_next;
4742 after->fr_next = frp;
4743 if (frp->fr_next != NULL)
4744 frp->fr_next->fr_prev = frp;
4745 frp->fr_prev = after;
4746}
4747
4748/*
4749 * Insert frame "frp" in a frame list before frame "before".
4750 */
4751 static void
4752frame_insert(before, frp)
4753 frame_T *before, *frp;
4754{
4755 frp->fr_next = before;
4756 frp->fr_prev = before->fr_prev;
4757 before->fr_prev = frp;
4758 if (frp->fr_prev != NULL)
4759 frp->fr_prev->fr_next = frp;
4760 else
4761 frp->fr_parent->fr_child = frp;
4762}
4763
4764/*
4765 * Remove a frame from a frame list.
4766 */
4767 static void
4768frame_remove(frp)
4769 frame_T *frp;
4770{
4771 if (frp->fr_prev != NULL)
4772 frp->fr_prev->fr_next = frp->fr_next;
4773 else
4774 frp->fr_parent->fr_child = frp->fr_next;
4775 if (frp->fr_next != NULL)
4776 frp->fr_next->fr_prev = frp->fr_prev;
4777}
4778
4779#endif /* FEAT_WINDOWS */
4780
4781/*
4782 * Allocate w_lines[] for window "wp".
4783 * Return FAIL for failure, OK for success.
4784 */
4785 int
4786win_alloc_lines(wp)
4787 win_T *wp;
4788{
4789 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004790 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 if (wp->w_lines == NULL)
4792 return FAIL;
4793 return OK;
4794}
4795
4796/*
4797 * free lsize arrays for a window
4798 */
4799 void
4800win_free_lsize(wp)
4801 win_T *wp;
4802{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004803 /* TODO: why would wp be NULL here? */
4804 if (wp != NULL)
4805 {
4806 vim_free(wp->w_lines);
4807 wp->w_lines = NULL;
4808 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809}
4810
4811/*
4812 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004813 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 */
4815 void
4816shell_new_rows()
4817{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004818 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819
4820 if (firstwin == NULL) /* not initialized yet */
4821 return;
4822#ifdef FEAT_WINDOWS
4823 if (h < frame_minheight(topframe, NULL))
4824 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004825
4826 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 * that doesn't result in the right height, forget about that option. */
4828 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004829 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 frame_new_height(topframe, h, FALSE, FALSE);
4831
4832 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4833#else
4834 if (h < 1)
4835 h = 1;
4836 win_new_height(firstwin, h);
4837#endif
4838 compute_cmdrow();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004839#ifdef FEAT_WINDOWS
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004840 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004841#endif
4842
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843#if 0
4844 /* Disabled: don't want making the screen smaller make a window larger. */
4845 if (p_ea)
4846 win_equal(curwin, FALSE, 'v');
4847#endif
4848}
4849
4850#if defined(FEAT_VERTSPLIT) || defined(PROTO)
4851/*
4852 * Called from win_new_shellsize() after Columns changed.
4853 */
4854 void
4855shell_new_columns()
4856{
4857 if (firstwin == NULL) /* not initialized yet */
4858 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004859
4860 /* First try setting the widths of windows with 'winfixwidth'. If that
4861 * doesn't result in the right width, forget about that option. */
4862 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004863 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004864 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4865
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4867#if 0
4868 /* Disabled: don't want making the screen smaller make a window larger. */
4869 if (p_ea)
4870 win_equal(curwin, FALSE, 'h');
4871#endif
4872}
4873#endif
4874
4875#if defined(FEAT_CMDWIN) || defined(PROTO)
4876/*
4877 * Save the size of all windows in "gap".
4878 */
4879 void
4880win_size_save(gap)
4881 garray_T *gap;
4882
4883{
4884 win_T *wp;
4885
4886 ga_init2(gap, (int)sizeof(int), 1);
4887 if (ga_grow(gap, win_count() * 2) == OK)
4888 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4889 {
4890 ((int *)gap->ga_data)[gap->ga_len++] =
4891 wp->w_width + wp->w_vsep_width;
4892 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4893 }
4894}
4895
4896/*
4897 * Restore window sizes, but only if the number of windows is still the same.
4898 * Does not free the growarray.
4899 */
4900 void
4901win_size_restore(gap)
4902 garray_T *gap;
4903{
4904 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004905 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906
4907 if (win_count() * 2 == gap->ga_len)
4908 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004909 /* The order matters, because frames contain other frames, but it's
4910 * difficult to get right. The easy way out is to do it twice. */
4911 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004913 i = 0;
4914 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4915 {
4916 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4917 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 }
4920 /* recompute the window positions */
4921 (void)win_comp_pos();
4922 }
4923}
4924#endif /* FEAT_CMDWIN */
4925
4926#if defined(FEAT_WINDOWS) || defined(PROTO)
4927/*
4928 * Update the position for all windows, using the width and height of the
4929 * frames.
4930 * Returns the row just after the last window.
4931 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004932 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933win_comp_pos()
4934{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004935 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 int col = 0;
4937
4938 frame_comp_pos(topframe, &row, &col);
4939 return row;
4940}
4941
4942/*
4943 * Update the position of the windows in frame "topfrp", using the width and
4944 * height of the frames.
4945 * "*row" and "*col" are the top-left position of the frame. They are updated
4946 * to the bottom-right position plus one.
4947 */
4948 static void
4949frame_comp_pos(topfrp, row, col)
4950 frame_T *topfrp;
4951 int *row;
4952 int *col;
4953{
4954 win_T *wp;
4955 frame_T *frp;
4956#ifdef FEAT_VERTSPLIT
4957 int startcol;
4958 int startrow;
4959#endif
4960
4961 wp = topfrp->fr_win;
4962 if (wp != NULL)
4963 {
4964 if (wp->w_winrow != *row
4965#ifdef FEAT_VERTSPLIT
4966 || wp->w_wincol != *col
4967#endif
4968 )
4969 {
4970 /* position changed, redraw */
4971 wp->w_winrow = *row;
4972#ifdef FEAT_VERTSPLIT
4973 wp->w_wincol = *col;
4974#endif
4975 redraw_win_later(wp, NOT_VALID);
4976 wp->w_redr_status = TRUE;
4977 }
4978 *row += wp->w_height + wp->w_status_height;
4979#ifdef FEAT_VERTSPLIT
4980 *col += wp->w_width + wp->w_vsep_width;
4981#endif
4982 }
4983 else
4984 {
4985#ifdef FEAT_VERTSPLIT
4986 startrow = *row;
4987 startcol = *col;
4988#endif
4989 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
4990 {
4991#ifdef FEAT_VERTSPLIT
4992 if (topfrp->fr_layout == FR_ROW)
4993 *row = startrow; /* all frames are at the same row */
4994 else
4995 *col = startcol; /* all frames are at the same col */
4996#endif
4997 frame_comp_pos(frp, row, col);
4998 }
4999 }
5000}
5001
5002#endif /* FEAT_WINDOWS */
5003
5004/*
5005 * Set current window height and take care of repositioning other windows to
5006 * fit around it.
5007 */
5008 void
5009win_setheight(height)
5010 int height;
5011{
5012 win_setheight_win(height, curwin);
5013}
5014
5015/*
5016 * Set the window height of window "win" and take care of repositioning other
5017 * windows to fit around it.
5018 */
5019 void
5020win_setheight_win(height, win)
5021 int height;
5022 win_T *win;
5023{
5024 int row;
5025
5026 if (win == curwin)
5027 {
5028 /* Always keep current window at least one line high, even when
5029 * 'winminheight' is zero. */
5030#ifdef FEAT_WINDOWS
5031 if (height < p_wmh)
5032 height = p_wmh;
5033#endif
5034 if (height == 0)
5035 height = 1;
5036 }
5037
5038#ifdef FEAT_WINDOWS
5039 frame_setheight(win->w_frame, height + win->w_status_height);
5040
5041 /* recompute the window positions */
5042 row = win_comp_pos();
5043#else
5044 if (height > topframe->fr_height)
5045 height = topframe->fr_height;
5046 win->w_height = height;
5047 row = height;
5048#endif
5049
5050 /*
5051 * If there is extra space created between the last window and the command
5052 * line, clear it.
5053 */
5054 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
5055 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5056 cmdline_row = row;
5057 msg_row = row;
5058 msg_col = 0;
5059
5060 redraw_all_later(NOT_VALID);
5061}
5062
5063#if defined(FEAT_WINDOWS) || defined(PROTO)
5064
5065/*
5066 * Set the height of a frame to "height" and take care that all frames and
5067 * windows inside it are resized. Also resize frames on the left and right if
5068 * the are in the same FR_ROW frame.
5069 *
5070 * Strategy:
5071 * If the frame is part of a FR_COL frame, try fitting the frame in that
5072 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5073 * go to containing frames to resize them and make room.
5074 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5075 * Check for the minimal height of the FR_ROW frame.
5076 * At the top level we can also use change the command line height.
5077 */
5078 static void
5079frame_setheight(curfrp, height)
5080 frame_T *curfrp;
5081 int height;
5082{
5083 int room; /* total number of lines available */
5084 int take; /* number of lines taken from other windows */
5085 int room_cmdline; /* lines available from cmdline */
5086 int run;
5087 frame_T *frp;
5088 int h;
5089 int room_reserved;
5090
5091 /* If the height already is the desired value, nothing to do. */
5092 if (curfrp->fr_height == height)
5093 return;
5094
5095 if (curfrp->fr_parent == NULL)
5096 {
5097 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005098 if (height > ROWS_AVAIL)
5099 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 if (height > 0)
5101 frame_new_height(curfrp, height, FALSE, FALSE);
5102 }
5103 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5104 {
5105 /* Row of frames: Also need to resize frames left and right of this
5106 * one. First check for the minimal height of these. */
5107 h = frame_minheight(curfrp->fr_parent, NULL);
5108 if (height < h)
5109 height = h;
5110 frame_setheight(curfrp->fr_parent, height);
5111 }
5112 else
5113 {
5114 /*
5115 * Column of frames: try to change only frames in this column.
5116 */
5117#ifdef FEAT_VERTSPLIT
5118 /*
5119 * Do this twice:
5120 * 1: compute room available, if it's not enough try resizing the
5121 * containing frame.
5122 * 2: compute the room available and adjust the height to it.
5123 * Try not to reduce the height of a window with 'winfixheight' set.
5124 */
5125 for (run = 1; run <= 2; ++run)
5126#else
5127 for (;;)
5128#endif
5129 {
5130 room = 0;
5131 room_reserved = 0;
5132 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5133 frp = frp->fr_next)
5134 {
5135 if (frp != curfrp
5136 && frp->fr_win != NULL
5137 && frp->fr_win->w_p_wfh)
5138 room_reserved += frp->fr_height;
5139 room += frp->fr_height;
5140 if (frp != curfrp)
5141 room -= frame_minheight(frp, NULL);
5142 }
5143#ifdef FEAT_VERTSPLIT
5144 if (curfrp->fr_width != Columns)
5145 room_cmdline = 0;
5146 else
5147#endif
5148 {
5149 room_cmdline = Rows - p_ch - (lastwin->w_winrow
5150 + lastwin->w_height + lastwin->w_status_height);
5151 if (room_cmdline < 0)
5152 room_cmdline = 0;
5153 }
5154
5155 if (height <= room + room_cmdline)
5156 break;
5157#ifdef FEAT_VERTSPLIT
5158 if (run == 2 || curfrp->fr_width == Columns)
5159#endif
5160 {
5161 if (height > room + room_cmdline)
5162 height = room + room_cmdline;
5163 break;
5164 }
5165#ifdef FEAT_VERTSPLIT
5166 frame_setheight(curfrp->fr_parent, height
5167 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
5168#endif
5169 /*NOTREACHED*/
5170 }
5171
5172 /*
5173 * Compute the number of lines we will take from others frames (can be
5174 * negative!).
5175 */
5176 take = height - curfrp->fr_height;
5177
5178 /* If there is not enough room, also reduce the height of a window
5179 * with 'winfixheight' set. */
5180 if (height > room + room_cmdline - room_reserved)
5181 room_reserved = room + room_cmdline - height;
5182 /* If there is only a 'winfixheight' window and making the
5183 * window smaller, need to make the other window taller. */
5184 if (take < 0 && room - curfrp->fr_height < room_reserved)
5185 room_reserved = 0;
5186
5187 if (take > 0 && room_cmdline > 0)
5188 {
5189 /* use lines from cmdline first */
5190 if (take < room_cmdline)
5191 room_cmdline = take;
5192 take -= room_cmdline;
5193 topframe->fr_height += room_cmdline;
5194 }
5195
5196 /*
5197 * set the current frame to the new height
5198 */
5199 frame_new_height(curfrp, height, FALSE, FALSE);
5200
5201 /*
5202 * First take lines from the frames after the current frame. If
5203 * that is not enough, takes lines from frames above the current
5204 * frame.
5205 */
5206 for (run = 0; run < 2; ++run)
5207 {
5208 if (run == 0)
5209 frp = curfrp->fr_next; /* 1st run: start with next window */
5210 else
5211 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5212 while (frp != NULL && take != 0)
5213 {
5214 h = frame_minheight(frp, NULL);
5215 if (room_reserved > 0
5216 && frp->fr_win != NULL
5217 && frp->fr_win->w_p_wfh)
5218 {
5219 if (room_reserved >= frp->fr_height)
5220 room_reserved -= frp->fr_height;
5221 else
5222 {
5223 if (frp->fr_height - room_reserved > take)
5224 room_reserved = frp->fr_height - take;
5225 take -= frp->fr_height - room_reserved;
5226 frame_new_height(frp, room_reserved, FALSE, FALSE);
5227 room_reserved = 0;
5228 }
5229 }
5230 else
5231 {
5232 if (frp->fr_height - take < h)
5233 {
5234 take -= frp->fr_height - h;
5235 frame_new_height(frp, h, FALSE, FALSE);
5236 }
5237 else
5238 {
5239 frame_new_height(frp, frp->fr_height - take,
5240 FALSE, FALSE);
5241 take = 0;
5242 }
5243 }
5244 if (run == 0)
5245 frp = frp->fr_next;
5246 else
5247 frp = frp->fr_prev;
5248 }
5249 }
5250 }
5251}
5252
5253#if defined(FEAT_VERTSPLIT) || defined(PROTO)
5254/*
5255 * Set current window width and take care of repositioning other windows to
5256 * fit around it.
5257 */
5258 void
5259win_setwidth(width)
5260 int width;
5261{
5262 win_setwidth_win(width, curwin);
5263}
5264
5265 void
5266win_setwidth_win(width, wp)
5267 int width;
5268 win_T *wp;
5269{
5270 /* Always keep current window at least one column wide, even when
5271 * 'winminwidth' is zero. */
5272 if (wp == curwin)
5273 {
5274 if (width < p_wmw)
5275 width = p_wmw;
5276 if (width == 0)
5277 width = 1;
5278 }
5279
5280 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5281
5282 /* recompute the window positions */
5283 (void)win_comp_pos();
5284
5285 redraw_all_later(NOT_VALID);
5286}
5287
5288/*
5289 * Set the width of a frame to "width" and take care that all frames and
5290 * windows inside it are resized. Also resize frames above and below if the
5291 * are in the same FR_ROW frame.
5292 *
5293 * Strategy is similar to frame_setheight().
5294 */
5295 static void
5296frame_setwidth(curfrp, width)
5297 frame_T *curfrp;
5298 int width;
5299{
5300 int room; /* total number of lines available */
5301 int take; /* number of lines taken from other windows */
5302 int run;
5303 frame_T *frp;
5304 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005305 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306
5307 /* If the width already is the desired value, nothing to do. */
5308 if (curfrp->fr_width == width)
5309 return;
5310
5311 if (curfrp->fr_parent == NULL)
5312 /* topframe: can't change width */
5313 return;
5314
5315 if (curfrp->fr_parent->fr_layout == FR_COL)
5316 {
5317 /* Column of frames: Also need to resize frames above and below of
5318 * this one. First check for the minimal width of these. */
5319 w = frame_minwidth(curfrp->fr_parent, NULL);
5320 if (width < w)
5321 width = w;
5322 frame_setwidth(curfrp->fr_parent, width);
5323 }
5324 else
5325 {
5326 /*
5327 * Row of frames: try to change only frames in this row.
5328 *
5329 * Do this twice:
5330 * 1: compute room available, if it's not enough try resizing the
5331 * containing frame.
5332 * 2: compute the room available and adjust the width to it.
5333 */
5334 for (run = 1; run <= 2; ++run)
5335 {
5336 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005337 room_reserved = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5339 frp = frp->fr_next)
5340 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005341 if (frp != curfrp
5342 && frp->fr_win != NULL
5343 && frp->fr_win->w_p_wfw)
5344 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 room += frp->fr_width;
5346 if (frp != curfrp)
5347 room -= frame_minwidth(frp, NULL);
5348 }
5349
5350 if (width <= room)
5351 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005352 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 {
5354 if (width > room)
5355 width = room;
5356 break;
5357 }
5358 frame_setwidth(curfrp->fr_parent, width
5359 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5360 }
5361
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 /*
5363 * Compute the number of lines we will take from others frames (can be
5364 * negative!).
5365 */
5366 take = width - curfrp->fr_width;
5367
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005368 /* If there is not enough room, also reduce the width of a window
5369 * with 'winfixwidth' set. */
5370 if (width > room - room_reserved)
5371 room_reserved = room - width;
5372 /* If there is only a 'winfixwidth' window and making the
5373 * window smaller, need to make the other window narrower. */
5374 if (take < 0 && room - curfrp->fr_width < room_reserved)
5375 room_reserved = 0;
5376
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 /*
5378 * set the current frame to the new width
5379 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005380 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381
5382 /*
5383 * First take lines from the frames right of the current frame. If
5384 * that is not enough, takes lines from frames left of the current
5385 * frame.
5386 */
5387 for (run = 0; run < 2; ++run)
5388 {
5389 if (run == 0)
5390 frp = curfrp->fr_next; /* 1st run: start with next window */
5391 else
5392 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5393 while (frp != NULL && take != 0)
5394 {
5395 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005396 if (room_reserved > 0
5397 && frp->fr_win != NULL
5398 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005400 if (room_reserved >= frp->fr_width)
5401 room_reserved -= frp->fr_width;
5402 else
5403 {
5404 if (frp->fr_width - room_reserved > take)
5405 room_reserved = frp->fr_width - take;
5406 take -= frp->fr_width - room_reserved;
5407 frame_new_width(frp, room_reserved, FALSE, FALSE);
5408 room_reserved = 0;
5409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 }
5411 else
5412 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005413 if (frp->fr_width - take < w)
5414 {
5415 take -= frp->fr_width - w;
5416 frame_new_width(frp, w, FALSE, FALSE);
5417 }
5418 else
5419 {
5420 frame_new_width(frp, frp->fr_width - take,
5421 FALSE, FALSE);
5422 take = 0;
5423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 }
5425 if (run == 0)
5426 frp = frp->fr_next;
5427 else
5428 frp = frp->fr_prev;
5429 }
5430 }
5431 }
5432}
5433#endif /* FEAT_VERTSPLIT */
5434
5435/*
5436 * Check 'winminheight' for a valid value.
5437 */
5438 void
5439win_setminheight()
5440{
5441 int room;
5442 int first = TRUE;
5443 win_T *wp;
5444
5445 /* loop until there is a 'winminheight' that is possible */
5446 while (p_wmh > 0)
5447 {
5448 /* TODO: handle vertical splits */
5449 room = -p_wh;
5450 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5451 room += wp->w_height - p_wmh;
5452 if (room >= 0)
5453 break;
5454 --p_wmh;
5455 if (first)
5456 {
5457 EMSG(_(e_noroom));
5458 first = FALSE;
5459 }
5460 }
5461}
5462
5463#ifdef FEAT_MOUSE
5464
5465/*
5466 * Status line of dragwin is dragged "offset" lines down (negative is up).
5467 */
5468 void
5469win_drag_status_line(dragwin, offset)
5470 win_T *dragwin;
5471 int offset;
5472{
5473 frame_T *curfr;
5474 frame_T *fr;
5475 int room;
5476 int row;
5477 int up; /* if TRUE, drag status line up, otherwise down */
5478 int n;
5479
5480 fr = dragwin->w_frame;
5481 curfr = fr;
5482 if (fr != topframe) /* more than one window */
5483 {
5484 fr = fr->fr_parent;
5485 /* When the parent frame is not a column of frames, its parent should
5486 * be. */
5487 if (fr->fr_layout != FR_COL)
5488 {
5489 curfr = fr;
5490 if (fr != topframe) /* only a row of windows, may drag statusline */
5491 fr = fr->fr_parent;
5492 }
5493 }
5494
5495 /* If this is the last frame in a column, may want to resize the parent
5496 * frame instead (go two up to skip a row of frames). */
5497 while (curfr != topframe && curfr->fr_next == NULL)
5498 {
5499 if (fr != topframe)
5500 fr = fr->fr_parent;
5501 curfr = fr;
5502 if (fr != topframe)
5503 fr = fr->fr_parent;
5504 }
5505
5506 if (offset < 0) /* drag up */
5507 {
5508 up = TRUE;
5509 offset = -offset;
5510 /* sum up the room of the current frame and above it */
5511 if (fr == curfr)
5512 {
5513 /* only one window */
5514 room = fr->fr_height - frame_minheight(fr, NULL);
5515 }
5516 else
5517 {
5518 room = 0;
5519 for (fr = fr->fr_child; ; fr = fr->fr_next)
5520 {
5521 room += fr->fr_height - frame_minheight(fr, NULL);
5522 if (fr == curfr)
5523 break;
5524 }
5525 }
5526 fr = curfr->fr_next; /* put fr at frame that grows */
5527 }
5528 else /* drag down */
5529 {
5530 up = FALSE;
5531 /*
5532 * Only dragging the last status line can reduce p_ch.
5533 */
5534 room = Rows - cmdline_row;
5535 if (curfr->fr_next == NULL)
5536 room -= 1;
5537 else
5538 room -= p_ch;
5539 if (room < 0)
5540 room = 0;
5541 /* sum up the room of frames below of the current one */
5542 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5543 room += fr->fr_height - frame_minheight(fr, NULL);
5544 fr = curfr; /* put fr at window that grows */
5545 }
5546
5547 if (room < offset) /* Not enough room */
5548 offset = room; /* Move as far as we can */
5549 if (offset <= 0)
5550 return;
5551
5552 /*
5553 * Grow frame fr by "offset" lines.
5554 * Doesn't happen when dragging the last status line up.
5555 */
5556 if (fr != NULL)
5557 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5558
5559 if (up)
5560 fr = curfr; /* current frame gets smaller */
5561 else
5562 fr = curfr->fr_next; /* next frame gets smaller */
5563
5564 /*
5565 * Now make the other frames smaller.
5566 */
5567 while (fr != NULL && offset > 0)
5568 {
5569 n = frame_minheight(fr, NULL);
5570 if (fr->fr_height - offset <= n)
5571 {
5572 offset -= fr->fr_height - n;
5573 frame_new_height(fr, n, !up, FALSE);
5574 }
5575 else
5576 {
5577 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5578 break;
5579 }
5580 if (up)
5581 fr = fr->fr_prev;
5582 else
5583 fr = fr->fr_next;
5584 }
5585 row = win_comp_pos();
5586 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5587 cmdline_row = row;
5588 p_ch = Rows - cmdline_row;
5589 if (p_ch < 1)
5590 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005591 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005592 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 showmode();
5594}
5595
5596#ifdef FEAT_VERTSPLIT
5597/*
5598 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5599 */
5600 void
5601win_drag_vsep_line(dragwin, offset)
5602 win_T *dragwin;
5603 int offset;
5604{
5605 frame_T *curfr;
5606 frame_T *fr;
5607 int room;
5608 int left; /* if TRUE, drag separator line left, otherwise right */
5609 int n;
5610
5611 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005612 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 return;
5614 curfr = fr;
5615 fr = fr->fr_parent;
5616 /* When the parent frame is not a row of frames, its parent should be. */
5617 if (fr->fr_layout != FR_ROW)
5618 {
5619 if (fr == topframe) /* only a column of windows (cannot happen?) */
5620 return;
5621 curfr = fr;
5622 fr = fr->fr_parent;
5623 }
5624
5625 /* If this is the last frame in a row, may want to resize a parent
5626 * frame instead. */
5627 while (curfr->fr_next == NULL)
5628 {
5629 if (fr == topframe)
5630 break;
5631 curfr = fr;
5632 fr = fr->fr_parent;
5633 if (fr != topframe)
5634 {
5635 curfr = fr;
5636 fr = fr->fr_parent;
5637 }
5638 }
5639
5640 if (offset < 0) /* drag left */
5641 {
5642 left = TRUE;
5643 offset = -offset;
5644 /* sum up the room of the current frame and left of it */
5645 room = 0;
5646 for (fr = fr->fr_child; ; fr = fr->fr_next)
5647 {
5648 room += fr->fr_width - frame_minwidth(fr, NULL);
5649 if (fr == curfr)
5650 break;
5651 }
5652 fr = curfr->fr_next; /* put fr at frame that grows */
5653 }
5654 else /* drag right */
5655 {
5656 left = FALSE;
5657 /* sum up the room of frames right of the current one */
5658 room = 0;
5659 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5660 room += fr->fr_width - frame_minwidth(fr, NULL);
5661 fr = curfr; /* put fr at window that grows */
5662 }
5663
5664 if (room < offset) /* Not enough room */
5665 offset = room; /* Move as far as we can */
5666 if (offset <= 0) /* No room at all, quit. */
5667 return;
5668
5669 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005670 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671
5672 /* shrink other frames: current and at the left or at the right */
5673 if (left)
5674 fr = curfr; /* current frame gets smaller */
5675 else
5676 fr = curfr->fr_next; /* next frame gets smaller */
5677
5678 while (fr != NULL && offset > 0)
5679 {
5680 n = frame_minwidth(fr, NULL);
5681 if (fr->fr_width - offset <= n)
5682 {
5683 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005684 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 }
5686 else
5687 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005688 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 break;
5690 }
5691 if (left)
5692 fr = fr->fr_prev;
5693 else
5694 fr = fr->fr_next;
5695 }
5696 (void)win_comp_pos();
5697 redraw_all_later(NOT_VALID);
5698}
5699#endif /* FEAT_VERTSPLIT */
5700#endif /* FEAT_MOUSE */
5701
5702#endif /* FEAT_WINDOWS */
5703
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005704#define FRACTION_MULT 16384L
5705
5706/*
5707 * Set wp->w_fraction for the current w_wrow and w_height.
5708 */
5709 static void
5710set_fraction(wp)
5711 win_T *wp;
5712{
5713 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005714 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005715}
5716
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717/*
5718 * Set the height of a window.
5719 * This takes care of the things inside the window, not what happens to the
5720 * window position, the frame or to other windows.
5721 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005722 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723win_new_height(wp, height)
5724 win_T *wp;
5725 int height;
5726{
5727 linenr_T lnum;
5728 int sline, line_size;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005729 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730
5731 /* Don't want a negative height. Happens when splitting a tiny window.
5732 * Will equalize heights soon to fix it. */
5733 if (height < 0)
5734 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005735 if (wp->w_height == height)
5736 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005738 if (wp->w_height > 0)
5739 {
5740 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005741 /* w_wrow needs to be valid. When setting 'laststatus' this may
5742 * call win_new_height() recursively. */
5743 validate_cursor();
5744 if (wp->w_height != prev_height)
5745 return; /* Recursive call already changed the size, bail out here
5746 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005747 if (wp->w_wrow != wp->w_prev_fraction_row)
5748 set_fraction(wp);
5749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750
5751 wp->w_height = height;
5752 wp->w_skipcol = 0;
5753
5754 /* Don't change w_topline when height is zero. Don't set w_topline when
5755 * 'scrollbind' is set and this isn't the current window. */
5756 if (height > 0
5757#ifdef FEAT_SCROLLBIND
5758 && (!wp->w_p_scb || wp == curwin)
5759#endif
5760 )
5761 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005762 /*
5763 * Find a value for w_topline that shows the cursor at the same
5764 * relative position in the window as before (more or less).
5765 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 lnum = wp->w_cursor.lnum;
5767 if (lnum < 1) /* can happen when starting up */
5768 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005769 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5770 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5772 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005773
5774 if (sline >= 0)
5775 {
5776 /* Make sure the whole cursor line is visible, if possible. */
5777 int rows = plines_win(wp, lnum, FALSE);
5778
5779 if (sline > wp->w_height - rows)
5780 {
5781 sline = wp->w_height - rows;
5782 wp->w_wrow -= rows - line_size;
5783 }
5784 }
5785
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 if (sline < 0)
5787 {
5788 /*
5789 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005790 * Make cursor line the first line in the window. If not enough
5791 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 */
5793 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005794 if (wp->w_wrow >= wp->w_height
5795 && (W_WIDTH(wp) - win_col_off(wp)) > 0)
5796 {
5797 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp);
5798 --wp->w_wrow;
5799 while (wp->w_wrow >= wp->w_height)
5800 {
5801 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp)
5802 + win_col_off2(wp);
5803 --wp->w_wrow;
5804 }
5805 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005806 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005808 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005810 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 {
5812#ifdef FEAT_FOLDING
5813 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5814 if (lnum == 1)
5815 {
5816 /* first line in buffer is folded */
5817 line_size = 1;
5818 --sline;
5819 break;
5820 }
5821#endif
5822 --lnum;
5823#ifdef FEAT_DIFF
5824 if (lnum == wp->w_topline)
5825 line_size = plines_win_nofill(wp, lnum, TRUE)
5826 + wp->w_topfill;
5827 else
5828#endif
5829 line_size = plines_win(wp, lnum, TRUE);
5830 sline -= line_size;
5831 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005832
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 if (sline < 0)
5834 {
5835 /*
5836 * Line we want at top would go off top of screen. Use next
5837 * line instead.
5838 */
5839#ifdef FEAT_FOLDING
5840 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5841#endif
5842 lnum++;
5843 wp->w_wrow -= line_size + sline;
5844 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005845 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 {
5847 /* First line of file reached, use that as topline. */
5848 lnum = 1;
5849 wp->w_wrow -= sline;
5850 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005851
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005852 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 }
5855
5856 if (wp == curwin)
5857 {
5858 if (p_so)
5859 update_topline();
5860 curs_columns(FALSE); /* validate w_wrow */
5861 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005862 if (prev_height > 0)
5863 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864
5865 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005866 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867#ifdef FEAT_WINDOWS
5868 wp->w_redr_status = TRUE;
5869#endif
5870 invalidate_botline_win(wp);
5871}
5872
5873#ifdef FEAT_VERTSPLIT
5874/*
5875 * Set the width of a window.
5876 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005877 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878win_new_width(wp, width)
5879 win_T *wp;
5880 int width;
5881{
5882 wp->w_width = width;
5883 wp->w_lines_valid = 0;
5884 changed_line_abv_curs_win(wp);
5885 invalidate_botline_win(wp);
5886 if (wp == curwin)
5887 {
5888 update_topline();
5889 curs_columns(TRUE); /* validate w_wrow */
5890 }
5891 redraw_win_later(wp, NOT_VALID);
5892 wp->w_redr_status = TRUE;
5893}
5894#endif
5895
5896 void
5897win_comp_scroll(wp)
5898 win_T *wp;
5899{
5900 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5901 if (wp->w_p_scr == 0)
5902 wp->w_p_scr = 1;
5903}
5904
5905/*
5906 * command_height: called whenever p_ch has been changed
5907 */
5908 void
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005909command_height()
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910{
5911#ifdef FEAT_WINDOWS
5912 int h;
5913 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005914 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005916 /* Use the value of p_ch that we remembered. This is needed for when the
5917 * GUI starts up, we can't be sure in what order things happen. And when
5918 * p_ch was changed in another tab page. */
5919 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005920
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921 /* Find bottom frame with width of screen. */
5922 frp = lastwin->w_frame;
5923# ifdef FEAT_VERTSPLIT
5924 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5925 frp = frp->fr_parent;
5926# endif
5927
5928 /* Avoid changing the height of a window with 'winfixheight' set. */
5929 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5930 && frp->fr_win->w_p_wfh)
5931 frp = frp->fr_prev;
5932
5933 if (starting != NO_SCREEN)
5934 {
5935 cmdline_row = Rows - p_ch;
5936
5937 if (p_ch > old_p_ch) /* p_ch got bigger */
5938 {
5939 while (p_ch > old_p_ch)
5940 {
5941 if (frp == NULL)
5942 {
5943 EMSG(_(e_noroom));
5944 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005945 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 cmdline_row = Rows - p_ch;
5947 break;
5948 }
5949 h = frp->fr_height - frame_minheight(frp, NULL);
5950 if (h > p_ch - old_p_ch)
5951 h = p_ch - old_p_ch;
5952 old_p_ch += h;
5953 frame_add_height(frp, -h);
5954 frp = frp->fr_prev;
5955 }
5956
5957 /* Recompute window positions. */
5958 (void)win_comp_pos();
5959
5960 /* clear the lines added to cmdline */
5961 if (full_screen)
5962 screen_fill((int)(cmdline_row), (int)Rows, 0,
5963 (int)Columns, ' ', ' ', 0);
5964 msg_row = cmdline_row;
5965 redraw_cmdline = TRUE;
5966 return;
5967 }
5968
5969 if (msg_row < cmdline_row)
5970 msg_row = cmdline_row;
5971 redraw_cmdline = TRUE;
5972 }
5973 frame_add_height(frp, (int)(old_p_ch - p_ch));
5974
5975 /* Recompute window positions. */
5976 if (frp != lastwin->w_frame)
5977 (void)win_comp_pos();
5978#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 cmdline_row = Rows - p_ch;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005980 win_setheight(cmdline_row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981#endif
5982}
5983
5984#if defined(FEAT_WINDOWS) || defined(PROTO)
5985/*
5986 * Resize frame "frp" to be "n" lines higher (negative for less high).
5987 * Also resize the frames it is contained in.
5988 */
5989 static void
5990frame_add_height(frp, n)
5991 frame_T *frp;
5992 int n;
5993{
5994 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5995 for (;;)
5996 {
5997 frp = frp->fr_parent;
5998 if (frp == NULL)
5999 break;
6000 frp->fr_height += n;
6001 }
6002}
6003
6004/*
6005 * Add or remove a status line for the bottom window(s), according to the
6006 * value of 'laststatus'.
6007 */
6008 void
6009last_status(morewin)
6010 int morewin; /* pretend there are two or more windows */
6011{
6012 /* Don't make a difference between horizontal or vertical split. */
6013 last_status_rec(topframe, (p_ls == 2
6014 || (p_ls == 1 && (morewin || lastwin != firstwin))));
6015}
6016
6017 static void
6018last_status_rec(fr, statusline)
6019 frame_T *fr;
6020 int statusline;
6021{
6022 frame_T *fp;
6023 win_T *wp;
6024
6025 if (fr->fr_layout == FR_LEAF)
6026 {
6027 wp = fr->fr_win;
6028 if (wp->w_status_height != 0 && !statusline)
6029 {
6030 /* remove status line */
6031 win_new_height(wp, wp->w_height + 1);
6032 wp->w_status_height = 0;
6033 comp_col();
6034 }
6035 else if (wp->w_status_height == 0 && statusline)
6036 {
6037 /* Find a frame to take a line from. */
6038 fp = fr;
6039 while (fp->fr_height <= frame_minheight(fp, NULL))
6040 {
6041 if (fp == topframe)
6042 {
6043 EMSG(_(e_noroom));
6044 return;
6045 }
6046 /* In a column of frames: go to frame above. If already at
6047 * the top or in a row of frames: go to parent. */
6048 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
6049 fp = fp->fr_prev;
6050 else
6051 fp = fp->fr_parent;
6052 }
6053 wp->w_status_height = 1;
6054 if (fp != fr)
6055 {
6056 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
6057 frame_fix_height(wp);
6058 (void)win_comp_pos();
6059 }
6060 else
6061 win_new_height(wp, wp->w_height - 1);
6062 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006063 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 }
6065 }
6066#ifdef FEAT_VERTSPLIT
6067 else if (fr->fr_layout == FR_ROW)
6068 {
6069 /* vertically split windows, set status line for each one */
6070 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
6071 last_status_rec(fp, statusline);
6072 }
6073#endif
6074 else
6075 {
6076 /* horizontally split window, set status line for last one */
6077 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
6078 ;
6079 last_status_rec(fp, statusline);
6080 }
6081}
6082
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006083/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006084 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006085 */
6086 int
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006087tabline_height()
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006088{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006089#ifdef FEAT_GUI_TABLINE
6090 /* When the GUI has the tabline then this always returns zero. */
6091 if (gui_use_tabline())
6092 return 0;
6093#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006094 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006095 {
6096 case 0: return 0;
6097 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6098 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006099 return 1;
6100}
6101
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102#endif /* FEAT_WINDOWS */
6103
6104#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6105/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006106 * Get the file name at the cursor.
6107 * If Visual mode is active, use the selected text if it's in one line.
6108 * Returns the name in allocated memory, NULL for failure.
6109 */
6110 char_u *
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006111grab_file_name(count, file_lnum)
6112 long count;
6113 linenr_T *file_lnum;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006114{
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006115 if (VIsual_active)
6116 {
6117 int len;
6118 char_u *ptr;
6119
6120 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6121 return NULL;
6122 return find_file_name_in_path(ptr, len,
6123 FNAME_MESS|FNAME_EXP|FNAME_REL, count, curbuf->b_ffname);
6124 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006125 return file_name_at_cursor(FNAME_MESS|FNAME_HYP|FNAME_EXP|FNAME_REL, count,
6126 file_lnum);
6127
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006128}
6129
6130/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 * Return the file name under or after the cursor.
6132 *
6133 * The 'path' option is searched if the file name is not absolute.
6134 * The string returned has been alloc'ed and should be freed by the caller.
6135 * NULL is returned if the file name or file is not found.
6136 *
6137 * options:
6138 * FNAME_MESS give error messages
6139 * FNAME_EXP expand to path
6140 * FNAME_HYP check for hypertext link
6141 * FNAME_INCL apply "includeexpr"
6142 */
6143 char_u *
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006144file_name_at_cursor(options, count, file_lnum)
6145 int options;
6146 long count;
6147 linenr_T *file_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148{
6149 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006150 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6151 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152}
6153
6154/*
6155 * Return the name of the file under or after ptr[col].
6156 * Otherwise like file_name_at_cursor().
6157 */
6158 char_u *
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006159file_name_in_line(line, col, options, count, rel_fname, file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 char_u *line;
6161 int col;
6162 int options;
6163 long count;
6164 char_u *rel_fname; /* file we are searching relative to */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006165 linenr_T *file_lnum; /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166{
6167 char_u *ptr;
6168 int len;
6169
6170 /*
6171 * search forward for what could be the start of a file name
6172 */
6173 ptr = line + col;
6174 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar0dd492f2005-06-22 22:25:07 +00006175 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 if (*ptr == NUL) /* nothing found */
6177 {
6178 if (options & FNAME_MESS)
6179 EMSG(_("E446: No file name under cursor"));
6180 return NULL;
6181 }
6182
6183 /*
6184 * Search backward for first char of the file name.
6185 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6186 */
6187 while (ptr > line)
6188 {
6189#ifdef FEAT_MBYTE
6190 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6191 ptr -= len + 1;
6192 else
6193#endif
6194 if (vim_isfilec(ptr[-1])
6195 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6196 --ptr;
6197 else
6198 break;
6199 }
6200
6201 /*
6202 * Search forward for the last char of the file name.
6203 * Also allow "://" when ':' is not in 'isfname'.
6204 */
6205 len = 0;
6206 while (vim_isfilec(ptr[len])
6207 || ((options & FNAME_HYP) && path_is_url(ptr + len)))
6208#ifdef FEAT_MBYTE
6209 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006210 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 else
6212#endif
6213 ++len;
6214
6215 /*
6216 * If there is trailing punctuation, remove it.
6217 * But don't remove "..", could be a directory name.
6218 */
6219 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6220 && ptr[len - 2] != '.')
6221 --len;
6222
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006223 if (file_lnum != NULL)
6224 {
6225 char_u *p;
6226
6227 /* Get the number after the file name and a separator character */
6228 p = ptr + len;
6229 p = skipwhite(p);
6230 if (*p != NUL)
6231 {
6232 if (!isdigit(*p))
6233 ++p; /* skip the separator */
6234 p = skipwhite(p);
6235 if (isdigit(*p))
6236 *file_lnum = (int)getdigits(&p);
6237 }
6238 }
6239
Bram Moolenaar071d4272004-06-13 20:20:40 +00006240 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6241}
6242
6243# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6244static char_u *eval_includeexpr __ARGS((char_u *ptr, int len));
6245
6246 static char_u *
6247eval_includeexpr(ptr, len)
6248 char_u *ptr;
6249 int len;
6250{
6251 char_u *res;
6252
6253 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006254 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006255 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256 set_vim_var_string(VV_FNAME, NULL, 0);
6257 return res;
6258}
6259#endif
6260
6261/*
6262 * Return the name of the file ptr[len] in 'path'.
6263 * Otherwise like file_name_at_cursor().
6264 */
6265 char_u *
6266find_file_name_in_path(ptr, len, options, count, rel_fname)
6267 char_u *ptr;
6268 int len;
6269 int options;
6270 long count;
6271 char_u *rel_fname; /* file we are searching relative to */
6272{
6273 char_u *file_name;
6274 int c;
6275# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6276 char_u *tofree = NULL;
6277
6278 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6279 {
6280 tofree = eval_includeexpr(ptr, len);
6281 if (tofree != NULL)
6282 {
6283 ptr = tofree;
6284 len = (int)STRLEN(ptr);
6285 }
6286 }
6287# endif
6288
6289 if (options & FNAME_EXP)
6290 {
6291 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6292 TRUE, rel_fname);
6293
6294# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6295 /*
6296 * If the file could not be found in a normal way, try applying
6297 * 'includeexpr' (unless done already).
6298 */
6299 if (file_name == NULL
6300 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6301 {
6302 tofree = eval_includeexpr(ptr, len);
6303 if (tofree != NULL)
6304 {
6305 ptr = tofree;
6306 len = (int)STRLEN(ptr);
6307 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6308 TRUE, rel_fname);
6309 }
6310 }
6311# endif
6312 if (file_name == NULL && (options & FNAME_MESS))
6313 {
6314 c = ptr[len];
6315 ptr[len] = NUL;
6316 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6317 ptr[len] = c;
6318 }
6319
6320 /* Repeat finding the file "count" times. This matters when it
6321 * appears several times in the path. */
6322 while (file_name != NULL && --count > 0)
6323 {
6324 vim_free(file_name);
6325 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6326 }
6327 }
6328 else
6329 file_name = vim_strnsave(ptr, len);
6330
6331# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6332 vim_free(tofree);
6333# endif
6334
6335 return file_name;
6336}
6337#endif /* FEAT_SEARCHPATH */
6338
6339/*
6340 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6341 * Also check for ":\\", which MS Internet Explorer accepts, return
6342 * URL_BACKSLASH.
6343 */
6344 static int
6345path_is_url(p)
6346 char_u *p;
6347{
6348 if (STRNCMP(p, "://", (size_t)3) == 0)
6349 return URL_SLASH;
6350 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6351 return URL_BACKSLASH;
6352 return 0;
6353}
6354
6355/*
6356 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6357 * Return URL_BACKSLASH for "name:\\".
6358 * Return zero otherwise.
6359 */
6360 int
6361path_with_url(fname)
6362 char_u *fname;
6363{
6364 char_u *p;
6365
6366 for (p = fname; isalpha(*p); ++p)
6367 ;
6368 return path_is_url(p);
6369}
6370
6371/*
6372 * Return TRUE if "name" is a full (absolute) path name or URL.
6373 */
6374 int
6375vim_isAbsName(name)
6376 char_u *name;
6377{
6378 return (path_with_url(name) != 0 || mch_isFullName(name));
6379}
6380
6381/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006382 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 *
6384 * return FAIL for failure, OK otherwise
6385 */
6386 int
6387vim_FullName(fname, buf, len, force)
6388 char_u *fname, *buf;
6389 int len;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006390 int force; /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391{
6392 int retval = OK;
6393 int url;
6394
6395 *buf = NUL;
6396 if (fname == NULL)
6397 return FAIL;
6398
6399 url = path_with_url(fname);
6400 if (!url)
6401 retval = mch_FullName(fname, buf, len, force);
6402 if (url || retval == FAIL)
6403 {
6404 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006405 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 }
6407#if defined(MACOS_CLASSIC) || defined(OS2) || defined(MSDOS) || defined(MSWIN)
6408 slash_adjust(buf);
6409#endif
6410 return retval;
6411}
6412
6413/*
6414 * Return the minimal number of rows that is needed on the screen to display
6415 * the current number of windows.
6416 */
6417 int
6418min_rows()
6419{
6420 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006421#ifdef FEAT_WINDOWS
6422 tabpage_T *tp;
6423 int n;
6424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425
6426 if (firstwin == NULL) /* not initialized yet */
6427 return MIN_LINES;
6428
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006430 total = 0;
6431 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6432 {
6433 n = frame_minheight(tp->tp_topframe, NULL);
6434 if (total < n)
6435 total = n;
6436 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006437 total += tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438#else
Bram Moolenaarf740b292006-02-16 22:11:02 +00006439 total = 1; /* at least one window should have a line! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006441 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 return total;
6443}
6444
6445/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006446 * Return TRUE if there is only one window (in the current tab page), not
6447 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006448 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 */
6450 int
6451only_one_window()
6452{
6453#ifdef FEAT_WINDOWS
6454 int count = 0;
6455 win_T *wp;
6456
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006457 /* If there is another tab page there always is another window. */
6458 if (first_tabpage->tp_next != NULL)
6459 return FALSE;
6460
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 for (wp = firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006462 if (wp->w_buffer != NULL
6463 && (!((wp->w_buffer->b_help && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464# ifdef FEAT_QUICKFIX
6465 || wp->w_p_pvw
6466# endif
6467 ) || wp == curwin)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006468# ifdef FEAT_AUTOCMD
6469 && wp != aucmd_win
6470# endif
6471 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 ++count;
6473 return (count <= 1);
6474#else
6475 return TRUE;
6476#endif
6477}
6478
6479#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO)
6480/*
6481 * Correct the cursor line number in other windows. Used after changing the
6482 * current buffer, and before applying autocommands.
6483 * When "do_curwin" is TRUE, also check current window.
6484 */
6485 void
6486check_lnums(do_curwin)
6487 int do_curwin;
6488{
6489 win_T *wp;
6490
6491#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006492 tabpage_T *tp;
6493
6494 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
6496#else
6497 wp = curwin;
6498 if (do_curwin)
6499#endif
6500 {
6501 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6502 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6503 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6504 wp->w_topline = curbuf->b_ml.ml_line_count;
6505 }
6506}
6507#endif
6508
6509#if defined(FEAT_WINDOWS) || defined(PROTO)
6510
6511/*
6512 * A snapshot of the window sizes, to restore them after closing the help
6513 * window.
6514 * Only these fields are used:
6515 * fr_layout
6516 * fr_width
6517 * fr_height
6518 * fr_next
6519 * fr_child
6520 * fr_win (only valid for the old curwin, NULL otherwise)
6521 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522
6523/*
6524 * Create a snapshot of the current frame sizes.
6525 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006526 void
6527make_snapshot(idx)
6528 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006530 clear_snapshot(curtab, idx);
6531 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532}
6533
6534 static void
6535make_snapshot_rec(fr, frp)
6536 frame_T *fr;
6537 frame_T **frp;
6538{
6539 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6540 if (*frp == NULL)
6541 return;
6542 (*frp)->fr_layout = fr->fr_layout;
6543# ifdef FEAT_VERTSPLIT
6544 (*frp)->fr_width = fr->fr_width;
6545# endif
6546 (*frp)->fr_height = fr->fr_height;
6547 if (fr->fr_next != NULL)
6548 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6549 if (fr->fr_child != NULL)
6550 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6551 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6552 (*frp)->fr_win = curwin;
6553}
6554
6555/*
6556 * Remove any existing snapshot.
6557 */
6558 static void
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006559clear_snapshot(tp, idx)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006560 tabpage_T *tp;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006561 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006563 clear_snapshot_rec(tp->tp_snapshot[idx]);
6564 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565}
6566
6567 static void
6568clear_snapshot_rec(fr)
6569 frame_T *fr;
6570{
6571 if (fr != NULL)
6572 {
6573 clear_snapshot_rec(fr->fr_next);
6574 clear_snapshot_rec(fr->fr_child);
6575 vim_free(fr);
6576 }
6577}
6578
6579/*
6580 * Restore a previously created snapshot, if there is any.
6581 * This is only done if the screen size didn't change and the window layout is
6582 * still the same.
6583 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006584 void
6585restore_snapshot(idx, close_curwin)
6586 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 int close_curwin; /* closing current window */
6588{
6589 win_T *wp;
6590
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006591 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592# ifdef FEAT_VERTSPLIT
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006593 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar071d4272004-06-13 20:20:40 +00006594# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006595 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6596 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006598 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 win_comp_pos();
6600 if (wp != NULL && close_curwin)
6601 win_goto(wp);
6602 redraw_all_later(CLEAR);
6603 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006604 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605}
6606
6607/*
6608 * Check if frames "sn" and "fr" have the same layout, same following frames
6609 * and same children.
6610 */
6611 static int
6612check_snapshot_rec(sn, fr)
6613 frame_T *sn;
6614 frame_T *fr;
6615{
6616 if (sn->fr_layout != fr->fr_layout
6617 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6618 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6619 || (sn->fr_next != NULL
6620 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6621 || (sn->fr_child != NULL
6622 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL))
6623 return FAIL;
6624 return OK;
6625}
6626
6627/*
6628 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6629 * following frames and children.
6630 * Returns a pointer to the old current window, or NULL.
6631 */
6632 static win_T *
6633restore_snapshot_rec(sn, fr)
6634 frame_T *sn;
6635 frame_T *fr;
6636{
6637 win_T *wp = NULL;
6638 win_T *wp2;
6639
6640 fr->fr_height = sn->fr_height;
6641# ifdef FEAT_VERTSPLIT
6642 fr->fr_width = sn->fr_width;
6643# endif
6644 if (fr->fr_layout == FR_LEAF)
6645 {
6646 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
6647# ifdef FEAT_VERTSPLIT
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006648 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649# endif
6650 wp = sn->fr_win;
6651 }
6652 if (sn->fr_next != NULL)
6653 {
6654 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6655 if (wp2 != NULL)
6656 wp = wp2;
6657 }
6658 if (sn->fr_child != NULL)
6659 {
6660 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6661 if (wp2 != NULL)
6662 wp = wp2;
6663 }
6664 return wp;
6665}
6666
6667#endif
6668
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006669#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6670 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006671/*
6672 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006673 * restore_win() MUST be called to undo, also when FAIL is returned.
6674 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006675 * When "no_display" is TRUE the display won't be affected, no redraw is
6676 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006677 * Returns FAIL if switching to "win" failed.
6678 */
6679 int
Bram Moolenaard6949742013-06-16 14:18:28 +02006680switch_win(save_curwin, save_curtab, win, tp, no_display)
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02006681 win_T **save_curwin UNUSED;
6682 tabpage_T **save_curtab UNUSED;
6683 win_T *win UNUSED;
6684 tabpage_T *tp UNUSED;
6685 int no_display UNUSED;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006686{
6687# ifdef FEAT_AUTOCMD
6688 block_autocmds();
6689# endif
6690# ifdef FEAT_WINDOWS
6691 *save_curwin = curwin;
6692 if (tp != NULL)
6693 {
6694 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006695 if (no_display)
6696 {
6697 curtab->tp_firstwin = firstwin;
6698 curtab->tp_lastwin = lastwin;
6699 curtab = tp;
6700 firstwin = curtab->tp_firstwin;
6701 lastwin = curtab->tp_lastwin;
6702 }
6703 else
6704 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006705 }
6706 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006707 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006708 curwin = win;
6709 curbuf = curwin->w_buffer;
6710# endif
6711 return OK;
6712}
6713
6714/*
6715 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006716 * When "no_display" is TRUE the display won't be affected, no redraw is
6717 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006718 */
6719 void
Bram Moolenaard6949742013-06-16 14:18:28 +02006720restore_win(save_curwin, save_curtab, no_display)
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02006721 win_T *save_curwin UNUSED;
6722 tabpage_T *save_curtab UNUSED;
6723 int no_display UNUSED;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006724{
6725# ifdef FEAT_WINDOWS
6726 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006727 {
6728 if (no_display)
6729 {
6730 curtab->tp_firstwin = firstwin;
6731 curtab->tp_lastwin = lastwin;
6732 curtab = save_curtab;
6733 firstwin = curtab->tp_firstwin;
6734 lastwin = curtab->tp_lastwin;
6735 }
6736 else
6737 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6738 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006739 if (win_valid(save_curwin))
6740 {
6741 curwin = save_curwin;
6742 curbuf = curwin->w_buffer;
6743 }
6744# endif
6745# ifdef FEAT_AUTOCMD
6746 unblock_autocmds();
6747# endif
6748}
6749
6750/*
6751 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6752 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6753 */
6754 void
6755switch_buffer(save_curbuf, buf)
6756 buf_T *buf;
6757 buf_T **save_curbuf;
6758{
6759# ifdef FEAT_AUTOCMD
6760 block_autocmds();
6761# endif
6762 *save_curbuf = curbuf;
6763 --curbuf->b_nwindows;
6764 curbuf = buf;
6765 curwin->w_buffer = buf;
6766 ++curbuf->b_nwindows;
6767}
6768
6769/*
6770 * Restore the current buffer after using switch_buffer().
6771 */
6772 void
6773restore_buffer(save_curbuf)
6774 buf_T *save_curbuf;
6775{
6776# ifdef FEAT_AUTOCMD
6777 unblock_autocmds();
6778# endif
6779 /* Check for valid buffer, just in case. */
6780 if (buf_valid(save_curbuf))
6781 {
6782 --curbuf->b_nwindows;
6783 curwin->w_buffer = save_curbuf;
6784 curbuf = save_curbuf;
6785 ++curbuf->b_nwindows;
6786 }
6787}
6788#endif
6789
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790#if (defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
6791/*
6792 * Return TRUE if there is any vertically split window.
6793 */
6794 int
6795win_hasvertsplit()
6796{
6797 frame_T *fr;
6798
6799 if (topframe->fr_layout == FR_ROW)
6800 return TRUE;
6801
6802 if (topframe->fr_layout == FR_COL)
6803 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6804 if (fr->fr_layout == FR_ROW)
6805 return TRUE;
6806
6807 return FALSE;
6808}
6809#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006810
6811#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6812/*
6813 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006814 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006815 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6816 * If no particular ID is desired, -1 must be specified for 'id'.
6817 * Return ID of added match, -1 on failure.
6818 */
6819 int
Bram Moolenaarb3414592014-06-17 17:48:32 +02006820match_add(wp, grp, pat, prio, id, pos_list)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006821 win_T *wp;
6822 char_u *grp;
6823 char_u *pat;
6824 int prio;
6825 int id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006826 list_T *pos_list;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006827{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006828 matchitem_T *cur;
6829 matchitem_T *prev;
6830 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006831 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006832 regprog_T *regprog = NULL;
6833 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006834
Bram Moolenaarb3414592014-06-17 17:48:32 +02006835 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006836 return -1;
6837 if (id < -1 || id == 0)
6838 {
6839 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id);
6840 return -1;
6841 }
6842 if (id != -1)
6843 {
6844 cur = wp->w_match_head;
6845 while (cur != NULL)
6846 {
6847 if (cur->id == id)
6848 {
6849 EMSGN("E801: ID already taken: %ld", id);
6850 return -1;
6851 }
6852 cur = cur->next;
6853 }
6854 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006855 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006856 {
6857 EMSG2(_(e_nogroup), grp);
6858 return -1;
6859 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006860 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006861 {
6862 EMSG2(_(e_invarg2), pat);
6863 return -1;
6864 }
6865
6866 /* Find available match ID. */
6867 while (id == -1)
6868 {
6869 cur = wp->w_match_head;
6870 while (cur != NULL && cur->id != wp->w_next_match_id)
6871 cur = cur->next;
6872 if (cur == NULL)
6873 id = wp->w_next_match_id;
6874 wp->w_next_match_id++;
6875 }
6876
6877 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006878 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006879 m->id = id;
6880 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006881 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006882 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006883 m->match.regprog = regprog;
6884 m->match.rmm_ic = FALSE;
6885 m->match.rmm_maxcol = 0;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006886
Bram Moolenaarb3414592014-06-17 17:48:32 +02006887 /* Set up position matches */
6888 if (pos_list != NULL)
6889 {
6890 linenr_T toplnum = 0;
6891 linenr_T botlnum = 0;
6892 listitem_T *li;
6893 int i;
6894
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006895 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006896 i++, li = li->li_next)
6897 {
6898 linenr_T lnum = 0;
6899 colnr_T col = 0;
6900 int len = 1;
6901 list_T *subl;
6902 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006903 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006904
Bram Moolenaarb3414592014-06-17 17:48:32 +02006905 if (li->li_tv.v_type == VAR_LIST)
6906 {
6907 subl = li->li_tv.vval.v_list;
6908 if (subl == NULL)
6909 goto fail;
6910 subli = subl->lv_first;
6911 if (subli == NULL)
6912 goto fail;
6913 lnum = get_tv_number_chk(&subli->li_tv, &error);
6914 if (error == TRUE)
6915 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006916 if (lnum == 0)
6917 {
6918 --i;
6919 continue;
6920 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006921 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006922 subli = subli->li_next;
6923 if (subli != NULL)
6924 {
6925 col = get_tv_number_chk(&subli->li_tv, &error);
6926 if (error == TRUE)
6927 goto fail;
6928 subli = subli->li_next;
6929 if (subli != NULL)
6930 {
6931 len = get_tv_number_chk(&subli->li_tv, &error);
6932 if (error == TRUE)
6933 goto fail;
6934 }
6935 }
6936 m->pos.pos[i].col = col;
6937 m->pos.pos[i].len = len;
6938 }
6939 else if (li->li_tv.v_type == VAR_NUMBER)
6940 {
6941 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006942 {
6943 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006944 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006945 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006946 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6947 m->pos.pos[i].col = 0;
6948 m->pos.pos[i].len = 0;
6949 }
6950 else
6951 {
6952 EMSG(_("List or number required"));
6953 goto fail;
6954 }
6955 if (toplnum == 0 || lnum < toplnum)
6956 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006957 if (botlnum == 0 || lnum >= botlnum)
6958 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006959 }
6960
6961 /* Calculate top and bottom lines for redrawing area */
6962 if (toplnum != 0)
6963 {
6964 if (wp->w_buffer->b_mod_set)
6965 {
6966 if (wp->w_buffer->b_mod_top > toplnum)
6967 wp->w_buffer->b_mod_top = toplnum;
6968 if (wp->w_buffer->b_mod_bot < botlnum)
6969 wp->w_buffer->b_mod_bot = botlnum;
6970 }
6971 else
6972 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006973 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006974 wp->w_buffer->b_mod_top = toplnum;
6975 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006976 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006977 }
6978 m->pos.toplnum = toplnum;
6979 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006980 rtype = VALID;
6981 }
6982 }
6983
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006984 /* Insert new match. The match list is in ascending order with regard to
6985 * the match priorities. */
6986 cur = wp->w_match_head;
6987 prev = cur;
6988 while (cur != NULL && prio >= cur->priority)
6989 {
6990 prev = cur;
6991 cur = cur->next;
6992 }
6993 if (cur == prev)
6994 wp->w_match_head = m;
6995 else
6996 prev->next = m;
6997 m->next = cur;
6998
Bram Moolenaarb3414592014-06-17 17:48:32 +02006999 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007000 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02007001
7002fail:
7003 vim_free(m);
7004 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007005}
7006
7007/*
7008 * Delete match with ID 'id' in the match list of window 'wp'.
7009 * Print error messages if 'perr' is TRUE.
7010 */
7011 int
7012match_delete(wp, id, perr)
7013 win_T *wp;
7014 int id;
7015 int perr;
7016{
Bram Moolenaarb3414592014-06-17 17:48:32 +02007017 matchitem_T *cur = wp->w_match_head;
7018 matchitem_T *prev = cur;
7019 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007020
7021 if (id < 1)
7022 {
7023 if (perr == TRUE)
7024 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)",
7025 id);
7026 return -1;
7027 }
7028 while (cur != NULL && cur->id != id)
7029 {
7030 prev = cur;
7031 cur = cur->next;
7032 }
7033 if (cur == NULL)
7034 {
7035 if (perr == TRUE)
7036 EMSGN("E803: ID not found: %ld", id);
7037 return -1;
7038 }
7039 if (cur == prev)
7040 wp->w_match_head = cur->next;
7041 else
7042 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02007043 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007044 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02007045 if (cur->pos.toplnum != 0)
7046 {
7047 if (wp->w_buffer->b_mod_set)
7048 {
7049 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
7050 wp->w_buffer->b_mod_top = cur->pos.toplnum;
7051 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
7052 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
7053 }
7054 else
7055 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02007056 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02007057 wp->w_buffer->b_mod_top = cur->pos.toplnum;
7058 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02007059 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02007060 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02007061 rtype = VALID;
7062 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007063 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02007064 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007065 return 0;
7066}
7067
7068/*
7069 * Delete all matches in the match list of window 'wp'.
7070 */
7071 void
7072clear_matches(wp)
7073 win_T *wp;
7074{
7075 matchitem_T *m;
7076
7077 while (wp->w_match_head != NULL)
7078 {
7079 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02007080 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007081 vim_free(wp->w_match_head->pattern);
7082 vim_free(wp->w_match_head);
7083 wp->w_match_head = m;
7084 }
7085 redraw_later(SOME_VALID);
7086}
7087
7088/*
7089 * Get match from ID 'id' in window 'wp'.
7090 * Return NULL if match not found.
7091 */
7092 matchitem_T *
7093get_match(wp, id)
7094 win_T *wp;
7095 int id;
7096{
7097 matchitem_T *cur = wp->w_match_head;
7098
7099 while (cur != NULL && cur->id != id)
7100 cur = cur->next;
7101 return cur;
7102}
7103#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02007104
7105#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
7106 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007107get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02007108{
7109 int i = 1;
7110 win_T *w;
7111
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007112 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02007113 ++i;
7114
7115 if (w == NULL)
7116 return 0;
7117 else
7118 return i;
7119}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007120
7121 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007122get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007123{
7124 int i = 1;
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007125# ifdef FEAT_WINDOWS
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007126 tabpage_T *t;
7127
7128 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7129 ++i;
7130
7131 if (t == NULL)
7132 return 0;
7133 else
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007134# endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007135 return i;
7136}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007137#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007138
Bram Moolenaarf0327f62013-06-28 20:16:55 +02007139#ifdef FEAT_WINDOWS
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007140/*
7141 * Return TRUE if "topfrp" and its children are at the right height.
7142 */
7143 static int
7144frame_check_height(topfrp, height)
7145 frame_T *topfrp;
7146 int height;
7147{
7148 frame_T *frp;
7149
7150 if (topfrp->fr_height != height)
7151 return FALSE;
7152
7153 if (topfrp->fr_layout == FR_ROW)
7154 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7155 if (frp->fr_height != height)
7156 return FALSE;
7157
7158 return TRUE;
7159}
Bram Moolenaarf0327f62013-06-28 20:16:55 +02007160#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007161
7162#ifdef FEAT_VERTSPLIT
7163/*
7164 * Return TRUE if "topfrp" and its children are at the right width.
7165 */
7166 static int
7167frame_check_width(topfrp, width)
7168 frame_T *topfrp;
7169 int width;
7170{
7171 frame_T *frp;
7172
7173 if (topfrp->fr_width != width)
7174 return FALSE;
7175
7176 if (topfrp->fr_layout == FR_COL)
7177 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7178 if (frp->fr_width != width)
7179 return FALSE;
7180
7181 return TRUE;
7182}
7183#endif
7184