blob: 7bc3b9f48985e800d46cc6dae630c61d8d879c5e [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read a list of people who contributed.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010012static int path_is_url(char_u *p);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010013static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum);
14static void win_init(win_T *newp, win_T *oldp, int flags);
15static void win_init_some(win_T *newp, win_T *oldp);
16static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
17static void frame_setheight(frame_T *curfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010018static void frame_setwidth(frame_T *curfrp, int width);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static void win_exchange(long);
20static void win_rotate(int, int);
21static void win_totop(int size, int flags);
22static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
23static int last_window(void);
24static int close_last_window_tabpage(win_T *win, int free_buf, tabpage_T *prev_curtab);
25static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
26static frame_T *win_altframe(win_T *win, tabpage_T *tp);
27static tabpage_T *alt_tabpage(void);
28static win_T *frame2win(frame_T *frp);
29static int frame_has_win(frame_T *frp, win_T *wp);
30static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
31static int frame_fixed_height(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010032static int frame_fixed_width(frame_T *frp);
33static void frame_add_statusline(frame_T *frp);
34static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
35static void frame_add_vsep(frame_T *frp);
36static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
37static void frame_fix_width(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010038static int win_alloc_firstwin(win_T *oldwin);
39static void new_frame(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010040static tabpage_T *alloc_tabpage(void);
41static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds);
42static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds);
43static void frame_fix_height(win_T *wp);
44static int frame_minheight(frame_T *topfrp, win_T *next_curwin);
Bram Moolenaarc917da42016-07-19 22:31:36 +020045static void win_enter_ext(win_T *wp, int undo_sync, int no_curwin, int trigger_new_autocmds, int trigger_enter_autocmds, int trigger_leave_autocmds);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010046static void win_free(win_T *wp, tabpage_T *tp);
47static void frame_append(frame_T *after, frame_T *frp);
48static void frame_insert(frame_T *before, frame_T *frp);
49static void frame_remove(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010050static void win_goto_ver(int up, long count);
51static void win_goto_hor(int left, long count);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010052static void frame_add_height(frame_T *frp, int n);
53static void last_status_rec(frame_T *fr, int statusline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010055static void make_snapshot_rec(frame_T *fr, frame_T **frp);
56static void clear_snapshot(tabpage_T *tp, int idx);
57static void clear_snapshot_rec(frame_T *fr);
58static int check_snapshot_rec(frame_T *sn, frame_T *fr);
59static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010061static int frame_check_height(frame_T *topfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010062static int frame_check_width(frame_T *topfrp, int width);
Bram Moolenaarb893ac22013-06-26 14:04:47 +020063
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010064static win_T *win_alloc(win_T *after, int hidden);
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
66#define URL_SLASH 1 /* path_is_url() has found "://" */
67#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
68
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000069#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
Bram Moolenaar4033c552017-09-16 20:54:51 +020071#define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000072
73static char *m_onlyone = N_("Already only one window");
74
Bram Moolenaar071d4272004-06-13 20:20:40 +000075/*
76 * all CTRL-W window commands are handled here, called from normal_cmd().
77 */
78 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010079do_window(
80 int nchar,
81 long Prenum,
82 int xchar) /* extra char from ":wincmd gx" or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000083{
84 long Prenum1;
85 win_T *wp;
86#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
87 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +000088 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90#ifdef FEAT_FIND_ID
91 int type = FIND_DEFINE;
92 int len;
93#endif
94 char_u cbuf[40];
95
96 if (Prenum == 0)
97 Prenum1 = 1;
98 else
99 Prenum1 = Prenum;
100
101#ifdef FEAT_CMDWIN
102# define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
103#else
104# define CHECK_CMDWIN
105#endif
106
107 switch (nchar)
108 {
109/* split current window in two parts, horizontally */
110 case 'S':
111 case Ctrl_S:
112 case 's':
113 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000115#ifdef FEAT_QUICKFIX
116 /* When splitting the quickfix window open a new buffer in it,
117 * don't replicate the quickfix buffer. */
118 if (bt_quickfix(curbuf))
119 goto newwindow;
120#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121#ifdef FEAT_GUI
122 need_mouse_correct = TRUE;
123#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200124 (void)win_split((int)Prenum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 break;
126
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127/* split current window in two parts, vertically */
128 case Ctrl_V:
129 case 'v':
130 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100132#ifdef FEAT_QUICKFIX
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000133 /* When splitting the quickfix window open a new buffer in it,
134 * don't replicate the quickfix buffer. */
135 if (bt_quickfix(curbuf))
136 goto newwindow;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100137#endif
138#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100140#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200141 (void)win_split((int)Prenum, WSP_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
144/* split current window and edit alternate file */
145 case Ctrl_HAT:
146 case '^':
147 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100149 cmd_with_count("split #", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 do_cmdline_cmd(cbuf);
151 break;
152
153/* open new window */
154 case Ctrl_N:
155 case 'n':
156 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000158#ifdef FEAT_QUICKFIX
159newwindow:
160#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000162 /* window height */
163 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 else
165 cbuf[0] = NUL;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100166#if defined(FEAT_QUICKFIX)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000167 if (nchar == 'v' || nchar == Ctrl_V)
168 STRCAT(cbuf, "v");
169#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170 STRCAT(cbuf, "new");
171 do_cmdline_cmd(cbuf);
172 break;
173
174/* quit current window */
175 case Ctrl_Q:
176 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100178 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100179 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 break;
181
182/* close current window */
183 case Ctrl_C:
184 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100186 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100187 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 break;
189
Bram Moolenaar4033c552017-09-16 20:54:51 +0200190#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191/* close preview window */
192 case Ctrl_Z:
193 case 'z':
194 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 do_cmdline_cmd((char_u *)"pclose");
197 break;
198
199/* cursor to preview window */
200 case 'P':
Bram Moolenaar29323592016-07-24 22:04:11 +0200201 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 if (wp->w_p_pvw)
203 break;
204 if (wp == NULL)
205 EMSG(_("E441: There is no preview window"));
206 else
207 win_goto(wp);
208 break;
209#endif
210
211/* close all but current window */
212 case Ctrl_O:
213 case 'o':
214 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100216 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100217 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 break;
219
220/* cursor to next window with wrap around */
221 case Ctrl_W:
222 case 'w':
223/* cursor to previous window with wrap around */
224 case 'W':
225 CHECK_CMDWIN
Bram Moolenaara1f4cb92016-11-06 15:25:42 +0100226 if (ONE_WINDOW && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 beep_flush();
228 else
229 {
230 if (Prenum) /* go to specified window */
231 {
232 for (wp = firstwin; --Prenum > 0; )
233 {
234 if (wp->w_next == NULL)
235 break;
236 else
237 wp = wp->w_next;
238 }
239 }
240 else
241 {
242 if (nchar == 'W') /* go to previous window */
243 {
244 wp = curwin->w_prev;
245 if (wp == NULL)
246 wp = lastwin; /* wrap around */
247 }
248 else /* go to next window */
249 {
250 wp = curwin->w_next;
251 if (wp == NULL)
252 wp = firstwin; /* wrap around */
253 }
254 }
255 win_goto(wp);
256 }
257 break;
258
259/* cursor to window below */
260 case 'j':
261 case K_DOWN:
262 case Ctrl_J:
263 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 win_goto_ver(FALSE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 break;
266
267/* cursor to window above */
268 case 'k':
269 case K_UP:
270 case Ctrl_K:
271 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 win_goto_ver(TRUE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 break;
274
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275/* cursor to left window */
276 case 'h':
277 case K_LEFT:
278 case Ctrl_H:
279 case K_BS:
280 CHECK_CMDWIN
281 win_goto_hor(TRUE, Prenum1);
282 break;
283
284/* cursor to right window */
285 case 'l':
286 case K_RIGHT:
287 case Ctrl_L:
288 CHECK_CMDWIN
289 win_goto_hor(FALSE, Prenum1);
290 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000292/* move window to new tab page */
293 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000294 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000295 MSG(_(m_onlyone));
296 else
297 {
298 tabpage_T *oldtab = curtab;
299 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000300
301 /* First create a new tab with the window, then go back to
302 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000303 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000304 if (win_new_tabpage((int)Prenum) == OK
305 && valid_tabpage(oldtab))
306 {
307 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200308 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000309 if (curwin == wp)
310 win_close(curwin, FALSE);
311 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200312 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000313 }
314 }
315 break;
316
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317/* cursor to top-left window */
318 case 't':
319 case Ctrl_T:
320 win_goto(firstwin);
321 break;
322
323/* cursor to bottom-right window */
324 case 'b':
325 case Ctrl_B:
326 win_goto(lastwin);
327 break;
328
329/* cursor to last accessed (previous) window */
330 case 'p':
331 case Ctrl_P:
Bram Moolenaar3dda7db2016-04-03 21:22:58 +0200332 if (!win_valid(prevwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 beep_flush();
334 else
335 win_goto(prevwin);
336 break;
337
338/* exchange current and next window */
339 case 'x':
340 case Ctrl_X:
341 CHECK_CMDWIN
342 win_exchange(Prenum);
343 break;
344
345/* rotate windows downwards */
346 case Ctrl_R:
347 case 'r':
348 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 win_rotate(FALSE, (int)Prenum1); /* downwards */
351 break;
352
353/* rotate windows upwards */
354 case 'R':
355 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 win_rotate(TRUE, (int)Prenum1); /* upwards */
358 break;
359
360/* move window to the very top/bottom/left/right */
361 case 'K':
362 case 'J':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 case 'H':
364 case 'L':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 CHECK_CMDWIN
366 win_totop((int)Prenum,
367 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
368 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
369 break;
370
371/* make all windows the same height */
372 case '=':
373#ifdef FEAT_GUI
374 need_mouse_correct = TRUE;
375#endif
376 win_equal(NULL, FALSE, 'b');
377 break;
378
379/* increase current window height */
380 case '+':
381#ifdef FEAT_GUI
382 need_mouse_correct = TRUE;
383#endif
384 win_setheight(curwin->w_height + (int)Prenum1);
385 break;
386
387/* decrease current window height */
388 case '-':
389#ifdef FEAT_GUI
390 need_mouse_correct = TRUE;
391#endif
392 win_setheight(curwin->w_height - (int)Prenum1);
393 break;
394
395/* set current window height */
396 case Ctrl__:
397 case '_':
398#ifdef FEAT_GUI
399 need_mouse_correct = TRUE;
400#endif
401 win_setheight(Prenum ? (int)Prenum : 9999);
402 break;
403
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404/* increase current window width */
405 case '>':
406#ifdef FEAT_GUI
407 need_mouse_correct = TRUE;
408#endif
409 win_setwidth(curwin->w_width + (int)Prenum1);
410 break;
411
412/* decrease current window width */
413 case '<':
414#ifdef FEAT_GUI
415 need_mouse_correct = TRUE;
416#endif
417 win_setwidth(curwin->w_width - (int)Prenum1);
418 break;
419
420/* set current window width */
421 case '|':
422#ifdef FEAT_GUI
423 need_mouse_correct = TRUE;
424#endif
425 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
426 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427
428/* jump to tag and split window if tag exists (in preview window) */
429#if defined(FEAT_QUICKFIX)
430 case '}':
431 CHECK_CMDWIN
432 if (Prenum)
433 g_do_tagpreview = Prenum;
434 else
435 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200437 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 case ']':
439 case Ctrl_RSB:
440 CHECK_CMDWIN
Bram Moolenaard355c502014-09-23 13:48:43 +0200441 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 if (Prenum)
443 postponed_split = Prenum;
444 else
445 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200446#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200447 if (nchar != '}')
448 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450
Bram Moolenaard355c502014-09-23 13:48:43 +0200451 /* Execute the command right here, required when "wincmd ]"
452 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 do_nv_ident(Ctrl_RSB, NUL);
454 break;
455
456#ifdef FEAT_SEARCHPATH
457/* edit file name under cursor in a new window */
458 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000459 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000461wingotofile:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 CHECK_CMDWIN
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000463
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000464 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 if (ptr != NULL)
466 {
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200467 tabpage_T *oldtab = curtab;
468 win_T *oldwin = curwin;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000469# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000471# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 setpcmark();
473 if (win_split(0, 0) == OK)
474 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200475 RESET_BINDING(curwin);
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200476 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
477 ECMD_HIDE, NULL) == FAIL)
478 {
479 /* Failed to open the file, close the window
480 * opened for it. */
481 win_close(curwin, FALSE);
482 goto_tabpage_win(oldtab, oldwin);
483 }
484 else if (nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000485 {
486 curwin->w_cursor.lnum = lnum;
487 check_cursor_lnum();
488 beginline(BL_SOL | BL_FIX);
489 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 }
491 vim_free(ptr);
492 }
493 break;
494#endif
495
496#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000497/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 * new window -- webb
499 */
500 case 'i': /* Go to any match */
501 case Ctrl_I:
502 type = FIND_ANY;
503 /* FALLTHROUGH */
504 case 'd': /* Go to definition, using 'define' */
505 case Ctrl_D:
506 CHECK_CMDWIN
507 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
508 break;
509 find_pattern_in_path(ptr, 0, len, TRUE,
510 Prenum == 0 ? TRUE : FALSE, type,
511 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
512 curwin->w_set_curswant = TRUE;
513 break;
514#endif
515
Bram Moolenaar05159a02005-02-26 23:04:13 +0000516 case K_KENTER:
517 case CAR:
518#if defined(FEAT_QUICKFIX)
519 /*
520 * In a quickfix window a <CR> jumps to the error under the
521 * cursor in a new window.
522 */
523 if (bt_quickfix(curbuf))
524 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000525 sprintf((char *)cbuf, "split +%ld%s",
526 (long)curwin->w_cursor.lnum,
527 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000528 do_cmdline_cmd(cbuf);
529 }
530#endif
531 break;
532
533
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534/* CTRL-W g extended commands */
535 case 'g':
536 case Ctrl_G:
537 CHECK_CMDWIN
538#ifdef USE_ON_FLY_SCROLL
539 dont_scroll = TRUE; /* disallow scrolling here */
540#endif
541 ++no_mapping;
542 ++allow_keys; /* no mapping for xchar, but allow key codes */
543 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000544 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 --no_mapping;
547 --allow_keys;
548#ifdef FEAT_CMDL_INFO
549 (void)add_to_showcmd(xchar);
550#endif
551 switch (xchar)
552 {
553#if defined(FEAT_QUICKFIX)
554 case '}':
555 xchar = Ctrl_RSB;
556 if (Prenum)
557 g_do_tagpreview = Prenum;
558 else
559 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200561 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 case ']':
563 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200564 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 if (Prenum)
566 postponed_split = Prenum;
567 else
568 postponed_split = -1;
569
570 /* Execute the command right here, required when
571 * "wincmd g}" was used in a function. */
572 do_nv_ident('g', xchar);
573 break;
574
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000575#ifdef FEAT_SEARCHPATH
576 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000577 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100578 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000579 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000580 goto wingotofile;
581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 default:
583 beep_flush();
584 break;
585 }
586 break;
587
588 default: beep_flush();
589 break;
590 }
591}
592
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100593/*
594 * Figure out the address type for ":wnncmd".
595 */
596 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100597get_wincmd_addr_type(char_u *arg, exarg_T *eap)
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100598{
599 switch (*arg)
600 {
601 case 'S':
602 case Ctrl_S:
603 case 's':
604 case Ctrl_N:
605 case 'n':
606 case 'j':
607 case Ctrl_J:
608 case 'k':
609 case Ctrl_K:
610 case 'T':
611 case Ctrl_R:
612 case 'r':
613 case 'R':
614 case 'K':
615 case 'J':
616 case '+':
617 case '-':
618 case Ctrl__:
619 case '_':
620 case '|':
621 case ']':
622 case Ctrl_RSB:
623 case 'g':
624 case Ctrl_G:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100625 case Ctrl_V:
626 case 'v':
627 case 'h':
628 case Ctrl_H:
629 case 'l':
630 case Ctrl_L:
631 case 'H':
632 case 'L':
633 case '>':
634 case '<':
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100635#if defined(FEAT_QUICKFIX)
636 case '}':
637#endif
638#ifdef FEAT_SEARCHPATH
639 case 'f':
640 case 'F':
641 case Ctrl_F:
642#endif
643#ifdef FEAT_FIND_ID
644 case 'i':
645 case Ctrl_I:
646 case 'd':
647 case Ctrl_D:
648#endif
649 /* window size or any count */
650 eap->addr_type = ADDR_LINES;
651 break;
652
653 case Ctrl_HAT:
654 case '^':
655 /* buffer number */
656 eap->addr_type = ADDR_BUFFERS;
657 break;
658
659 case Ctrl_Q:
660 case 'q':
661 case Ctrl_C:
662 case 'c':
663 case Ctrl_O:
664 case 'o':
665 case Ctrl_W:
666 case 'w':
667 case 'W':
668 case 'x':
669 case Ctrl_X:
670 /* window number */
671 eap->addr_type = ADDR_WINDOWS;
672 break;
673
674#if defined(FEAT_QUICKFIX)
675 case Ctrl_Z:
676 case 'z':
677 case 'P':
678#endif
679 case 't':
680 case Ctrl_T:
681 case 'b':
682 case Ctrl_B:
683 case 'p':
684 case Ctrl_P:
685 case '=':
686 case CAR:
687 /* no count */
688 eap->addr_type = 0;
689 break;
690 }
691}
692
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100693 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100694cmd_with_count(
695 char *cmd,
696 char_u *bufp,
697 size_t bufsize,
698 long Prenum)
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100699{
700 size_t len = STRLEN(cmd);
701
702 STRCPY(bufp, cmd);
703 if (Prenum > 0)
704 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum);
705}
706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707/*
708 * split the current window, implements CTRL-W s and :split
709 *
710 * "size" is the height or width for the new window, 0 to use half of current
711 * height or width.
712 *
713 * "flags":
714 * WSP_ROOM: require enough room for new window
715 * WSP_VERT: vertical split.
716 * WSP_TOP: open window at the top-left of the shell (help window).
717 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
718 * WSP_HELP: creating the help window, keep layout snapshot
719 *
720 * return FAIL for failure, OK otherwise
721 */
722 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100723win_split(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000725 /* When the ":tab" modifier was used open a new tab page instead. */
726 if (may_open_tabpage() == OK)
727 return OK;
728
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 /* Add flags from ":vertical", ":topleft" and ":botright". */
730 flags |= cmdmod.split;
731 if ((flags & WSP_TOP) && (flags & WSP_BOT))
732 {
733 EMSG(_("E442: Can't split topleft and botright at the same time"));
734 return FAIL;
735 }
736
737 /* When creating the help window make a snapshot of the window layout.
738 * Otherwise clear the snapshot, it's now invalid. */
739 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000740 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000742 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
744 return win_split_ins(size, flags, NULL, 0);
745}
746
747/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100748 * When "new_wp" is NULL: split the current window in two.
749 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 * top/left/right/bottom.
751 * return FAIL for failure, OK otherwise
752 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000753 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100754win_split_ins(
755 int size,
756 int flags,
757 win_T *new_wp,
758 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100760 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 win_T *oldwin;
762 int new_size = size;
763 int i;
764 int need_status = 0;
765 int do_equal = FALSE;
766 int needed;
767 int available;
768 int oldwin_height = 0;
769 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200770 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200772 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200773 int wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774
775 if (flags & WSP_TOP)
776 oldwin = firstwin;
777 else if (flags & WSP_BOT)
778 oldwin = lastwin;
779 else
780 oldwin = curwin;
781
782 /* add a status line when p_ls == 1 and splitting the first window */
Bram Moolenaar459ca562016-11-10 18:16:33 +0100783 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100785 if (oldwin->w_height <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 {
787 EMSG(_(e_noroom));
788 return FAIL;
789 }
790 need_status = STATUS_HEIGHT;
791 }
792
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000793#ifdef FEAT_GUI
794 /* May be needed for the scrollbars that are going to change. */
795 if (gui.in_use)
796 out_flush();
797#endif
798
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 if (flags & WSP_VERT)
800 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200801 int wmw1;
802 int minwidth;
803
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805
806 /*
807 * Check if we are able to split the current window and compute its
808 * width.
809 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200810 /* Current window requires at least 1 space. */
811 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
812 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200814 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200815 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200817 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200819 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200821 else if (p_ea)
822 {
823 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
824 prevfrp = oldwin->w_frame;
825 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
826 frp = frp->fr_parent)
827 {
828 if (frp->fr_layout == FR_ROW)
829 for (frp2 = frp->fr_child; frp2 != NULL;
830 frp2 = frp2->fr_next)
831 if (frp2 != prevfrp)
832 minwidth += frame_minwidth(frp2, NOWIN);
833 prevfrp = frp;
834 }
835 available = topframe->fr_width;
836 needed += minwidth;
837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200839 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200840 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
841 available = oldwin->w_frame->fr_width;
842 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200843 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100844 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 {
846 EMSG(_(e_noroom));
847 return FAIL;
848 }
849 if (new_size == 0)
850 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200851 if (new_size > available - minwidth - 1)
852 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200853 if (new_size < wmw1)
854 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
856 /* if it doesn't fit in the current window, need win_equal() */
857 if (oldwin->w_width - new_size - 1 < p_wmw)
858 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000859
860 /* We don't like to take lines for the new window from a
861 * 'winfixwidth' window. Take them from a window to the left or right
Bram Moolenaar38e34832017-03-19 20:22:36 +0100862 * instead, if possible. Add one for the separator. */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000863 if (oldwin->w_p_wfw)
Bram Moolenaar38e34832017-03-19 20:22:36 +0100864 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000865
866 /* Only make all windows the same width if one of them (except oldwin)
867 * is wider than one of the split windows. */
868 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
869 && oldwin->w_frame->fr_parent != NULL)
870 {
871 frp = oldwin->w_frame->fr_parent->fr_child;
872 while (frp != NULL)
873 {
874 if (frp->fr_win != oldwin && frp->fr_win != NULL
875 && (frp->fr_win->w_width > new_size
876 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100877 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000878 {
879 do_equal = TRUE;
880 break;
881 }
882 frp = frp->fr_next;
883 }
884 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 }
886 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 {
888 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889
890 /*
891 * Check if we are able to split the current window and compute its
892 * height.
893 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200894 /* Current window requires at least 1 space. */
895 wmh1 = (p_wmh == 0 ? 1 : p_wmh);
896 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200898 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200899 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200901 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200903 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200905 else if (p_ea)
906 {
907 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
908 prevfrp = oldwin->w_frame;
909 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
910 frp = frp->fr_parent)
911 {
912 if (frp->fr_layout == FR_COL)
913 for (frp2 = frp->fr_child; frp2 != NULL;
914 frp2 = frp2->fr_next)
915 if (frp2 != prevfrp)
916 minheight += frame_minheight(frp2, NOWIN);
917 prevfrp = frp;
918 }
919 available = topframe->fr_height;
920 needed += minheight;
921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 else
923 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200924 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
925 available = oldwin->w_frame->fr_height;
926 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100928 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 {
930 EMSG(_(e_noroom));
931 return FAIL;
932 }
933 oldwin_height = oldwin->w_height;
934 if (need_status)
935 {
936 oldwin->w_status_height = STATUS_HEIGHT;
937 oldwin_height -= STATUS_HEIGHT;
938 }
939 if (new_size == 0)
940 new_size = oldwin_height / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200941 if (new_size > available - minheight - STATUS_HEIGHT)
942 new_size = available - minheight - STATUS_HEIGHT;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200943 if (new_size < wmh1)
944 new_size = wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946 /* if it doesn't fit in the current window, need win_equal() */
947 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
948 do_equal = TRUE;
949
950 /* We don't like to take lines for the new window from a
951 * 'winfixheight' window. Take them from a window above or below
952 * instead, if possible. */
953 if (oldwin->w_p_wfh)
954 {
955 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
956 oldwin);
957 oldwin_height = oldwin->w_height;
958 if (need_status)
959 oldwin_height -= STATUS_HEIGHT;
960 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000961
962 /* Only make all windows the same height if one of them (except oldwin)
963 * is higher than one of the split windows. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100964 if (!do_equal && p_ea && size == 0 && *p_ead != 'h'
Bram Moolenaar67f71312007-08-12 14:55:56 +0000965 && oldwin->w_frame->fr_parent != NULL)
966 {
967 frp = oldwin->w_frame->fr_parent->fr_child;
968 while (frp != NULL)
969 {
970 if (frp->fr_win != oldwin && frp->fr_win != NULL
971 && (frp->fr_win->w_height > new_size
972 || frp->fr_win->w_height > oldwin_height - new_size
973 - STATUS_HEIGHT))
974 {
975 do_equal = TRUE;
976 break;
977 }
978 frp = frp->fr_next;
979 }
980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 }
982
983 /*
984 * allocate new window structure and link it in the window list
985 */
986 if ((flags & WSP_TOP) == 0
987 && ((flags & WSP_BOT)
988 || (flags & WSP_BELOW)
989 || (!(flags & WSP_ABOVE)
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100990 && ( (flags & WSP_VERT) ? p_spr : p_sb))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 {
992 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100993 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000994 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 else
996 win_append(oldwin, wp);
997 }
998 else
999 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001000 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001001 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 else
1003 win_append(oldwin->w_prev, wp);
1004 }
1005
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001006 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 {
1008 if (wp == NULL)
1009 return FAIL;
1010
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001011 new_frame(wp);
1012 if (wp->w_frame == NULL)
1013 {
1014 win_free(wp, NULL);
1015 return FAIL;
1016 }
1017
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001018 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001019 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 }
1021
1022 /*
1023 * Reorganise the tree of frames to insert the new window.
1024 */
1025 if (flags & (WSP_TOP | WSP_BOT))
1026 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
1028 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 {
1030 curfrp = topframe->fr_child;
1031 if (flags & WSP_BOT)
1032 while (curfrp->fr_next != NULL)
1033 curfrp = curfrp->fr_next;
1034 }
1035 else
1036 curfrp = topframe;
1037 before = (flags & WSP_TOP);
1038 }
1039 else
1040 {
1041 curfrp = oldwin->w_frame;
1042 if (flags & WSP_BELOW)
1043 before = FALSE;
1044 else if (flags & WSP_ABOVE)
1045 before = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001046 else if (flags & WSP_VERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 before = !p_spr;
1048 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 before = !p_sb;
1050 }
1051 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
1052 {
1053 /* Need to create a new frame in the tree to make a branch. */
1054 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
1055 *frp = *curfrp;
1056 curfrp->fr_layout = layout;
1057 frp->fr_parent = curfrp;
1058 frp->fr_next = NULL;
1059 frp->fr_prev = NULL;
1060 curfrp->fr_child = frp;
1061 curfrp->fr_win = NULL;
1062 curfrp = frp;
1063 if (frp->fr_win != NULL)
1064 oldwin->w_frame = frp;
1065 else
1066 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
1067 frp->fr_parent = curfrp;
1068 }
1069
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001070 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001071 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001073 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 frp->fr_parent = curfrp->fr_parent;
1075
1076 /* Insert the new frame at the right place in the frame list. */
1077 if (before)
1078 frame_insert(curfrp, frp);
1079 else
1080 frame_append(curfrp, frp);
1081
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001082 /* Set w_fraction now so that the cursor keeps the same relative
1083 * vertical position. */
Bram Moolenaar3679c172017-11-22 22:22:11 +01001084 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001085 wp->w_fraction = oldwin->w_fraction;
1086
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 if (flags & WSP_VERT)
1088 {
1089 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001090
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 if (need_status)
1092 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001093 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 oldwin->w_status_height = need_status;
1095 }
1096 if (flags & (WSP_TOP | WSP_BOT))
1097 {
1098 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001099 wp->w_winrow = tabline_height();
Bram Moolenaard326ad62017-09-18 20:31:41 +02001100 win_new_height(wp, curfrp->fr_height - (p_ls > 0)
1101#ifdef FEAT_MENU
1102 - wp->w_winbar_height
1103#endif
1104 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 wp->w_status_height = (p_ls > 0);
1106 }
1107 else
1108 {
1109 /* height and row of new window is same as current window */
1110 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaard326ad62017-09-18 20:31:41 +02001111 win_new_height(wp, oldwin->w_height
1112#ifdef FEAT_MENU
1113 + oldwin->w_winbar_height
1114#endif
1115 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 wp->w_status_height = oldwin->w_status_height;
1117 }
1118 frp->fr_height = curfrp->fr_height;
1119
1120 /* "new_size" of the current window goes to the new window, use
1121 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001122 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 if (before)
1124 wp->w_vsep_width = 1;
1125 else
1126 {
1127 wp->w_vsep_width = oldwin->w_vsep_width;
1128 oldwin->w_vsep_width = 1;
1129 }
1130 if (flags & (WSP_TOP | WSP_BOT))
1131 {
1132 if (flags & WSP_BOT)
1133 frame_add_vsep(curfrp);
1134 /* Set width of neighbor frame */
1135 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001136 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1137 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 }
1139 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001140 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 if (before) /* new window left of current one */
1142 {
1143 wp->w_wincol = oldwin->w_wincol;
1144 oldwin->w_wincol += new_size + 1;
1145 }
1146 else /* new window right of current one */
1147 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1148 frame_fix_width(oldwin);
1149 frame_fix_width(wp);
1150 }
1151 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 {
1153 /* width and column of new window is same as current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 if (flags & (WSP_TOP | WSP_BOT))
1155 {
1156 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001157 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 wp->w_vsep_width = 0;
1159 }
1160 else
1161 {
1162 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001163 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 wp->w_vsep_width = oldwin->w_vsep_width;
1165 }
1166 frp->fr_width = curfrp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168 /* "new_size" of the current window goes to the new window, use
1169 * one row for the status line */
1170 win_new_height(wp, new_size);
1171 if (flags & (WSP_TOP | WSP_BOT))
Bram Moolenaar991dea32016-05-24 11:31:32 +02001172 {
Bram Moolenaard326ad62017-09-18 20:31:41 +02001173 int new_fr_height = curfrp->fr_height - new_size
1174#ifdef FEAT_MENU
1175 + wp->w_winbar_height
1176#endif
1177 ;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001178
1179 if (!((flags & WSP_BOT) && p_ls == 0))
1180 new_fr_height -= STATUS_HEIGHT;
1181 frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, FALSE);
1182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 else
1184 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1185 if (before) /* new window above current one */
1186 {
1187 wp->w_winrow = oldwin->w_winrow;
1188 wp->w_status_height = STATUS_HEIGHT;
1189 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1190 }
1191 else /* new window below current one */
1192 {
1193 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
1194 wp->w_status_height = oldwin->w_status_height;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001195 if (!(flags & WSP_BOT))
1196 oldwin->w_status_height = STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (flags & WSP_BOT)
1199 frame_add_statusline(curfrp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 frame_fix_height(wp);
1201 frame_fix_height(oldwin);
1202 }
1203
1204 if (flags & (WSP_TOP | WSP_BOT))
1205 (void)win_comp_pos();
1206
1207 /*
1208 * Both windows need redrawing
1209 */
1210 redraw_win_later(wp, NOT_VALID);
1211 wp->w_redr_status = TRUE;
1212 redraw_win_later(oldwin, NOT_VALID);
1213 oldwin->w_redr_status = TRUE;
1214
1215 if (need_status)
1216 {
1217 msg_row = Rows - 1;
1218 msg_col = sc_col;
1219 msg_clr_eos_force(); /* Old command/ruler may still be there */
1220 comp_col();
1221 msg_row = Rows - 1;
1222 msg_col = 0; /* put position back at start of line */
1223 }
1224
1225 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001226 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 */
1228 if (do_equal || dir != 0)
1229 win_equal(wp, TRUE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001231 : dir == 'h' ? 'b' : 'v');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232
1233 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1234 * size was given. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (flags & WSP_VERT)
1236 {
1237 i = p_wiw;
1238 if (size != 0)
1239 p_wiw = size;
1240
1241# ifdef FEAT_GUI
1242 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1243 if (gui.in_use)
1244 gui_init_which_components(NULL);
1245# endif
1246 }
1247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
1249 i = p_wh;
1250 if (size != 0)
1251 p_wh = size;
1252 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001253
Bram Moolenaar23fb7a92014-07-30 14:05:00 +02001254#ifdef FEAT_JUMPLIST
1255 /* Keep same changelist position in new window. */
1256 wp->w_changelistidx = oldwin->w_changelistidx;
1257#endif
1258
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001259 /*
1260 * make the new window the current window
1261 */
Bram Moolenaarc917da42016-07-19 22:31:36 +02001262 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 if (flags & WSP_VERT)
1264 p_wiw = i;
1265 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 p_wh = i;
1267
1268 return OK;
1269}
1270
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001271
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001272/*
1273 * Initialize window "newp" from window "oldp".
1274 * Used when splitting a window and when creating a new tab page.
1275 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001276 * WSP_NEWLOC may be specified in flags to prevent the location list from
1277 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001278 */
1279 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001280win_init(win_T *newp, win_T *oldp, int flags UNUSED)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001281{
1282 int i;
1283
1284 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001285#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001286 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001287#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001288 oldp->w_buffer->b_nwindows++;
1289 newp->w_cursor = oldp->w_cursor;
1290 newp->w_valid = 0;
1291 newp->w_curswant = oldp->w_curswant;
1292 newp->w_set_curswant = oldp->w_set_curswant;
1293 newp->w_topline = oldp->w_topline;
1294#ifdef FEAT_DIFF
1295 newp->w_topfill = oldp->w_topfill;
1296#endif
1297 newp->w_leftcol = oldp->w_leftcol;
1298 newp->w_pcmark = oldp->w_pcmark;
1299 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1300 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001301 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001302 newp->w_fraction = oldp->w_fraction;
1303 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1304#ifdef FEAT_JUMPLIST
1305 copy_jumplist(oldp, newp);
1306#endif
1307#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001308 if (flags & WSP_NEWLOC)
1309 {
1310 /* Don't copy the location list. */
1311 newp->w_llist = NULL;
1312 newp->w_llist_ref = NULL;
1313 }
1314 else
1315 copy_loclist(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001316#endif
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01001317 newp->w_localdir = (oldp->w_localdir == NULL)
1318 ? NULL : vim_strsave(oldp->w_localdir);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001319
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001320 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001321 for (i = 0; i < oldp->w_tagstacklen; i++)
1322 {
1323 newp->w_tagstack[i] = oldp->w_tagstack[i];
1324 if (newp->w_tagstack[i].tagname != NULL)
1325 newp->w_tagstack[i].tagname =
1326 vim_strsave(newp->w_tagstack[i].tagname);
1327 }
1328 newp->w_tagstackidx = oldp->w_tagstackidx;
1329 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001330#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001331 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001332#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001333
1334 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001335
Bram Moolenaara971b822011-09-14 14:43:25 +02001336#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001337 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001338#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001339}
1340
1341/*
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001342 * Initialize window "newp" from window "old".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001343 * Only the essential things are copied.
1344 */
1345 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001346win_init_some(win_T *newp, win_T *oldp)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001347{
1348 /* Use the same argument list. */
1349 newp->w_alist = oldp->w_alist;
1350 ++newp->w_alist->al_refcount;
1351 newp->w_arg_idx = oldp->w_arg_idx;
1352
1353 /* copy options from existing window */
1354 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001355}
1356
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358/*
Bram Moolenaare59215c2016-08-14 19:08:45 +02001359 * Check if "win" is a pointer to an existing window in the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 */
1361 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001362win_valid(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363{
1364 win_T *wp;
1365
1366 if (win == NULL)
1367 return FALSE;
Bram Moolenaar29323592016-07-24 22:04:11 +02001368 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 if (wp == win)
1370 return TRUE;
1371 return FALSE;
1372}
1373
1374/*
Bram Moolenaare59215c2016-08-14 19:08:45 +02001375 * Check if "win" is a pointer to an existing window in any tab page.
1376 */
1377 int
1378win_valid_any_tab(win_T *win)
1379{
1380 win_T *wp;
1381 tabpage_T *tp;
1382
1383 if (win == NULL)
1384 return FALSE;
1385 FOR_ALL_TABPAGES(tp)
1386 {
1387 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
1388 {
1389 if (wp == win)
1390 return TRUE;
1391 }
1392 }
1393 return FALSE;
1394}
1395
1396/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 * Return the number of windows.
1398 */
1399 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001400win_count(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401{
1402 win_T *wp;
1403 int count = 0;
1404
Bram Moolenaar29323592016-07-24 22:04:11 +02001405 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 ++count;
1407 return count;
1408}
1409
1410/*
1411 * Make "count" windows on the screen.
1412 * Return actual number of windows on the screen.
1413 * Must be called when there is just one window, filling the whole screen
1414 * (excluding the command line).
1415 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001417make_windows(
1418 int count,
1419 int vertical UNUSED) /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420{
1421 int maxcount;
1422 int todo;
1423
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 if (vertical)
1425 {
1426 /* Each windows needs at least 'winminwidth' lines and a separator
1427 * column. */
1428 maxcount = (curwin->w_width + curwin->w_vsep_width
1429 - (p_wiw - p_wmw)) / (p_wmw + 1);
1430 }
1431 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 {
1433 /* Each window needs at least 'winminheight' lines and a status line. */
1434 maxcount = (curwin->w_height + curwin->w_status_height
1435 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1436 }
1437
1438 if (maxcount < 2)
1439 maxcount = 2;
1440 if (count > maxcount)
1441 count = maxcount;
1442
1443 /*
1444 * add status line now, otherwise first window will be too big
1445 */
1446 if (count > 1)
1447 last_status(TRUE);
1448
1449#ifdef FEAT_AUTOCMD
1450 /*
1451 * Don't execute autocommands while creating the windows. Must do that
1452 * when putting the buffers in the windows.
1453 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001454 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455#endif
1456
1457 /* todo is number of windows left to create */
1458 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 if (vertical)
1460 {
1461 if (win_split(curwin->w_width - (curwin->w_width - todo)
1462 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1463 break;
1464 }
1465 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
1467 if (win_split(curwin->w_height - (curwin->w_height - todo
1468 * STATUS_HEIGHT) / (todo + 1)
1469 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1470 break;
1471 }
1472
1473#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001474 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475#endif
1476
1477 /* return actual number of windows */
1478 return (count - todo);
1479}
1480
1481/*
1482 * Exchange current and next window
1483 */
1484 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001485win_exchange(long Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486{
1487 frame_T *frp;
1488 frame_T *frp2;
1489 win_T *wp;
1490 win_T *wp2;
1491 int temp;
1492
Bram Moolenaar459ca562016-11-10 18:16:33 +01001493 if (ONE_WINDOW) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 {
1495 beep_flush();
1496 return;
1497 }
1498
1499#ifdef FEAT_GUI
1500 need_mouse_correct = TRUE;
1501#endif
1502
1503 /*
1504 * find window to exchange with
1505 */
1506 if (Prenum)
1507 {
1508 frp = curwin->w_frame->fr_parent->fr_child;
1509 while (frp != NULL && --Prenum > 0)
1510 frp = frp->fr_next;
1511 }
1512 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1513 frp = curwin->w_frame->fr_next;
1514 else /* Swap last window in row/col with previous */
1515 frp = curwin->w_frame->fr_prev;
1516
1517 /* We can only exchange a window with another window, not with a frame
1518 * containing windows. */
1519 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1520 return;
1521 wp = frp->fr_win;
1522
1523/*
1524 * 1. remove curwin from the list. Remember after which window it was in wp2
1525 * 2. insert curwin before wp in the list
1526 * if wp != wp2
1527 * 3. remove wp from the list
1528 * 4. insert wp after wp2
1529 * 5. exchange the status line height and vsep width.
1530 */
1531 wp2 = curwin->w_prev;
1532 frp2 = curwin->w_frame->fr_prev;
1533 if (wp->w_prev != curwin)
1534 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001535 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 frame_remove(curwin->w_frame);
1537 win_append(wp->w_prev, curwin);
1538 frame_insert(frp, curwin->w_frame);
1539 }
1540 if (wp != wp2)
1541 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001542 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 frame_remove(wp->w_frame);
1544 win_append(wp2, wp);
1545 if (frp2 == NULL)
1546 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1547 else
1548 frame_append(frp2, wp->w_frame);
1549 }
1550 temp = curwin->w_status_height;
1551 curwin->w_status_height = wp->w_status_height;
1552 wp->w_status_height = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 temp = curwin->w_vsep_width;
1554 curwin->w_vsep_width = wp->w_vsep_width;
1555 wp->w_vsep_width = temp;
1556
1557 /* If the windows are not in the same frame, exchange the sizes to avoid
1558 * messing up the window layout. Otherwise fix the frame sizes. */
1559 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1560 {
1561 temp = curwin->w_height;
1562 curwin->w_height = wp->w_height;
1563 wp->w_height = temp;
1564 temp = curwin->w_width;
1565 curwin->w_width = wp->w_width;
1566 wp->w_width = temp;
1567 }
1568 else
1569 {
1570 frame_fix_height(curwin);
1571 frame_fix_height(wp);
1572 frame_fix_width(curwin);
1573 frame_fix_width(wp);
1574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
1576 (void)win_comp_pos(); /* recompute window positions */
1577
1578 win_enter(wp, TRUE);
1579 redraw_later(CLEAR);
1580}
1581
1582/*
1583 * rotate windows: if upwards TRUE the second window becomes the first one
1584 * if upwards FALSE the first window becomes the second one
1585 */
1586 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001587win_rotate(int upwards, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588{
1589 win_T *wp1;
1590 win_T *wp2;
1591 frame_T *frp;
1592 int n;
1593
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01001594 if (ONE_WINDOW) /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
1596 beep_flush();
1597 return;
1598 }
1599
1600#ifdef FEAT_GUI
1601 need_mouse_correct = TRUE;
1602#endif
1603
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 /* Check if all frames in this row/col have one window. */
1605 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1606 frp = frp->fr_next)
1607 if (frp->fr_win == NULL)
1608 {
1609 EMSG(_("E443: Cannot rotate when another window is split"));
1610 return;
1611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
1613 while (count--)
1614 {
1615 if (upwards) /* first window becomes last window */
1616 {
1617 /* remove first window/frame from the list */
1618 frp = curwin->w_frame->fr_parent->fr_child;
1619 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001620 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 frame_remove(frp);
1622
1623 /* find last frame and append removed window/frame after it */
1624 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1625 ;
1626 win_append(frp->fr_win, wp1);
1627 frame_append(frp, wp1->w_frame);
1628
1629 wp2 = frp->fr_win; /* previously last window */
1630 }
1631 else /* last window becomes first window */
1632 {
1633 /* find last window/frame in the list and remove it */
1634 for (frp = curwin->w_frame; frp->fr_next != NULL;
1635 frp = frp->fr_next)
1636 ;
1637 wp1 = frp->fr_win;
1638 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001639 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 frame_remove(frp);
1641
1642 /* append the removed window/frame before the first in the list */
1643 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1644 frame_insert(frp->fr_parent->fr_child, frp);
1645 }
1646
1647 /* exchange status height and vsep width of old and new last window */
1648 n = wp2->w_status_height;
1649 wp2->w_status_height = wp1->w_status_height;
1650 wp1->w_status_height = n;
1651 frame_fix_height(wp1);
1652 frame_fix_height(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 n = wp2->w_vsep_width;
1654 wp2->w_vsep_width = wp1->w_vsep_width;
1655 wp1->w_vsep_width = n;
1656 frame_fix_width(wp1);
1657 frame_fix_width(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001659 /* recompute w_winrow and w_wincol for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 (void)win_comp_pos();
1661 }
1662
1663 redraw_later(CLEAR);
1664}
1665
1666/*
1667 * Move the current window to the very top/bottom/left/right of the screen.
1668 */
1669 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001670win_totop(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671{
1672 int dir;
1673 int height = curwin->w_height;
1674
Bram Moolenaar459ca562016-11-10 18:16:33 +01001675 if (ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 {
1677 beep_flush();
1678 return;
1679 }
1680
1681 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001682 (void)winframe_remove(curwin, &dir, NULL);
1683 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 last_status(FALSE); /* may need to remove last status line */
1685 (void)win_comp_pos(); /* recompute window positions */
1686
1687 /* Split a window on the desired side and put the window there. */
1688 (void)win_split_ins(size, flags, curwin, dir);
1689 if (!(flags & WSP_VERT))
1690 {
1691 win_setheight(height);
1692 if (p_ea)
1693 win_equal(curwin, TRUE, 'v');
1694 }
1695
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001696#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1698 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001699 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701}
1702
1703/*
1704 * Move window "win1" to below/right of "win2" and make "win1" the current
1705 * window. Only works within the same frame!
1706 */
1707 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001708win_move_after(win_T *win1, win_T *win2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709{
1710 int height;
1711
1712 /* check if the arguments are reasonable */
1713 if (win1 == win2)
1714 return;
1715
1716 /* check if there is something to do */
1717 if (win2->w_next != win1)
1718 {
1719 /* may need move the status line/vertical separator of the last window
1720 * */
1721 if (win1 == lastwin)
1722 {
1723 height = win1->w_prev->w_status_height;
1724 win1->w_prev->w_status_height = win1->w_status_height;
1725 win1->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001726 if (win1->w_prev->w_vsep_width == 1)
1727 {
1728 /* Remove the vertical separator from the last-but-one window,
1729 * add it to the last window. Adjust the frame widths. */
1730 win1->w_prev->w_vsep_width = 0;
1731 win1->w_prev->w_frame->fr_width -= 1;
1732 win1->w_vsep_width = 1;
1733 win1->w_frame->fr_width += 1;
1734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 }
1736 else if (win2 == lastwin)
1737 {
1738 height = win1->w_status_height;
1739 win1->w_status_height = win2->w_status_height;
1740 win2->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001741 if (win1->w_vsep_width == 1)
1742 {
1743 /* Remove the vertical separator from win1, add it to the last
1744 * window, win2. Adjust the frame widths. */
1745 win2->w_vsep_width = 1;
1746 win2->w_frame->fr_width += 1;
1747 win1->w_vsep_width = 0;
1748 win1->w_frame->fr_width -= 1;
1749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001751 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 frame_remove(win1->w_frame);
1753 win_append(win2, win1);
1754 frame_append(win2->w_frame, win1->w_frame);
1755
1756 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1757 redraw_later(NOT_VALID);
1758 }
1759 win_enter(win1, FALSE);
1760}
1761
1762/*
1763 * Make all windows the same height.
1764 * 'next_curwin' will soon be the current window, make sure it has enough
1765 * rows.
1766 */
1767 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001768win_equal(
1769 win_T *next_curwin, /* pointer to current window to be or NULL */
1770 int current, /* do only frame with current window */
1771 int dir) /* 'v' for vertically, 'h' for horizontally,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 'b' for both, 0 for using p_ead */
1773{
1774 if (dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 dir = *p_ead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001777 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001778 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779}
1780
1781/*
1782 * Set a frame to a new position and height, spreading the available room
1783 * equally over contained frames.
1784 * The window "next_curwin" (if not NULL) should at least get the size from
1785 * 'winheight' and 'winwidth' if possible.
1786 */
1787 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001788win_equal_rec(
1789 win_T *next_curwin, /* pointer to current window to be or NULL */
1790 int current, /* do only frame with current window */
1791 frame_T *topfr, /* frame to set size off */
1792 int dir, /* 'v', 'h' or 'b', see win_equal() */
1793 int col, /* horizontal position for frame */
1794 int row, /* vertical position for frame */
1795 int width, /* new width of frame */
1796 int height) /* new height of frame */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797{
1798 int n, m;
1799 int extra_sep = 0;
1800 int wincount, totwincount = 0;
1801 frame_T *fr;
1802 int next_curwin_size = 0;
1803 int room = 0;
1804 int new_size;
1805 int has_next_curwin = 0;
1806 int hnc;
1807
1808 if (topfr->fr_layout == FR_LEAF)
1809 {
1810 /* Set the width/height of this frame.
1811 * Redraw when size or position changes */
1812 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 )
1815 {
1816 topfr->fr_win->w_winrow = row;
1817 frame_new_height(topfr, height, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001819 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 redraw_all_later(CLEAR);
1821 }
1822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 else if (topfr->fr_layout == FR_ROW)
1824 {
1825 topfr->fr_width = width;
1826 topfr->fr_height = height;
1827
1828 if (dir != 'v') /* equalize frame widths */
1829 {
1830 /* Compute the maximum number of windows horizontally in this
1831 * frame. */
1832 n = frame_minwidth(topfr, NOWIN);
1833 /* add one for the rightmost window, it doesn't have a separator */
1834 if (col + width == Columns)
1835 extra_sep = 1;
1836 else
1837 extra_sep = 0;
1838 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001839 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001841 /*
1842 * Compute width for "next_curwin" window and room available for
1843 * other windows.
1844 * "m" is the minimal width when counting p_wiw for "next_curwin".
1845 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 m = frame_minwidth(topfr, next_curwin);
1847 room = width - m;
1848 if (room < 0)
1849 {
1850 next_curwin_size = p_wiw + room;
1851 room = 0;
1852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 else
1854 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001855 next_curwin_size = -1;
1856 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1857 {
1858 /* If 'winfixwidth' set keep the window width if
1859 * possible.
1860 * Watch out for this window being the next_curwin. */
1861 if (frame_fixed_width(fr))
1862 {
1863 n = frame_minwidth(fr, NOWIN);
1864 new_size = fr->fr_width;
1865 if (frame_has_win(fr, next_curwin))
1866 {
1867 room += p_wiw - p_wmw;
1868 next_curwin_size = 0;
1869 if (new_size < p_wiw)
1870 new_size = p_wiw;
1871 }
1872 else
1873 /* These windows don't use up room. */
1874 totwincount -= (n + (fr->fr_next == NULL
1875 ? extra_sep : 0)) / (p_wmw + 1);
1876 room -= new_size - n;
1877 if (room < 0)
1878 {
1879 new_size += room;
1880 room = 0;
1881 }
1882 fr->fr_newwidth = new_size;
1883 }
1884 }
1885 if (next_curwin_size == -1)
1886 {
1887 if (!has_next_curwin)
1888 next_curwin_size = 0;
1889 else if (totwincount > 1
1890 && (room + (totwincount - 2))
1891 / (totwincount - 1) > p_wiw)
1892 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001893 /* Can make all windows wider than 'winwidth', spread
1894 * the room equally. */
1895 next_curwin_size = (room + p_wiw
1896 + (totwincount - 1) * p_wmw
1897 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001898 room -= next_curwin_size - p_wiw;
1899 }
1900 else
1901 next_curwin_size = p_wiw;
1902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001904
1905 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 --totwincount; /* don't count curwin */
1907 }
1908
1909 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1910 {
1911 n = m = 0;
1912 wincount = 1;
1913 if (fr->fr_next == NULL)
1914 /* last frame gets all that remains (avoid roundoff error) */
1915 new_size = width;
1916 else if (dir == 'v')
1917 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001918 else if (frame_fixed_width(fr))
1919 {
1920 new_size = fr->fr_newwidth;
1921 wincount = 0; /* doesn't count as a sizeable window */
1922 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 else
1924 {
1925 /* Compute the maximum number of windows horiz. in "fr". */
1926 n = frame_minwidth(fr, NOWIN);
1927 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1928 / (p_wmw + 1);
1929 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001930 if (has_next_curwin)
1931 hnc = frame_has_win(fr, next_curwin);
1932 else
1933 hnc = FALSE;
1934 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001936 if (totwincount == 0)
1937 new_size = room;
1938 else
1939 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001941 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 {
1943 next_curwin_size -= p_wiw - (m - n);
1944 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001945 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001947 else
1948 room -= new_size;
1949 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 }
1951
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001952 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 * window, unless equalizing all frames. */
1954 if (!current || dir != 'v' || topfr->fr_parent != NULL
1955 || (new_size != fr->fr_width)
1956 || frame_has_win(fr, next_curwin))
1957 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001958 new_size, height);
1959 col += new_size;
1960 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 totwincount -= wincount;
1962 }
1963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 else /* topfr->fr_layout == FR_COL */
1965 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 topfr->fr_width = width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 topfr->fr_height = height;
1968
1969 if (dir != 'h') /* equalize frame heights */
1970 {
1971 /* Compute maximum number of windows vertically in this frame. */
1972 n = frame_minheight(topfr, NOWIN);
1973 /* add one for the bottom window if it doesn't have a statusline */
1974 if (row + height == cmdline_row && p_ls == 0)
1975 extra_sep = 1;
1976 else
1977 extra_sep = 0;
1978 totwincount = (n + extra_sep) / (p_wmh + 1);
1979 has_next_curwin = frame_has_win(topfr, next_curwin);
1980
1981 /*
1982 * Compute height for "next_curwin" window and room available for
1983 * other windows.
1984 * "m" is the minimal height when counting p_wh for "next_curwin".
1985 */
1986 m = frame_minheight(topfr, next_curwin);
1987 room = height - m;
1988 if (room < 0)
1989 {
1990 /* The room is less then 'winheight', use all space for the
1991 * current window. */
1992 next_curwin_size = p_wh + room;
1993 room = 0;
1994 }
1995 else
1996 {
1997 next_curwin_size = -1;
1998 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1999 {
2000 /* If 'winfixheight' set keep the window height if
2001 * possible.
2002 * Watch out for this window being the next_curwin. */
2003 if (frame_fixed_height(fr))
2004 {
2005 n = frame_minheight(fr, NOWIN);
2006 new_size = fr->fr_height;
2007 if (frame_has_win(fr, next_curwin))
2008 {
2009 room += p_wh - p_wmh;
2010 next_curwin_size = 0;
2011 if (new_size < p_wh)
2012 new_size = p_wh;
2013 }
2014 else
2015 /* These windows don't use up room. */
2016 totwincount -= (n + (fr->fr_next == NULL
2017 ? extra_sep : 0)) / (p_wmh + 1);
2018 room -= new_size - n;
2019 if (room < 0)
2020 {
2021 new_size += room;
2022 room = 0;
2023 }
2024 fr->fr_newheight = new_size;
2025 }
2026 }
2027 if (next_curwin_size == -1)
2028 {
2029 if (!has_next_curwin)
2030 next_curwin_size = 0;
2031 else if (totwincount > 1
2032 && (room + (totwincount - 2))
2033 / (totwincount - 1) > p_wh)
2034 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002035 /* can make all windows higher than 'winheight',
2036 * spread the room equally. */
2037 next_curwin_size = (room + p_wh
2038 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 + (totwincount - 1)) / totwincount;
2040 room -= next_curwin_size - p_wh;
2041 }
2042 else
2043 next_curwin_size = p_wh;
2044 }
2045 }
2046
2047 if (has_next_curwin)
2048 --totwincount; /* don't count curwin */
2049 }
2050
2051 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
2052 {
2053 n = m = 0;
2054 wincount = 1;
2055 if (fr->fr_next == NULL)
2056 /* last frame gets all that remains (avoid roundoff error) */
2057 new_size = height;
2058 else if (dir == 'h')
2059 new_size = fr->fr_height;
2060 else if (frame_fixed_height(fr))
2061 {
2062 new_size = fr->fr_newheight;
2063 wincount = 0; /* doesn't count as a sizeable window */
2064 }
2065 else
2066 {
2067 /* Compute the maximum number of windows vert. in "fr". */
2068 n = frame_minheight(fr, NOWIN);
2069 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2070 / (p_wmh + 1);
2071 m = frame_minheight(fr, next_curwin);
2072 if (has_next_curwin)
2073 hnc = frame_has_win(fr, next_curwin);
2074 else
2075 hnc = FALSE;
2076 if (hnc) /* don't count next_curwin */
2077 --wincount;
2078 if (totwincount == 0)
2079 new_size = room;
2080 else
2081 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2082 / totwincount;
2083 if (hnc) /* add next_curwin size */
2084 {
2085 next_curwin_size -= p_wh - (m - n);
2086 new_size += next_curwin_size;
2087 room -= new_size - next_curwin_size;
2088 }
2089 else
2090 room -= new_size;
2091 new_size += n;
2092 }
2093 /* Skip frame that is full width when splitting or closing a
2094 * window, unless equalizing all frames. */
2095 if (!current || dir != 'h' || topfr->fr_parent != NULL
2096 || (new_size != fr->fr_height)
2097 || frame_has_win(fr, next_curwin))
2098 win_equal_rec(next_curwin, current, fr, dir, col, row,
2099 width, new_size);
2100 row += new_size;
2101 height -= new_size;
2102 totwincount -= wincount;
2103 }
2104 }
2105}
2106
2107/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002108 * Close all windows for buffer "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 */
2110 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002111close_windows(
2112 buf_T *buf,
2113 int keep_curwin) /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002115 win_T *wp;
2116 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002117 int h = tabline_height();
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002118#ifdef FEAT_AUTOCMD
2119 int count = tabpage_index(NULL);
2120#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121
2122 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002123
Bram Moolenaar459ca562016-11-10 18:16:33 +01002124 for (wp = firstwin; wp != NULL && !ONE_WINDOW; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002126 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
2127#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002128 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002129#endif
2130 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 {
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002132 if (win_close(wp, FALSE) == FAIL)
2133 /* If closing the window fails give up, to avoid looping
2134 * forever. */
2135 break;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002136
2137 /* Start all over, autocommands may change the window layout. */
2138 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 }
2140 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002141 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002143
2144 /* Also check windows in other tab pages. */
2145 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2146 {
2147 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002148 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002149 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002150 if (wp->w_buffer == buf
2151#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002152 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002153#endif
2154 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00002155 {
2156 win_close_othertab(wp, FALSE, tp);
2157
2158 /* Start all over, the tab page may be closed and
2159 * autocommands may change the window layout. */
2160 nexttp = first_tabpage;
2161 break;
2162 }
2163 }
2164
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002166
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002167#ifdef FEAT_AUTOCMD
2168 if (count != tabpage_index(NULL))
2169 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
2170#endif
2171
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002172 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002173 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002174 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175}
2176
2177/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002178 * Return TRUE if the current window is the only window that exists (ignoring
2179 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002180 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002181 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002182 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002183last_window(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002184{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002185 return (one_window() && first_tabpage->tp_next == NULL);
2186}
2187
2188/*
2189 * Return TRUE if there is only one window other than "aucmd_win" in the
2190 * current tab page.
2191 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002192 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002193one_window(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002194{
2195#ifdef FEAT_AUTOCMD
2196 win_T *wp;
2197 int seen_one = FALSE;
2198
2199 FOR_ALL_WINDOWS(wp)
2200 {
2201 if (wp != aucmd_win)
2202 {
2203 if (seen_one)
2204 return FALSE;
2205 seen_one = TRUE;
2206 }
2207 }
2208 return TRUE;
2209#else
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002210 return ONE_WINDOW;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002211#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002212}
2213
2214/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002215 * Close the possibly last window in a tab page.
2216 * Returns TRUE when the window was closed already.
2217 */
2218 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002219close_last_window_tabpage(
2220 win_T *win,
2221 int free_buf,
2222 tabpage_T *prev_curtab)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002223{
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002224 if (ONE_WINDOW)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002225 {
Bram Moolenaar07729b22013-05-15 23:13:10 +02002226#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002227 buf_T *old_curbuf = curbuf;
Bram Moolenaar07729b22013-05-15 23:13:10 +02002228#endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002229
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002230 /*
2231 * Closing the last window in a tab page. First go to another tab
2232 * page and then close the window and the tab page. This avoids that
2233 * curwin and curtab are invalid while we are freeing memory, they may
2234 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002235 * Don't trigger autocommands yet, they may use wrong values, so do
2236 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002237 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002238 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002239 redraw_tabline = TRUE;
2240
2241 /* Safety check: Autocommands may have closed the window when jumping
2242 * to the other tab page. */
2243 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2244 {
2245 int h = tabline_height();
2246
2247 win_close_othertab(win, free_buf, prev_curtab);
2248 if (h != tabline_height())
2249 shell_new_rows();
2250 }
Bram Moolenaara8596c42012-06-13 14:28:20 +02002251 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2252 * that now. */
2253#ifdef FEAT_AUTOCMD
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002254 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002255 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002256 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2257 if (old_curbuf != curbuf)
2258 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002259#endif
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002260 return TRUE;
2261 }
2262 return FALSE;
2263}
2264
2265/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002266 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 * If "free_buf" is TRUE related buffer may be unloaded.
2268 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002269 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002270 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002272 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002273win_close(win_T *win, int free_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 win_T *wp;
2276#ifdef FEAT_AUTOCMD
2277 int other_buffer = FALSE;
2278#endif
2279 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 int dir;
2281 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002282 tabpage_T *prev_curtab = curtab;
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002283 frame_T *win_frame = win->w_frame->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002285 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 {
2287 EMSG(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002288 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 }
2290
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002291#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002292 if (win->w_closing || (win->w_buffer != NULL
2293 && win->w_buffer->b_locked > 0))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002294 return FAIL; /* window is already being closed */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002295 if (win == aucmd_win)
2296 {
2297 EMSG(_("E813: Cannot close autocmd window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002298 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002299 }
2300 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2301 {
2302 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002303 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002304 }
2305#endif
2306
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002307 /* When closing the last window in a tab page first go to another tab page
2308 * and then close the window and the tab page to avoid that curwin and
2309 * curtab are invalid while we are freeing memory. */
2310 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002311 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002312
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 /* When closing the help window, try restoring a snapshot after closing
2314 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002315 if (bt_help(win->w_buffer))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 help_window = TRUE;
2317 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002318 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319
2320#ifdef FEAT_AUTOCMD
2321 if (win == curwin)
2322 {
2323 /*
2324 * Guess which window is going to be the new current window.
2325 * This may change because of the autocommands (sigh).
2326 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002327 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328
2329 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002330 * Be careful: If autocommands delete the window or cause this window
2331 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 */
2333 if (wp->w_buffer != curbuf)
2334 {
2335 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002336 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002338 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002339 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002340 win->w_closing = FALSE;
2341 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002342 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002344 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002346 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002347 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002348 win->w_closing = FALSE;
2349 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002350 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351# ifdef FEAT_EVAL
2352 /* autocmds may abort script processing */
2353 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002354 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355# endif
2356 }
2357#endif
2358
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002359#ifdef FEAT_GUI
2360 /* Avoid trouble with scrollbars that are going to be deleted in
2361 * win_free(). */
2362 if (gui.in_use)
2363 out_flush();
2364#endif
2365
Bram Moolenaara971b822011-09-14 14:43:25 +02002366#ifdef FEAT_SYN_HL
2367 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002368 if (win->w_buffer != NULL)
2369 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002370#endif
2371
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 /*
2373 * Close the link to the buffer.
2374 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002375 if (win->w_buffer != NULL)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002376 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002377 bufref_T bufref;
2378
2379 set_bufref(&bufref, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002380#ifdef FEAT_AUTOCMD
2381 win->w_closing = TRUE;
2382#endif
Bram Moolenaar8f913992012-08-29 15:50:26 +02002383 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002384#ifdef FEAT_AUTOCMD
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002385 if (win_valid_any_tab(win))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002386 win->w_closing = FALSE;
2387#endif
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002388 /* Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2389 * "wipe". */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002390 if (!bufref_valid(&bufref))
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002391 curbuf = firstbuf;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002392 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002393
Bram Moolenaar802418d2013-01-17 14:00:11 +01002394 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2395 && (last_window() || curtab != prev_curtab
2396 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002397 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002398 /* Autocommands have closed all windows, quit now. Restore
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002399 * curwin->w_buffer, otherwise writing viminfo may fail. */
2400 if (curwin->w_buffer == NULL)
2401 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002402 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002403 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002404
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002405 /* Autocommands may have moved to another tab page. */
2406 if (curtab != prev_curtab && win_valid_any_tab(win)
2407 && win->w_buffer == NULL)
2408 {
2409 /* Need to close the window anyway, since the buffer is NULL. */
2410 win_close_othertab(win, FALSE, prev_curtab);
2411 return FAIL;
2412 }
2413
2414 /* Autocommands may have closed the window already or closed the only
2415 * other window. */
2416 if (!win_valid(win) || last_window()
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002417 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002418 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419
Bram Moolenaara971b822011-09-14 14:43:25 +02002420 /* Free the memory used for the window and get the window that received
2421 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002422 wp = win_free_mem(win, &dir, NULL);
2423
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 /* Make sure curwin isn't invalid. It can cause severe trouble when
2425 * printing an error message. For win_equal() curbuf needs to be valid
2426 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002427 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {
2429 curwin = wp;
2430#ifdef FEAT_QUICKFIX
2431 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2432 {
2433 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002434 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 * finding another window to go to.
2436 */
2437 for (;;)
2438 {
2439 if (wp->w_next == NULL)
2440 wp = firstwin;
2441 else
2442 wp = wp->w_next;
2443 if (wp == curwin)
2444 break;
2445 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2446 {
2447 curwin = wp;
2448 break;
2449 }
2450 }
2451 }
2452#endif
2453 curbuf = curwin->w_buffer;
2454 close_curwin = TRUE;
Bram Moolenaarf79225e2017-03-18 23:11:04 +01002455
2456 /* The cursor position may be invalid if the buffer changed after last
2457 * using the window. */
2458 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002460 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
Bram Moolenaar8eeeba82017-06-25 22:45:39 +02002461 /* If the frame of the closed window contains the new current window,
2462 * only resize that frame. Otherwise resize all windows. */
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002463 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 else
2465 win_comp_pos();
2466 if (close_curwin)
2467 {
Bram Moolenaarc917da42016-07-19 22:31:36 +02002468 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469#ifdef FEAT_AUTOCMD
2470 if (other_buffer)
2471 /* careful: after this wp and win may be invalid! */
2472 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2473#endif
2474 }
2475
2476 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002477 * If last window has a status line now and we don't want one,
2478 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 */
2480 last_status(FALSE);
2481
2482 /* After closing the help window, try restoring the window layout from
2483 * before it was opened. */
2484 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002485 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002487#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2489 if (gui.in_use && !win_hasvertsplit())
2490 gui_init_which_components(NULL);
2491#endif
2492
2493 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002494 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495}
2496
2497/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002498 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002499 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002500 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002501 * Caller must check if buffer is hidden and whether the tabline needs to be
2502 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002503 */
2504 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002505win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002506{
2507 win_T *wp;
2508 int dir;
2509 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002510 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002511
Bram Moolenaar362ce482012-06-06 19:02:45 +02002512#ifdef FEAT_AUTOCMD
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002513 /* Get here with win->w_buffer == NULL when win_close() detects the tab
2514 * page changed. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002515 if (win->w_closing || (win->w_buffer != NULL
2516 && win->w_buffer->b_locked > 0))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002517 return; /* window is already being closed */
2518#endif
2519
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002520 if (win->w_buffer != NULL)
2521 /* Close the link to the buffer. */
2522 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002523
2524 /* Careful: Autocommands may have closed the tab page or made it the
2525 * current tab page. */
2526 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2527 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002528 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002529 return;
2530
2531 /* Autocommands may have closed the window already. */
2532 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2533 ;
2534 if (wp == NULL)
2535 return;
2536
Bram Moolenaarf740b292006-02-16 22:11:02 +00002537 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002538 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002539 {
2540 if (tp == first_tabpage)
2541 first_tabpage = tp->tp_next;
2542 else
2543 {
2544 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2545 ptp = ptp->tp_next)
2546 ;
2547 if (ptp == NULL)
2548 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01002549 internal_error("win_close_othertab()");
Bram Moolenaarf740b292006-02-16 22:11:02 +00002550 return;
2551 }
2552 ptp->tp_next = tp->tp_next;
2553 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002554 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002555 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002556
2557 /* Free the memory used for the window. */
2558 win_free_mem(win, &dir, tp);
2559
2560 if (free_tp)
2561 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002562}
2563
2564/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002565 * Free the memory used for a window.
2566 * Returns a pointer to the window that got the freed up space.
2567 */
2568 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002569win_free_mem(
2570 win_T *win,
2571 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2572 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002573{
2574 frame_T *frp;
2575 win_T *wp;
2576
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002577 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002578 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002579 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002580 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002581 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002582
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002583 /* When deleting the current window of another tab page select a new
2584 * current window. */
2585 if (tp != NULL && win == tp->tp_curwin)
2586 tp->tp_curwin = wp;
2587
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002588 return wp;
2589}
2590
2591#if defined(EXITFREE) || defined(PROTO)
2592 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002593win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002594{
2595 int dummy;
2596
Bram Moolenaarf740b292006-02-16 22:11:02 +00002597 while (first_tabpage->tp_next != NULL)
2598 tabpage_close(TRUE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002599
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002600# ifdef FEAT_AUTOCMD
2601 if (aucmd_win != NULL)
2602 {
2603 (void)win_free_mem(aucmd_win, &dummy, NULL);
2604 aucmd_win = NULL;
2605 }
2606# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002607
2608 while (firstwin != NULL)
2609 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002610
2611 /* No window should be used after this. Set curwin to NULL to crash
2612 * instead of using freed memory. */
2613 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002614}
2615#endif
2616
2617/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 * Remove a window and its frame from the tree of frames.
2619 * Returns a pointer to the window that got the freed up space.
2620 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002621 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002622winframe_remove(
2623 win_T *win,
2624 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2625 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626{
2627 frame_T *frp, *frp2, *frp3;
2628 frame_T *frp_close = win->w_frame;
2629 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630
2631 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002632 * If there is only one window there is nothing to remove.
2633 */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002634 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002635 return NULL;
2636
2637 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 * Remove the window from its frame.
2639 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002640 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 wp = frame2win(frp2);
2642
2643 /* Remove this frame from the list of frames. */
2644 frame_remove(frp_close);
2645
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 if (frp_close->fr_parent->fr_layout == FR_COL)
2647 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002648 /* When 'winfixheight' is set, try to find another frame in the column
2649 * (as close to the closed frame as possible) to distribute the height
2650 * to. */
2651 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2652 {
2653 frp = frp_close->fr_prev;
2654 frp3 = frp_close->fr_next;
2655 while (frp != NULL || frp3 != NULL)
2656 {
2657 if (frp != NULL)
2658 {
2659 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2660 {
2661 frp2 = frp;
2662 wp = frp->fr_win;
2663 break;
2664 }
2665 frp = frp->fr_prev;
2666 }
2667 if (frp3 != NULL)
2668 {
2669 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2670 {
2671 frp2 = frp3;
2672 wp = frp3->fr_win;
2673 break;
2674 }
2675 frp3 = frp3->fr_next;
2676 }
2677 }
2678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2680 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 *dirp = 'v';
2682 }
2683 else
2684 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002685 /* When 'winfixwidth' is set, try to find another frame in the column
2686 * (as close to the closed frame as possible) to distribute the width
2687 * to. */
2688 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2689 {
2690 frp = frp_close->fr_prev;
2691 frp3 = frp_close->fr_next;
2692 while (frp != NULL || frp3 != NULL)
2693 {
2694 if (frp != NULL)
2695 {
2696 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2697 {
2698 frp2 = frp;
2699 wp = frp->fr_win;
2700 break;
2701 }
2702 frp = frp->fr_prev;
2703 }
2704 if (frp3 != NULL)
2705 {
2706 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2707 {
2708 frp2 = frp3;
2709 wp = frp3->fr_win;
2710 break;
2711 }
2712 frp3 = frp3->fr_next;
2713 }
2714 }
2715 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002717 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 *dirp = 'h';
2719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720
2721 /* If rows/columns go to a window below/right its positions need to be
2722 * updated. Can only be done after the sizes have been updated. */
2723 if (frp2 == frp_close->fr_next)
2724 {
2725 int row = win->w_winrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02002726 int col = win->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727
2728 frame_comp_pos(frp2, &row, &col);
2729 }
2730
2731 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2732 {
2733 /* There is no other frame in this list, move its info to the parent
2734 * and remove it. */
2735 frp2->fr_parent->fr_layout = frp2->fr_layout;
2736 frp2->fr_parent->fr_child = frp2->fr_child;
2737 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2738 frp->fr_parent = frp2->fr_parent;
2739 frp2->fr_parent->fr_win = frp2->fr_win;
2740 if (frp2->fr_win != NULL)
2741 frp2->fr_win->w_frame = frp2->fr_parent;
2742 frp = frp2->fr_parent;
2743 vim_free(frp2);
2744
2745 frp2 = frp->fr_parent;
2746 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2747 {
2748 /* The frame above the parent has the same layout, have to merge
2749 * the frames into this list. */
2750 if (frp2->fr_child == frp)
2751 frp2->fr_child = frp->fr_child;
2752 frp->fr_child->fr_prev = frp->fr_prev;
2753 if (frp->fr_prev != NULL)
2754 frp->fr_prev->fr_next = frp->fr_child;
2755 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2756 {
2757 frp3->fr_parent = frp2;
2758 if (frp3->fr_next == NULL)
2759 {
2760 frp3->fr_next = frp->fr_next;
2761 if (frp->fr_next != NULL)
2762 frp->fr_next->fr_prev = frp3;
2763 break;
2764 }
2765 }
2766 vim_free(frp);
2767 }
2768 }
2769
2770 return wp;
2771}
2772
2773/*
2774 * Find out which frame is going to get the freed up space when "win" is
2775 * closed.
2776 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2777 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2778 * This makes opening a window and closing it immediately keep the same window
2779 * layout.
2780 */
2781 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002782win_altframe(
2783 win_T *win,
2784 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785{
2786 frame_T *frp;
2787 int b;
2788
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002789 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002790 /* Last window in this tab page, will go to next tab page. */
2791 return alt_tabpage()->tp_curwin->w_frame;
2792
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 frp = win->w_frame;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002794 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 b = p_spr;
2796 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 b = p_sb;
2798 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2799 return frp->fr_next;
2800 return frp->fr_prev;
2801}
2802
2803/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002804 * Return the tabpage that will be used if the current one is closed.
2805 */
2806 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002807alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002808{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002809 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002810
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002811 /* Use the next tab page if possible. */
2812 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002813 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002814
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002815 /* Find the last but one tab page. */
2816 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2817 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002818 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002819}
2820
2821/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 * Find the left-upper window in frame "frp".
2823 */
2824 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002825frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826{
2827 while (frp->fr_win == NULL)
2828 frp = frp->fr_child;
2829 return frp->fr_win;
2830}
2831
2832/*
2833 * Return TRUE if frame "frp" contains window "wp".
2834 */
2835 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002836frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837{
2838 frame_T *p;
2839
2840 if (frp->fr_layout == FR_LEAF)
2841 return frp->fr_win == wp;
2842
2843 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2844 if (frame_has_win(p, wp))
2845 return TRUE;
2846 return FALSE;
2847}
2848
2849/*
2850 * Set a new height for a frame. Recursively sets the height for contained
2851 * frames and windows. Caller must take care of positions.
2852 */
2853 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002854frame_new_height(
2855 frame_T *topfrp,
2856 int height,
2857 int topfirst, /* resize topmost contained frame first */
2858 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 may cause the height not to be set */
2860{
2861 frame_T *frp;
2862 int extra_lines;
2863 int h;
2864
2865 if (topfrp->fr_win != NULL)
2866 {
2867 /* Simple case: just one window. */
2868 win_new_height(topfrp->fr_win,
Bram Moolenaard326ad62017-09-18 20:31:41 +02002869 height - topfrp->fr_win->w_status_height
2870#ifdef FEAT_MENU
2871 - topfrp->fr_win->w_winbar_height
2872#endif
2873 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 else if (topfrp->fr_layout == FR_ROW)
2876 {
2877 do
2878 {
2879 /* All frames in this row get the same new height. */
2880 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2881 {
2882 frame_new_height(frp, height, topfirst, wfh);
2883 if (frp->fr_height > height)
2884 {
2885 /* Could not fit the windows, make the whole row higher. */
2886 height = frp->fr_height;
2887 break;
2888 }
2889 }
2890 }
2891 while (frp != NULL);
2892 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002893 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 {
2895 /* Complicated case: Resize a column of frames. Resize the bottom
2896 * frame first, frames above that when needed. */
2897
2898 frp = topfrp->fr_child;
2899 if (wfh)
2900 /* Advance past frames with one window with 'wfh' set. */
2901 while (frame_fixed_height(frp))
2902 {
2903 frp = frp->fr_next;
2904 if (frp == NULL)
2905 return; /* no frame without 'wfh', give up */
2906 }
2907 if (!topfirst)
2908 {
2909 /* Find the bottom frame of this column */
2910 while (frp->fr_next != NULL)
2911 frp = frp->fr_next;
2912 if (wfh)
2913 /* Advance back for frames with one window with 'wfh' set. */
2914 while (frame_fixed_height(frp))
2915 frp = frp->fr_prev;
2916 }
2917
2918 extra_lines = height - topfrp->fr_height;
2919 if (extra_lines < 0)
2920 {
2921 /* reduce height of contained frames, bottom or top frame first */
2922 while (frp != NULL)
2923 {
2924 h = frame_minheight(frp, NULL);
2925 if (frp->fr_height + extra_lines < h)
2926 {
2927 extra_lines += frp->fr_height - h;
2928 frame_new_height(frp, h, topfirst, wfh);
2929 }
2930 else
2931 {
2932 frame_new_height(frp, frp->fr_height + extra_lines,
2933 topfirst, wfh);
2934 break;
2935 }
2936 if (topfirst)
2937 {
2938 do
2939 frp = frp->fr_next;
2940 while (wfh && frp != NULL && frame_fixed_height(frp));
2941 }
2942 else
2943 {
2944 do
2945 frp = frp->fr_prev;
2946 while (wfh && frp != NULL && frame_fixed_height(frp));
2947 }
2948 /* Increase "height" if we could not reduce enough frames. */
2949 if (frp == NULL)
2950 height -= extra_lines;
2951 }
2952 }
2953 else if (extra_lines > 0)
2954 {
2955 /* increase height of bottom or top frame */
2956 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2957 }
2958 }
2959 topfrp->fr_height = height;
2960}
2961
2962/*
2963 * Return TRUE if height of frame "frp" should not be changed because of
2964 * the 'winfixheight' option.
2965 */
2966 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002967frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968{
2969 /* frame with one window: fixed height if 'winfixheight' set. */
2970 if (frp->fr_win != NULL)
2971 return frp->fr_win->w_p_wfh;
2972
2973 if (frp->fr_layout == FR_ROW)
2974 {
2975 /* The frame is fixed height if one of the frames in the row is fixed
2976 * height. */
2977 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2978 if (frame_fixed_height(frp))
2979 return TRUE;
2980 return FALSE;
2981 }
2982
2983 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2984 * frames in the row are fixed height. */
2985 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2986 if (!frame_fixed_height(frp))
2987 return FALSE;
2988 return TRUE;
2989}
2990
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002992 * Return TRUE if width of frame "frp" should not be changed because of
2993 * the 'winfixwidth' option.
2994 */
2995 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002996frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002997{
2998 /* frame with one window: fixed width if 'winfixwidth' set. */
2999 if (frp->fr_win != NULL)
3000 return frp->fr_win->w_p_wfw;
3001
3002 if (frp->fr_layout == FR_COL)
3003 {
3004 /* The frame is fixed width if one of the frames in the row is fixed
3005 * width. */
3006 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3007 if (frame_fixed_width(frp))
3008 return TRUE;
3009 return FALSE;
3010 }
3011
3012 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
3013 * frames in the row are fixed width. */
3014 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3015 if (!frame_fixed_width(frp))
3016 return FALSE;
3017 return TRUE;
3018}
3019
3020/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 * Add a status line to windows at the bottom of "frp".
3022 * Note: Does not check if there is room!
3023 */
3024 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003025frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026{
3027 win_T *wp;
3028
3029 if (frp->fr_layout == FR_LEAF)
3030 {
3031 wp = frp->fr_win;
3032 if (wp->w_status_height == 0)
3033 {
3034 if (wp->w_height > 0) /* don't make it negative */
3035 --wp->w_height;
3036 wp->w_status_height = STATUS_HEIGHT;
3037 }
3038 }
3039 else if (frp->fr_layout == FR_ROW)
3040 {
3041 /* Handle all the frames in the row. */
3042 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3043 frame_add_statusline(frp);
3044 }
3045 else /* frp->fr_layout == FR_COL */
3046 {
3047 /* Only need to handle the last frame in the column. */
3048 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
3049 ;
3050 frame_add_statusline(frp);
3051 }
3052}
3053
3054/*
3055 * Set width of a frame. Handles recursively going through contained frames.
3056 * May remove separator line for windows at the right side (for win_close()).
3057 */
3058 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003059frame_new_width(
3060 frame_T *topfrp,
3061 int width,
3062 int leftfirst, /* resize leftmost contained frame first */
3063 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003064 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065{
3066 frame_T *frp;
3067 int extra_cols;
3068 int w;
3069 win_T *wp;
3070
3071 if (topfrp->fr_layout == FR_LEAF)
3072 {
3073 /* Simple case: just one window. */
3074 wp = topfrp->fr_win;
3075 /* Find out if there are any windows right of this one. */
3076 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3077 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3078 break;
3079 if (frp->fr_parent == NULL)
3080 wp->w_vsep_width = 0;
3081 win_new_width(wp, width - wp->w_vsep_width);
3082 }
3083 else if (topfrp->fr_layout == FR_COL)
3084 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003085 do
3086 {
3087 /* All frames in this column get the same new width. */
3088 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3089 {
3090 frame_new_width(frp, width, leftfirst, wfw);
3091 if (frp->fr_width > width)
3092 {
3093 /* Could not fit the windows, make whole column wider. */
3094 width = frp->fr_width;
3095 break;
3096 }
3097 }
3098 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 }
3100 else /* fr_layout == FR_ROW */
3101 {
3102 /* Complicated case: Resize a row of frames. Resize the rightmost
3103 * frame first, frames left of it when needed. */
3104
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003106 if (wfw)
3107 /* Advance past frames with one window with 'wfw' set. */
3108 while (frame_fixed_width(frp))
3109 {
3110 frp = frp->fr_next;
3111 if (frp == NULL)
3112 return; /* no frame without 'wfw', give up */
3113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003115 {
3116 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 while (frp->fr_next != NULL)
3118 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003119 if (wfw)
3120 /* Advance back for frames with one window with 'wfw' set. */
3121 while (frame_fixed_width(frp))
3122 frp = frp->fr_prev;
3123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124
3125 extra_cols = width - topfrp->fr_width;
3126 if (extra_cols < 0)
3127 {
3128 /* reduce frame width, rightmost frame first */
3129 while (frp != NULL)
3130 {
3131 w = frame_minwidth(frp, NULL);
3132 if (frp->fr_width + extra_cols < w)
3133 {
3134 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003135 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 }
3137 else
3138 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003139 frame_new_width(frp, frp->fr_width + extra_cols,
3140 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 break;
3142 }
3143 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003144 {
3145 do
3146 frp = frp->fr_next;
3147 while (wfw && frp != NULL && frame_fixed_width(frp));
3148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003150 {
3151 do
3152 frp = frp->fr_prev;
3153 while (wfw && frp != NULL && frame_fixed_width(frp));
3154 }
3155 /* Increase "width" if we could not reduce enough frames. */
3156 if (frp == NULL)
3157 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 }
3159 }
3160 else if (extra_cols > 0)
3161 {
3162 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003163 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 }
3165 }
3166 topfrp->fr_width = width;
3167}
3168
3169/*
3170 * Add the vertical separator to windows at the right side of "frp".
3171 * Note: Does not check if there is room!
3172 */
3173 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003174frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
3176 win_T *wp;
3177
3178 if (frp->fr_layout == FR_LEAF)
3179 {
3180 wp = frp->fr_win;
3181 if (wp->w_vsep_width == 0)
3182 {
3183 if (wp->w_width > 0) /* don't make it negative */
3184 --wp->w_width;
3185 wp->w_vsep_width = 1;
3186 }
3187 }
3188 else if (frp->fr_layout == FR_COL)
3189 {
3190 /* Handle all the frames in the column. */
3191 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3192 frame_add_vsep(frp);
3193 }
3194 else /* frp->fr_layout == FR_ROW */
3195 {
3196 /* Only need to handle the last frame in the row. */
3197 frp = frp->fr_child;
3198 while (frp->fr_next != NULL)
3199 frp = frp->fr_next;
3200 frame_add_vsep(frp);
3201 }
3202}
3203
3204/*
3205 * Set frame width from the window it contains.
3206 */
3207 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003208frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209{
3210 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3211}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212
3213/*
3214 * Set frame height from the window it contains.
3215 */
3216 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003217frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218{
Bram Moolenaard326ad62017-09-18 20:31:41 +02003219 wp->w_frame->fr_height = wp->w_height + wp->w_status_height
3220#ifdef FEAT_MENU
3221 + wp->w_winbar_height
3222#endif
3223 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224}
3225
3226/*
3227 * Compute the minimal height for frame "topfrp".
3228 * Uses the 'winminheight' option.
3229 * When "next_curwin" isn't NULL, use p_wh for this window.
3230 * When "next_curwin" is NOWIN, don't use at least one line for the current
3231 * window.
3232 */
3233 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003234frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235{
3236 frame_T *frp;
3237 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239
3240 if (topfrp->fr_win != NULL)
3241 {
3242 if (topfrp->fr_win == next_curwin)
3243 m = p_wh + topfrp->fr_win->w_status_height;
3244 else
3245 {
3246 /* window: minimal height of the window plus status line */
3247 m = p_wmh + topfrp->fr_win->w_status_height;
3248 /* Current window is minimal one line high */
3249 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3250 ++m;
3251 }
3252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 else if (topfrp->fr_layout == FR_ROW)
3254 {
3255 /* get the minimal height from each frame in this row */
3256 m = 0;
3257 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3258 {
3259 n = frame_minheight(frp, next_curwin);
3260 if (n > m)
3261 m = n;
3262 }
3263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 else
3265 {
3266 /* Add up the minimal heights for all frames in this column. */
3267 m = 0;
3268 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3269 m += frame_minheight(frp, next_curwin);
3270 }
3271
3272 return m;
3273}
3274
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275/*
3276 * Compute the minimal width for frame "topfrp".
3277 * When "next_curwin" isn't NULL, use p_wiw for this window.
3278 * When "next_curwin" is NOWIN, don't use at least one column for the current
3279 * window.
3280 */
3281 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003282frame_minwidth(
3283 frame_T *topfrp,
3284 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285{
3286 frame_T *frp;
3287 int m, n;
3288
3289 if (topfrp->fr_win != NULL)
3290 {
3291 if (topfrp->fr_win == next_curwin)
3292 m = p_wiw + topfrp->fr_win->w_vsep_width;
3293 else
3294 {
3295 /* window: minimal width of the window plus separator column */
3296 m = p_wmw + topfrp->fr_win->w_vsep_width;
3297 /* Current window is minimal one column wide */
3298 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3299 ++m;
3300 }
3301 }
3302 else if (topfrp->fr_layout == FR_COL)
3303 {
3304 /* get the minimal width from each frame in this column */
3305 m = 0;
3306 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3307 {
3308 n = frame_minwidth(frp, next_curwin);
3309 if (n > m)
3310 m = n;
3311 }
3312 }
3313 else
3314 {
3315 /* Add up the minimal widths for all frames in this row. */
3316 m = 0;
3317 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3318 m += frame_minwidth(frp, next_curwin);
3319 }
3320
3321 return m;
3322}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323
3324
3325/*
3326 * Try to close all windows except current one.
3327 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3328 * used and the buffer was modified.
3329 *
3330 * Used by ":bdel" and ":only".
3331 */
3332 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003333close_others(
3334 int message,
3335 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336{
3337 win_T *wp;
3338 win_T *nextwp;
3339 int r;
3340
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003341 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 {
3343 if (message
3344#ifdef FEAT_AUTOCMD
3345 && !autocmd_busy
3346#endif
3347 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003348 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 return;
3350 }
3351
3352 /* Be very careful here: autocommands may change the window layout. */
3353 for (wp = firstwin; win_valid(wp); wp = nextwp)
3354 {
3355 nextwp = wp->w_next;
3356 if (wp != curwin) /* don't close current window */
3357 {
3358
3359 /* Check if it's allowed to abandon this window */
3360 r = can_abandon(wp->w_buffer, forceit);
3361#ifdef FEAT_AUTOCMD
3362 if (!win_valid(wp)) /* autocommands messed wp up */
3363 {
3364 nextwp = firstwin;
3365 continue;
3366 }
3367#endif
3368 if (!r)
3369 {
3370#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3371 if (message && (p_confirm || cmdmod.confirm) && p_write)
3372 {
3373 dialog_changed(wp->w_buffer, FALSE);
3374# ifdef FEAT_AUTOCMD
3375 if (!win_valid(wp)) /* autocommands messed wp up */
3376 {
3377 nextwp = firstwin;
3378 continue;
3379 }
3380# endif
3381 }
3382 if (bufIsChanged(wp->w_buffer))
3383#endif
3384 continue;
3385 }
Bram Moolenaareb44a682017-08-03 22:44:55 +02003386 win_close(wp, !buf_hide(wp->w_buffer)
3387 && !bufIsChanged(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 }
3389 }
3390
Bram Moolenaar459ca562016-11-10 18:16:33 +01003391 if (message && !ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 EMSG(_("E445: Other window contains changes"));
3393}
3394
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003396 * Init the current window "curwin".
3397 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 */
3399 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003400curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003402 win_init_empty(curwin);
3403}
3404
3405 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003406win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003407{
3408 redraw_win_later(wp, NOT_VALID);
3409 wp->w_lines_valid = 0;
3410 wp->w_cursor.lnum = 1;
3411 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003413 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003415 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3416 wp->w_pcmark.col = 0;
3417 wp->w_prev_pcmark.lnum = 0;
3418 wp->w_prev_pcmark.col = 0;
3419 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003421 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003423 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003425 if (wp->w_p_rl)
3426 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003428 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003430#ifdef FEAT_SYN_HL
3431 wp->w_s = &wp->w_buffer->b_s;
3432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433}
3434
3435/*
3436 * Allocate the first window and put an empty buffer in it.
3437 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003438 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003440 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003441win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003443 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003444 return FAIL;
3445
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003446 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003447 if (first_tabpage == NULL)
3448 return FAIL;
3449 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003450 curtab = first_tabpage;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003451
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003452 return OK;
3453}
3454
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003455#if defined(FEAT_AUTOCMD) || defined(PROTO)
3456/*
3457 * Init "aucmd_win". This can only be done after the first
3458 * window is fully initialized, thus it can't be in win_alloc_first().
3459 */
3460 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003461win_alloc_aucmd_win(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003462{
3463 aucmd_win = win_alloc(NULL, TRUE);
3464 if (aucmd_win != NULL)
3465 {
3466 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003467 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003468 new_frame(aucmd_win);
3469 }
3470}
3471#endif
3472
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003473/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003474 * Allocate the first window or the first window in a new tab page.
3475 * When "oldwin" is NULL create an empty buffer for it.
Bram Moolenaar4033c552017-09-16 20:54:51 +02003476 * When "oldwin" is not NULL copy info from it to the new window.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003477 * Return FAIL when something goes wrong (out of memory).
3478 */
3479 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003480win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003481{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003482 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003483 if (oldwin == NULL)
3484 {
3485 /* Very first window, need to create an empty buffer for it and
3486 * initialize from scratch. */
3487 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3488 if (curwin == NULL || curbuf == NULL)
3489 return FAIL;
3490 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003491#ifdef FEAT_SYN_HL
3492 curwin->w_s = &(curbuf->b_s);
3493#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003494 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003495 curwin->w_alist = &global_alist;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003496 curwin_init(); /* init current window */
3497 }
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003498 else
3499 {
3500 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003501 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003502
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003503 /* We don't want cursor- and scroll-binding in the first window. */
3504 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003507 new_frame(curwin);
3508 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003509 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003510 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 topframe->fr_height = Rows - p_ch;
3513 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003514
3515 return OK;
3516}
3517
3518/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003519 * Create a frame for window "wp".
3520 */
3521 static void
3522new_frame(win_T *wp)
3523{
3524 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3525
3526 wp->w_frame = frp;
3527 if (frp != NULL)
3528 {
3529 frp->fr_layout = FR_LEAF;
3530 frp->fr_win = wp;
3531 }
3532}
3533
3534/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003535 * Initialize the window and frame size to the maximum.
3536 */
3537 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003538win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003539{
3540 firstwin->w_height = ROWS_AVAIL;
3541 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003542 firstwin->w_width = Columns;
3543 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544}
3545
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003546/*
3547 * Allocate a new tabpage_T and init the values.
3548 * Returns NULL when out of memory.
3549 */
3550 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003551alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003552{
3553 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003554# ifdef FEAT_GUI
3555 int i;
3556# endif
3557
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003558
3559 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003560 if (tp == NULL)
3561 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003562
Bram Moolenaar429fa852013-04-15 12:27:36 +02003563# ifdef FEAT_EVAL
3564 /* init t: variables */
3565 tp->tp_vars = dict_alloc();
3566 if (tp->tp_vars == NULL)
3567 {
3568 vim_free(tp);
3569 return NULL;
3570 }
3571 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3572# endif
3573
3574# ifdef FEAT_GUI
3575 for (i = 0; i < 3; i++)
3576 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003577# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003578# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003579 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003580# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003581 tp->tp_ch_used = p_ch;
3582
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003583 return tp;
3584}
3585
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003586 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003587free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003588{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003589 int idx;
3590
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003591# ifdef FEAT_DIFF
3592 diff_clear(tp);
3593# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003594 for (idx = 0; idx < SNAP_COUNT; ++idx)
3595 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003596#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003597 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3598 hash_init(&tp->tp_vars->dv_hashtab);
3599 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003600#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003601
3602#ifdef FEAT_PYTHON
3603 python_tabpage_free(tp);
3604#endif
3605
3606#ifdef FEAT_PYTHON3
3607 python3_tabpage_free(tp);
3608#endif
3609
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003610 vim_free(tp);
3611}
3612
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003613/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003614 * Create a new Tab page with one window.
3615 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003616 * When "after" is 0 put it just after the current Tab page.
3617 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003618 * Return FAIL or OK.
3619 */
3620 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003621win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003622{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003623 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003624 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003625 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003626
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003627 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003628 if (newtp == NULL)
3629 return FAIL;
3630
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003631 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003632 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003633 {
3634 vim_free(newtp);
3635 return FAIL;
3636 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003637 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003638
3639 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003640 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003641 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003642 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003643 if (after == 1)
3644 {
3645 /* New tab page becomes the first one. */
3646 newtp->tp_next = first_tabpage;
3647 first_tabpage = newtp;
3648 }
3649 else
3650 {
3651 if (after > 0)
3652 {
3653 /* Put new tab page before tab page "after". */
3654 n = 2;
3655 for (tp = first_tabpage; tp->tp_next != NULL
3656 && n < after; tp = tp->tp_next)
3657 ++n;
3658 }
3659 newtp->tp_next = tp->tp_next;
3660 tp->tp_next = newtp;
3661 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003662 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003663 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003664 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003665
3666 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003667 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003668
3669#if defined(FEAT_GUI)
3670 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3671 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003672 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003673#endif
3674
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003675 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003676#ifdef FEAT_AUTOCMD
Bram Moolenaarc917da42016-07-19 22:31:36 +02003677 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003678 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003679 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003680 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003681#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003682 return OK;
3683 }
3684
3685 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003686 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003687 return FAIL;
3688}
3689
3690/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003691 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3692 * like with ":split".
3693 * Returns OK if a new tab page was created, FAIL otherwise.
3694 */
3695 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003696may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003697{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003698 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003699
Bram Moolenaard326ce82007-03-11 14:48:29 +00003700 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003701 {
3702 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003703 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003704 return win_new_tabpage(n);
3705 }
3706 return FAIL;
3707}
3708
3709/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003710 * Create up to "maxcount" tabpages with empty windows.
3711 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003712 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003713 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003714make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003715{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003716 int count = maxcount;
3717 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003718
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003719 /* Limit to 'tabpagemax' tabs. */
3720 if (count > p_tpm)
3721 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003722
3723#ifdef FEAT_AUTOCMD
3724 /*
3725 * Don't execute autocommands while creating the tab pages. Must do that
3726 * when putting the buffers in the windows.
3727 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003728 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003729#endif
3730
3731 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003732 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003733 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003734
3735#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003736 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003737#endif
3738
3739 /* return actual number of tab pages */
3740 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003741}
3742
3743/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003744 * Return TRUE when "tpc" points to a valid tab page.
3745 */
3746 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003747valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003748{
3749 tabpage_T *tp;
3750
Bram Moolenaar29323592016-07-24 22:04:11 +02003751 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003752 if (tp == tpc)
3753 return TRUE;
3754 return FALSE;
3755}
3756
3757/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003758 * Return TRUE when "tpc" points to a valid tab page and at least one window is
3759 * valid.
3760 */
3761 int
3762valid_tabpage_win(tabpage_T *tpc)
3763{
3764 tabpage_T *tp;
3765 win_T *wp;
3766
3767 FOR_ALL_TABPAGES(tp)
3768 {
3769 if (tp == tpc)
3770 {
3771 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
3772 {
3773 if (win_valid_any_tab(wp))
3774 return TRUE;
3775 }
3776 return FALSE;
3777 }
3778 }
3779 /* shouldn't happen */
3780 return FALSE;
3781}
3782
3783/*
3784 * Close tabpage "tab", assuming it has no windows in it.
3785 * There must be another tabpage or this will crash.
3786 */
3787 void
3788close_tabpage(tabpage_T *tab)
3789{
3790 tabpage_T *ptp;
3791
3792 if (tab == first_tabpage)
3793 {
3794 first_tabpage = tab->tp_next;
3795 ptp = first_tabpage;
3796 }
3797 else
3798 {
3799 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tab;
3800 ptp = ptp->tp_next)
3801 ;
Bram Moolenaara37ffaa2017-03-21 21:58:00 +01003802 assert(ptp != NULL);
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003803 ptp->tp_next = tab->tp_next;
3804 }
3805
3806 goto_tabpage_tp(ptp, FALSE, FALSE);
3807 free_tabpage(tab);
3808}
3809
3810/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003811 * Find tab page "n" (first one is 1). Returns NULL when not found.
3812 */
3813 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003814find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003815{
3816 tabpage_T *tp;
3817 int i = 1;
3818
3819 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3820 ++i;
3821 return tp;
3822}
3823
3824/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003825 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003826 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003827 */
3828 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003829tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003830{
3831 int i = 1;
3832 tabpage_T *tp;
3833
3834 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3835 ++i;
3836 return i;
3837}
3838
3839/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003840 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003841 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003842 * FAIL.
3843 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003844 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003845 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003846leave_tabpage(
3847 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003848 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003849 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003850{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003851 tabpage_T *tp = curtab;
3852
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003853 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003854#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003855 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003856 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003857 if (new_curbuf != curbuf)
3858 {
3859 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3860 if (curtab != tp)
3861 return FAIL;
3862 }
3863 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3864 if (curtab != tp)
3865 return FAIL;
3866 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003867 if (curtab != tp)
3868 return FAIL;
3869 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003870#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003871#if defined(FEAT_GUI)
3872 /* Remove the scrollbars. They may be added back later. */
3873 if (gui.in_use)
3874 gui_remove_scrollbars();
3875#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003876 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003877 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003878 tp->tp_firstwin = firstwin;
3879 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003880 tp->tp_old_Rows = Rows;
3881 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003882 firstwin = NULL;
3883 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003884 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003885}
3886
3887/*
3888 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003889 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003890 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3891 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003892 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003893 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003894enter_tabpage(
3895 tabpage_T *tp,
3896 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003897 int trigger_enter_autocmds,
3898 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003899{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003900 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003901 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003902
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003903 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003904 firstwin = tp->tp_firstwin;
3905 lastwin = tp->tp_lastwin;
3906 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003907
3908 /* We would like doing the TabEnter event first, but we don't have a
3909 * valid current window yet, which may break some commands.
3910 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaarc917da42016-07-19 22:31:36 +02003911 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE,
Bram Moolenaard6949742013-06-16 14:18:28 +02003912 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003913 prevwin = next_prevwin;
3914
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003915 last_status(FALSE); /* status line may appear or disappear */
3916 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003917 must_redraw = CLEAR; /* need to redraw everything */
3918#ifdef FEAT_DIFF
3919 diff_need_scrollbind = TRUE;
3920#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003921
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003922 /* The tabpage line may have appeared or disappeared, may need to resize
3923 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003924 * frame sizes too. Use the stored value of p_ch, so that it can be
3925 * different for each tab page. */
3926 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003927 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3928#ifdef FEAT_GUI_TABLINE
3929 && !gui_use_tabline()
3930#endif
3931 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003932 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003933 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003934 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003935
3936#if defined(FEAT_GUI)
3937 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3938 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003939 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003940#endif
3941
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003942#ifdef FEAT_AUTOCMD
3943 /* Apply autocommands after updating the display, when 'rows' and
3944 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003945 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003946 {
3947 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3948 if (old_curbuf != curbuf)
3949 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3950 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003951#endif
3952
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003953 redraw_all_later(CLEAR);
3954}
3955
3956/*
3957 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003958 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003959 */
3960 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003961goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003962{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003963 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003964 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003965 int i;
3966
Bram Moolenaard68071d2006-05-02 22:08:30 +00003967 if (text_locked())
3968 {
3969 /* Not allowed when editing the command line. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02003970 text_locked_msg();
Bram Moolenaard68071d2006-05-02 22:08:30 +00003971 return;
3972 }
3973
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003974 /* If there is only one it can't work. */
3975 if (first_tabpage->tp_next == NULL)
3976 {
3977 if (n > 1)
3978 beep_flush();
3979 return;
3980 }
3981
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003982 if (n == 0)
3983 {
3984 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003985 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003986 tp = first_tabpage;
3987 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003988 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003989 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003990 else if (n < 0)
3991 {
3992 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3993 * this N times. */
3994 ttp = curtab;
3995 for (i = n; i < 0; ++i)
3996 {
3997 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
3998 tp = tp->tp_next)
3999 ;
4000 ttp = tp;
4001 }
4002 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004003 else if (n == 9999)
4004 {
4005 /* Go to last tab page. */
4006 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
4007 ;
4008 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004009 else
4010 {
4011 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004012 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00004013 if (tp == NULL)
4014 {
4015 beep_flush();
4016 return;
4017 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004018 }
4019
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004020 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004021
4022#ifdef FEAT_GUI_TABLINE
4023 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00004024 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004025#endif
4026}
4027
4028/*
4029 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004030 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
4031 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004032 * Note: doesn't update the GUI tab.
4033 */
4034 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004035goto_tabpage_tp(
4036 tabpage_T *tp,
4037 int trigger_enter_autocmds,
4038 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004039{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02004040 /* Don't repeat a message in another tab page. */
4041 set_keep_msg(NULL, 0);
4042
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004043 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
4044 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004045 {
4046 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004047 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
4048 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004049 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004050 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
4051 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004052 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004053}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054
4055/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004056 * Enter window "wp" in tab page "tp".
4057 * Also updates the GUI tab.
4058 */
4059 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004060goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004061{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004062 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004063 if (curtab == tp && win_valid(wp))
4064 {
4065 win_enter(wp, TRUE);
4066# ifdef FEAT_GUI_TABLINE
4067 if (gui_use_tabline())
4068 gui_mch_set_curtab(tabpage_index(curtab));
4069# endif
4070 }
4071}
4072
4073/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004074 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004075 */
4076 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004077tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004078{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004079 int n = 1;
4080 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004081
4082 if (first_tabpage->tp_next == NULL)
4083 return;
4084
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004085 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
4086 ++n;
4087
4088 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
4089 && tp->tp_next == curtab))
4090 return;
4091
4092 tp_dst = tp;
4093
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004094 /* Remove the current tab page from the list of tab pages. */
4095 if (curtab == first_tabpage)
4096 first_tabpage = curtab->tp_next;
4097 else
4098 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004099 FOR_ALL_TABPAGES(tp)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004100 if (tp->tp_next == curtab)
4101 break;
4102 if (tp == NULL) /* "cannot happen" */
4103 return;
4104 tp->tp_next = curtab->tp_next;
4105 }
4106
4107 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004108 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004109 {
4110 curtab->tp_next = first_tabpage;
4111 first_tabpage = curtab;
4112 }
4113 else
4114 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004115 curtab->tp_next = tp_dst->tp_next;
4116 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004117 }
4118
4119 /* Need to redraw the tabline. Tab page contents doesn't change. */
4120 redraw_tabline = TRUE;
4121}
4122
4123
4124/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 * Go to another window.
4126 * When jumping to another buffer, stop Visual mode. Do this before
4127 * changing windows so we can yank the selection into the '*' register.
4128 * When jumping to another window on the same buffer, adjust its cursor
4129 * position to keep the same Visual area.
4130 */
4131 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004132win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004134#ifdef FEAT_CONCEAL
4135 win_T *owp = curwin;
4136#endif
4137
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004138 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 {
4140 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004141 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 return;
4143 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004144#ifdef FEAT_AUTOCMD
4145 if (curbuf_locked())
4146 return;
4147#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004148
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 if (wp->w_buffer != curbuf)
4150 reset_VIsual_and_resel();
4151 else if (VIsual_active)
4152 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153
4154#ifdef FEAT_GUI
4155 need_mouse_correct = TRUE;
4156#endif
4157 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004158
4159#ifdef FEAT_CONCEAL
4160 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004161 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004162 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004163 if (curwin->w_p_cole > 0 && !msg_scrolled)
4164 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004165#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166}
4167
4168#if defined(FEAT_PERL) || defined(PROTO)
4169/*
4170 * Find window number "winnr" (counting top to bottom).
4171 */
4172 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004173win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174{
4175 win_T *wp;
4176
Bram Moolenaar29323592016-07-24 22:04:11 +02004177 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 if (--winnr == 0)
4179 break;
4180 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181}
4182#endif
4183
Bram Moolenaar4033c552017-09-16 20:54:51 +02004184#if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004185/*
4186 * Find the tabpage for window "win".
4187 */
4188 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004189win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004190{
4191 win_T *wp;
4192 tabpage_T *tp;
4193
Bram Moolenaar29323592016-07-24 22:04:11 +02004194 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004195 if (wp == win)
4196 return tp;
4197 return NULL;
4198}
4199#endif
4200
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201/*
4202 * Move to window above or below "count" times.
4203 */
4204 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004205win_goto_ver(
4206 int up, /* TRUE to go to win above */
4207 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208{
4209 frame_T *fr;
4210 frame_T *nfr;
4211 frame_T *foundfr;
4212
4213 foundfr = curwin->w_frame;
4214 while (count--)
4215 {
4216 /*
4217 * First go upwards in the tree of frames until we find a upwards or
4218 * downwards neighbor.
4219 */
4220 fr = foundfr;
4221 for (;;)
4222 {
4223 if (fr == topframe)
4224 goto end;
4225 if (up)
4226 nfr = fr->fr_prev;
4227 else
4228 nfr = fr->fr_next;
4229 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4230 break;
4231 fr = fr->fr_parent;
4232 }
4233
4234 /*
4235 * Now go downwards to find the bottom or top frame in it.
4236 */
4237 for (;;)
4238 {
4239 if (nfr->fr_layout == FR_LEAF)
4240 {
4241 foundfr = nfr;
4242 break;
4243 }
4244 fr = nfr->fr_child;
4245 if (nfr->fr_layout == FR_ROW)
4246 {
4247 /* Find the frame at the cursor row. */
4248 while (fr->fr_next != NULL
4249 && frame2win(fr)->w_wincol + fr->fr_width
4250 <= curwin->w_wincol + curwin->w_wcol)
4251 fr = fr->fr_next;
4252 }
4253 if (nfr->fr_layout == FR_COL && up)
4254 while (fr->fr_next != NULL)
4255 fr = fr->fr_next;
4256 nfr = fr;
4257 }
4258 }
4259end:
4260 if (foundfr != NULL)
4261 win_goto(foundfr->fr_win);
4262}
4263
4264/*
4265 * Move to left or right window.
4266 */
4267 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004268win_goto_hor(
4269 int left, /* TRUE to go to left win */
4270 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271{
4272 frame_T *fr;
4273 frame_T *nfr;
4274 frame_T *foundfr;
4275
4276 foundfr = curwin->w_frame;
4277 while (count--)
4278 {
4279 /*
4280 * First go upwards in the tree of frames until we find a left or
4281 * right neighbor.
4282 */
4283 fr = foundfr;
4284 for (;;)
4285 {
4286 if (fr == topframe)
4287 goto end;
4288 if (left)
4289 nfr = fr->fr_prev;
4290 else
4291 nfr = fr->fr_next;
4292 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4293 break;
4294 fr = fr->fr_parent;
4295 }
4296
4297 /*
4298 * Now go downwards to find the leftmost or rightmost frame in it.
4299 */
4300 for (;;)
4301 {
4302 if (nfr->fr_layout == FR_LEAF)
4303 {
4304 foundfr = nfr;
4305 break;
4306 }
4307 fr = nfr->fr_child;
4308 if (nfr->fr_layout == FR_COL)
4309 {
4310 /* Find the frame at the cursor row. */
4311 while (fr->fr_next != NULL
4312 && frame2win(fr)->w_winrow + fr->fr_height
4313 <= curwin->w_winrow + curwin->w_wrow)
4314 fr = fr->fr_next;
4315 }
4316 if (nfr->fr_layout == FR_ROW && left)
4317 while (fr->fr_next != NULL)
4318 fr = fr->fr_next;
4319 nfr = fr;
4320 }
4321 }
4322end:
4323 if (foundfr != NULL)
4324 win_goto(foundfr->fr_win);
4325}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326
4327/*
4328 * Make window "wp" the current window.
4329 */
4330 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004331win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332{
Bram Moolenaarc917da42016-07-19 22:31:36 +02004333 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334}
4335
4336/*
4337 * Make window wp the current window.
4338 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4339 * been closed and isn't valid.
4340 */
4341 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004342win_enter_ext(
4343 win_T *wp,
4344 int undo_sync,
4345 int curwin_invalid,
Bram Moolenaarc917da42016-07-19 22:31:36 +02004346 int trigger_new_autocmds UNUSED,
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004347 int trigger_enter_autocmds UNUSED,
4348 int trigger_leave_autocmds UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349{
4350#ifdef FEAT_AUTOCMD
4351 int other_buffer = FALSE;
4352#endif
4353
4354 if (wp == curwin && !curwin_invalid) /* nothing to do */
4355 return;
4356
4357#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004358 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
4360 /*
4361 * Be careful: If autocommands delete the window, return now.
4362 */
4363 if (wp->w_buffer != curbuf)
4364 {
4365 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4366 other_buffer = TRUE;
4367 if (!win_valid(wp))
4368 return;
4369 }
4370 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4371 if (!win_valid(wp))
4372 return;
4373# ifdef FEAT_EVAL
4374 /* autocmds may abort script processing */
4375 if (aborting())
4376 return;
4377# endif
4378 }
4379#endif
4380
4381 /* sync undo before leaving the current buffer */
4382 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004383 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004384
4385 /* Might need to scroll the old window before switching, e.g., when the
4386 * cursor was moved. */
4387 update_topline();
4388
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 /* may have to copy the buffer options when 'cpo' contains 'S' */
4390 if (wp->w_buffer != curbuf)
4391 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4392 if (!curwin_invalid)
4393 {
4394 prevwin = curwin; /* remember for CTRL-W p */
4395 curwin->w_redr_status = TRUE;
4396 }
4397 curwin = wp;
4398 curbuf = wp->w_buffer;
4399 check_cursor();
4400#ifdef FEAT_VIRTUALEDIT
4401 if (!virtual_active())
4402 curwin->w_cursor.coladd = 0;
4403#endif
4404 changed_line_abv_curs(); /* assume cursor position needs updating */
4405
4406 if (curwin->w_localdir != NULL)
4407 {
4408 /* Window has a local directory: Save current directory as global
4409 * directory (unless that was done already) and change to the local
4410 * directory. */
4411 if (globaldir == NULL)
4412 {
4413 char_u cwd[MAXPATHL];
4414
4415 if (mch_dirname(cwd, MAXPATHL) == OK)
4416 globaldir = vim_strsave(cwd);
4417 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004418 if (mch_chdir((char *)curwin->w_localdir) == 0)
4419 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 }
4421 else if (globaldir != NULL)
4422 {
4423 /* Window doesn't have a local directory and we are not in the global
4424 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004425 ignored = mch_chdir((char *)globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 vim_free(globaldir);
4427 globaldir = NULL;
4428 shorten_fnames(TRUE);
4429 }
4430
4431#ifdef FEAT_AUTOCMD
Bram Moolenaarc917da42016-07-19 22:31:36 +02004432 if (trigger_new_autocmds)
4433 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004434 if (trigger_enter_autocmds)
4435 {
4436 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4437 if (other_buffer)
4438 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4439 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440#endif
4441
4442#ifdef FEAT_TITLE
4443 maketitle();
4444#endif
4445 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004446 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 if (restart_edit)
4448 redraw_later(VALID); /* causes status line redraw */
4449
4450 /* set window height to desired minimal value */
4451 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4452 win_setheight((int)p_wh);
4453 else if (curwin->w_height == 0)
4454 win_setheight(1);
4455
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004457 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459
4460#ifdef FEAT_MOUSE
4461 setmouse(); /* in case jumped to/from help buffer */
4462#endif
4463
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004464 /* Change directories when the 'acd' option is set. */
4465 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466}
4467
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004470 * Jump to the first open window that contains buffer "buf", if one exists.
4471 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 */
4473 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004474buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004476 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004478 if (curwin->w_buffer == buf)
4479 wp = curwin;
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004480 else
Bram Moolenaar29323592016-07-24 22:04:11 +02004481 FOR_ALL_WINDOWS(wp)
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004482 if (wp->w_buffer == buf)
4483 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 if (wp != NULL)
4485 win_enter(wp, FALSE);
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004486 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004488
4489/*
4490 * Jump to the first open window in any tab page that contains buffer "buf",
4491 * if one exists.
4492 * Returns a pointer to the window found, otherwise NULL.
4493 */
4494 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004495buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004496{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004497 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004498 tabpage_T *tp;
4499
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004500 if (wp != NULL)
4501 return wp;
4502
Bram Moolenaar29323592016-07-24 22:04:11 +02004503 FOR_ALL_TABPAGES(tp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004504 if (tp != curtab)
4505 {
4506 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4507 if (wp->w_buffer == buf)
4508 break;
4509 if (wp != NULL)
4510 {
4511 goto_tabpage_win(tp, wp);
4512 if (curwin != wp)
4513 wp = NULL; /* something went wrong */
4514 break;
4515 }
4516 }
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004517 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004518}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004520static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004521
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004523 * Allocate a window structure and link it in the window list when "hidden" is
4524 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004527win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004529 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530
4531 /*
4532 * allocate window structure and linesizes arrays
4533 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004534 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004535 if (new_wp == NULL)
4536 return NULL;
4537
4538 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004540 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004541 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 }
4543
Bram Moolenaar86edef62016-03-13 18:07:30 +01004544 new_wp->w_id = ++last_win_id;
4545
Bram Moolenaar429fa852013-04-15 12:27:36 +02004546#ifdef FEAT_EVAL
4547 /* init w: variables */
4548 new_wp->w_vars = dict_alloc();
4549 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004551 win_free_lsize(new_wp);
4552 vim_free(new_wp);
4553 return NULL;
4554 }
4555 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004556#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004557
4558#ifdef FEAT_AUTOCMD
4559 /* Don't execute autocommands while the window is not properly
4560 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4561 * event. */
4562 block_autocmds();
4563#endif
4564 /*
4565 * link the window in the window list
4566 */
Bram Moolenaar429fa852013-04-15 12:27:36 +02004567 if (!hidden)
4568 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004569 new_wp->w_wincol = 0;
4570 new_wp->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571
Bram Moolenaar429fa852013-04-15 12:27:36 +02004572 /* position the display and the cursor at the top of the file. */
4573 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004575 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004577 new_wp->w_botline = 2;
4578 new_wp->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579#ifdef FEAT_SCROLLBIND
Bram Moolenaar429fa852013-04-15 12:27:36 +02004580 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581#endif
4582
Bram Moolenaar429fa852013-04-15 12:27:36 +02004583 /* We won't calculate w_fraction until resizing the window */
4584 new_wp->w_fraction = 0;
4585 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586
4587#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004588 if (gui.in_use)
4589 {
4590 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4591 SBAR_LEFT, new_wp);
4592 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4593 SBAR_RIGHT, new_wp);
4594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595#endif
4596#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004597 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598#endif
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004599#ifdef FEAT_AUTOCMD
Bram Moolenaar429fa852013-04-15 12:27:36 +02004600 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004601#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004602#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004603 new_wp->w_match_head = NULL;
4604 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004605#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004606 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607}
4608
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004610 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 */
4612 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004613win_free(
4614 win_T *wp,
4615 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616{
4617 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004618 buf_T *buf;
4619 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004621#ifdef FEAT_FOLDING
4622 clearFolding(wp);
4623#endif
4624
4625 /* reduce the reference count to the argument list. */
4626 alist_unlink(wp->w_alist);
4627
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004628#ifdef FEAT_AUTOCMD
4629 /* Don't execute autocommands while the window is halfway being deleted.
4630 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004631 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004632#endif
4633
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004634#ifdef FEAT_LUA
4635 lua_window_free(wp);
4636#endif
4637
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004638#ifdef FEAT_MZSCHEME
4639 mzscheme_window_free(wp);
4640#endif
4641
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642#ifdef FEAT_PERL
4643 perl_win_free(wp);
4644#endif
4645
4646#ifdef FEAT_PYTHON
4647 python_window_free(wp);
4648#endif
4649
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004650#ifdef FEAT_PYTHON3
4651 python3_window_free(wp);
4652#endif
4653
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654#ifdef FEAT_TCL
4655 tcl_window_free(wp);
4656#endif
4657
4658#ifdef FEAT_RUBY
4659 ruby_window_free(wp);
4660#endif
4661
4662 clear_winopt(&wp->w_onebuf_opt);
4663 clear_winopt(&wp->w_allbuf_opt);
4664
4665#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004666 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4667 hash_init(&wp->w_vars->dv_hashtab);
4668 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669#endif
4670
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004671 {
4672 tabpage_T *ttp;
4673
4674 if (prevwin == wp)
4675 prevwin = NULL;
Bram Moolenaar29323592016-07-24 22:04:11 +02004676 FOR_ALL_TABPAGES(ttp)
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004677 if (ttp->tp_prevwin == wp)
4678 ttp->tp_prevwin = NULL;
4679 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 win_free_lsize(wp);
4681
4682 for (i = 0; i < wp->w_tagstacklen; ++i)
4683 vim_free(wp->w_tagstack[i].tagname);
4684
4685 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004686
Bram Moolenaarff18df02013-07-24 17:51:57 +02004687 /* Remove the window from the b_wininfo lists, it may happen that the
4688 * freed memory is re-used for another window. */
Bram Moolenaar29323592016-07-24 22:04:11 +02004689 FOR_ALL_BUFFERS(buf)
Bram Moolenaarff18df02013-07-24 17:51:57 +02004690 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4691 if (wip->wi_win == wp)
4692 wip->wi_win = NULL;
4693
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004695 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004697
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698#ifdef FEAT_JUMPLIST
4699 free_jumplist(wp);
4700#endif
4701
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004702#ifdef FEAT_QUICKFIX
4703 qf_free_all(wp);
4704#endif
4705
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706#ifdef FEAT_GUI
4707 if (gui.in_use)
4708 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4710 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4711 }
4712#endif /* FEAT_GUI */
4713
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02004714#ifdef FEAT_MENU
4715 remove_winbar(wp);
4716#endif
4717
Bram Moolenaar860cae12010-06-05 23:22:07 +02004718#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004719 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004720#endif
4721
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004722#ifdef FEAT_AUTOCMD
4723 if (wp != aucmd_win)
4724#endif
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004725 win_remove(wp, tp);
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004726#ifdef FEAT_AUTOCMD
Bram Moolenaar3be85852014-06-12 14:01:31 +02004727 if (autocmd_busy)
4728 {
4729 wp->w_next = au_pending_free_win;
4730 au_pending_free_win = wp;
4731 }
4732 else
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004733#endif
Bram Moolenaar3be85852014-06-12 14:01:31 +02004734 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004735
4736#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004737 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739}
4740
4741/*
4742 * Append window "wp" in the window list after window "after".
4743 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004744 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004745win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746{
4747 win_T *before;
4748
4749 if (after == NULL) /* after NULL is in front of the first */
4750 before = firstwin;
4751 else
4752 before = after->w_next;
4753
4754 wp->w_next = before;
4755 wp->w_prev = after;
4756 if (after == NULL)
4757 firstwin = wp;
4758 else
4759 after->w_next = wp;
4760 if (before == NULL)
4761 lastwin = wp;
4762 else
4763 before->w_prev = wp;
4764}
4765
4766/*
4767 * Remove a window from the window list.
4768 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004769 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004770win_remove(
4771 win_T *wp,
4772 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773{
4774 if (wp->w_prev != NULL)
4775 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004776 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004777 firstwin = curtab->tp_firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004778 else
4779 tp->tp_firstwin = wp->w_next;
Bram Moolenaar816968d2017-09-29 21:29:18 +02004780
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 if (wp->w_next != NULL)
4782 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004783 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004784 lastwin = curtab->tp_lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004785 else
4786 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787}
4788
4789/*
4790 * Append frame "frp" in a frame list after frame "after".
4791 */
4792 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004793frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794{
4795 frp->fr_next = after->fr_next;
4796 after->fr_next = frp;
4797 if (frp->fr_next != NULL)
4798 frp->fr_next->fr_prev = frp;
4799 frp->fr_prev = after;
4800}
4801
4802/*
4803 * Insert frame "frp" in a frame list before frame "before".
4804 */
4805 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004806frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807{
4808 frp->fr_next = before;
4809 frp->fr_prev = before->fr_prev;
4810 before->fr_prev = frp;
4811 if (frp->fr_prev != NULL)
4812 frp->fr_prev->fr_next = frp;
4813 else
4814 frp->fr_parent->fr_child = frp;
4815}
4816
4817/*
4818 * Remove a frame from a frame list.
4819 */
4820 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004821frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822{
4823 if (frp->fr_prev != NULL)
4824 frp->fr_prev->fr_next = frp->fr_next;
4825 else
4826 frp->fr_parent->fr_child = frp->fr_next;
4827 if (frp->fr_next != NULL)
4828 frp->fr_next->fr_prev = frp->fr_prev;
4829}
4830
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831/*
4832 * Allocate w_lines[] for window "wp".
4833 * Return FAIL for failure, OK for success.
4834 */
4835 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004836win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837{
4838 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004839 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 if (wp->w_lines == NULL)
4841 return FAIL;
4842 return OK;
4843}
4844
4845/*
4846 * free lsize arrays for a window
4847 */
4848 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004849win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004851 /* TODO: why would wp be NULL here? */
4852 if (wp != NULL)
4853 {
4854 vim_free(wp->w_lines);
4855 wp->w_lines = NULL;
4856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857}
4858
4859/*
4860 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004861 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 */
4863 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004864shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004866 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867
4868 if (firstwin == NULL) /* not initialized yet */
4869 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 if (h < frame_minheight(topframe, NULL))
4871 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004872
4873 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 * that doesn't result in the right height, forget about that option. */
4875 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004876 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 frame_new_height(topframe, h, FALSE, FALSE);
4878
4879 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 compute_cmdrow();
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004881 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004882
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883#if 0
4884 /* Disabled: don't want making the screen smaller make a window larger. */
4885 if (p_ea)
4886 win_equal(curwin, FALSE, 'v');
4887#endif
4888}
4889
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890/*
4891 * Called from win_new_shellsize() after Columns changed.
4892 */
4893 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004894shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895{
4896 if (firstwin == NULL) /* not initialized yet */
4897 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004898
4899 /* First try setting the widths of windows with 'winfixwidth'. If that
4900 * doesn't result in the right width, forget about that option. */
4901 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004902 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004903 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4904
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4906#if 0
4907 /* Disabled: don't want making the screen smaller make a window larger. */
4908 if (p_ea)
4909 win_equal(curwin, FALSE, 'h');
4910#endif
4911}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912
4913#if defined(FEAT_CMDWIN) || defined(PROTO)
4914/*
4915 * Save the size of all windows in "gap".
4916 */
4917 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004918win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919
4920{
4921 win_T *wp;
4922
4923 ga_init2(gap, (int)sizeof(int), 1);
4924 if (ga_grow(gap, win_count() * 2) == OK)
Bram Moolenaar29323592016-07-24 22:04:11 +02004925 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 {
4927 ((int *)gap->ga_data)[gap->ga_len++] =
4928 wp->w_width + wp->w_vsep_width;
4929 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4930 }
4931}
4932
4933/*
4934 * Restore window sizes, but only if the number of windows is still the same.
4935 * Does not free the growarray.
4936 */
4937 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004938win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939{
4940 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004941 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942
4943 if (win_count() * 2 == gap->ga_len)
4944 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004945 /* The order matters, because frames contain other frames, but it's
4946 * difficult to get right. The easy way out is to do it twice. */
4947 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004949 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02004950 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb643e772014-07-16 15:18:26 +02004951 {
4952 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4953 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 }
4956 /* recompute the window positions */
4957 (void)win_comp_pos();
4958 }
4959}
4960#endif /* FEAT_CMDWIN */
4961
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962/*
4963 * Update the position for all windows, using the width and height of the
4964 * frames.
4965 * Returns the row just after the last window.
4966 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004967 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004968win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004970 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 int col = 0;
4972
4973 frame_comp_pos(topframe, &row, &col);
4974 return row;
4975}
4976
4977/*
4978 * Update the position of the windows in frame "topfrp", using the width and
4979 * height of the frames.
4980 * "*row" and "*col" are the top-left position of the frame. They are updated
4981 * to the bottom-right position plus one.
4982 */
4983 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004984frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985{
4986 win_T *wp;
4987 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 int startcol;
4989 int startrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990
4991 wp = topfrp->fr_win;
4992 if (wp != NULL)
4993 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004994 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 {
4996 /* position changed, redraw */
4997 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 redraw_win_later(wp, NOT_VALID);
5000 wp->w_redr_status = TRUE;
5001 }
5002 *row += wp->w_height + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 }
5005 else
5006 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 startrow = *row;
5008 startcol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
5010 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 if (topfrp->fr_layout == FR_ROW)
5012 *row = startrow; /* all frames are at the same row */
5013 else
5014 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 frame_comp_pos(frp, row, col);
5016 }
5017 }
5018}
5019
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020/*
5021 * Set current window height and take care of repositioning other windows to
5022 * fit around it.
5023 */
5024 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005025win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026{
5027 win_setheight_win(height, curwin);
5028}
5029
5030/*
5031 * Set the window height of window "win" and take care of repositioning other
5032 * windows to fit around it.
5033 */
5034 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005035win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036{
5037 int row;
5038
5039 if (win == curwin)
5040 {
5041 /* Always keep current window at least one line high, even when
5042 * 'winminheight' is zero. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 if (height < p_wmh)
5044 height = p_wmh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 if (height == 0)
5046 height = 1;
5047 }
5048
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 frame_setheight(win->w_frame, height + win->w_status_height);
5050
5051 /* recompute the window positions */
5052 row = win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053
5054 /*
5055 * If there is extra space created between the last window and the command
5056 * line, clear it.
5057 */
5058 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
5059 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5060 cmdline_row = row;
5061 msg_row = row;
5062 msg_col = 0;
5063
5064 redraw_all_later(NOT_VALID);
5065}
5066
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067/*
5068 * Set the height of a frame to "height" and take care that all frames and
5069 * windows inside it are resized. Also resize frames on the left and right if
5070 * the are in the same FR_ROW frame.
5071 *
5072 * Strategy:
5073 * If the frame is part of a FR_COL frame, try fitting the frame in that
5074 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5075 * go to containing frames to resize them and make room.
5076 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5077 * Check for the minimal height of the FR_ROW frame.
5078 * At the top level we can also use change the command line height.
5079 */
5080 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005081frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082{
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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 /*
5118 * Do this twice:
5119 * 1: compute room available, if it's not enough try resizing the
5120 * containing frame.
5121 * 2: compute the room available and adjust the height to it.
5122 * Try not to reduce the height of a window with 'winfixheight' set.
5123 */
5124 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 {
5126 room = 0;
5127 room_reserved = 0;
5128 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5129 frp = frp->fr_next)
5130 {
5131 if (frp != curfrp
5132 && frp->fr_win != NULL
5133 && frp->fr_win->w_p_wfh)
5134 room_reserved += frp->fr_height;
5135 room += frp->fr_height;
5136 if (frp != curfrp)
5137 room -= frame_minheight(frp, NULL);
5138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 if (curfrp->fr_width != Columns)
5140 room_cmdline = 0;
5141 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 {
5143 room_cmdline = Rows - p_ch - (lastwin->w_winrow
5144 + lastwin->w_height + lastwin->w_status_height);
5145 if (room_cmdline < 0)
5146 room_cmdline = 0;
5147 }
5148
5149 if (height <= room + room_cmdline)
5150 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 if (run == 2 || curfrp->fr_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 {
5153 if (height > room + room_cmdline)
5154 height = room + room_cmdline;
5155 break;
5156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 frame_setheight(curfrp->fr_parent, height
5158 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 }
5160
5161 /*
5162 * Compute the number of lines we will take from others frames (can be
5163 * negative!).
5164 */
5165 take = height - curfrp->fr_height;
5166
5167 /* If there is not enough room, also reduce the height of a window
5168 * with 'winfixheight' set. */
5169 if (height > room + room_cmdline - room_reserved)
5170 room_reserved = room + room_cmdline - height;
5171 /* If there is only a 'winfixheight' window and making the
5172 * window smaller, need to make the other window taller. */
5173 if (take < 0 && room - curfrp->fr_height < room_reserved)
5174 room_reserved = 0;
5175
5176 if (take > 0 && room_cmdline > 0)
5177 {
5178 /* use lines from cmdline first */
5179 if (take < room_cmdline)
5180 room_cmdline = take;
5181 take -= room_cmdline;
5182 topframe->fr_height += room_cmdline;
5183 }
5184
5185 /*
5186 * set the current frame to the new height
5187 */
5188 frame_new_height(curfrp, height, FALSE, FALSE);
5189
5190 /*
5191 * First take lines from the frames after the current frame. If
5192 * that is not enough, takes lines from frames above the current
5193 * frame.
5194 */
5195 for (run = 0; run < 2; ++run)
5196 {
5197 if (run == 0)
5198 frp = curfrp->fr_next; /* 1st run: start with next window */
5199 else
5200 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5201 while (frp != NULL && take != 0)
5202 {
5203 h = frame_minheight(frp, NULL);
5204 if (room_reserved > 0
5205 && frp->fr_win != NULL
5206 && frp->fr_win->w_p_wfh)
5207 {
5208 if (room_reserved >= frp->fr_height)
5209 room_reserved -= frp->fr_height;
5210 else
5211 {
5212 if (frp->fr_height - room_reserved > take)
5213 room_reserved = frp->fr_height - take;
5214 take -= frp->fr_height - room_reserved;
5215 frame_new_height(frp, room_reserved, FALSE, FALSE);
5216 room_reserved = 0;
5217 }
5218 }
5219 else
5220 {
5221 if (frp->fr_height - take < h)
5222 {
5223 take -= frp->fr_height - h;
5224 frame_new_height(frp, h, FALSE, FALSE);
5225 }
5226 else
5227 {
5228 frame_new_height(frp, frp->fr_height - take,
5229 FALSE, FALSE);
5230 take = 0;
5231 }
5232 }
5233 if (run == 0)
5234 frp = frp->fr_next;
5235 else
5236 frp = frp->fr_prev;
5237 }
5238 }
5239 }
5240}
5241
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242/*
5243 * Set current window width and take care of repositioning other windows to
5244 * fit around it.
5245 */
5246 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005247win_setwidth(int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248{
5249 win_setwidth_win(width, curwin);
5250}
5251
5252 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005253win_setwidth_win(int width, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254{
5255 /* Always keep current window at least one column wide, even when
5256 * 'winminwidth' is zero. */
5257 if (wp == curwin)
5258 {
5259 if (width < p_wmw)
5260 width = p_wmw;
5261 if (width == 0)
5262 width = 1;
5263 }
5264
5265 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5266
5267 /* recompute the window positions */
5268 (void)win_comp_pos();
5269
5270 redraw_all_later(NOT_VALID);
5271}
5272
5273/*
5274 * Set the width of a frame to "width" and take care that all frames and
5275 * windows inside it are resized. Also resize frames above and below if the
5276 * are in the same FR_ROW frame.
5277 *
5278 * Strategy is similar to frame_setheight().
5279 */
5280 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005281frame_setwidth(frame_T *curfrp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282{
5283 int room; /* total number of lines available */
5284 int take; /* number of lines taken from other windows */
5285 int run;
5286 frame_T *frp;
5287 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005288 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289
5290 /* If the width already is the desired value, nothing to do. */
5291 if (curfrp->fr_width == width)
5292 return;
5293
5294 if (curfrp->fr_parent == NULL)
5295 /* topframe: can't change width */
5296 return;
5297
5298 if (curfrp->fr_parent->fr_layout == FR_COL)
5299 {
5300 /* Column of frames: Also need to resize frames above and below of
5301 * this one. First check for the minimal width of these. */
5302 w = frame_minwidth(curfrp->fr_parent, NULL);
5303 if (width < w)
5304 width = w;
5305 frame_setwidth(curfrp->fr_parent, width);
5306 }
5307 else
5308 {
5309 /*
5310 * Row of frames: try to change only frames in this row.
5311 *
5312 * Do this twice:
5313 * 1: compute room available, if it's not enough try resizing the
5314 * containing frame.
5315 * 2: compute the room available and adjust the width to it.
5316 */
5317 for (run = 1; run <= 2; ++run)
5318 {
5319 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005320 room_reserved = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5322 frp = frp->fr_next)
5323 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005324 if (frp != curfrp
5325 && frp->fr_win != NULL
5326 && frp->fr_win->w_p_wfw)
5327 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 room += frp->fr_width;
5329 if (frp != curfrp)
5330 room -= frame_minwidth(frp, NULL);
5331 }
5332
5333 if (width <= room)
5334 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005335 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 {
5337 if (width > room)
5338 width = room;
5339 break;
5340 }
5341 frame_setwidth(curfrp->fr_parent, width
5342 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5343 }
5344
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 /*
5346 * Compute the number of lines we will take from others frames (can be
5347 * negative!).
5348 */
5349 take = width - curfrp->fr_width;
5350
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005351 /* If there is not enough room, also reduce the width of a window
5352 * with 'winfixwidth' set. */
5353 if (width > room - room_reserved)
5354 room_reserved = room - width;
5355 /* If there is only a 'winfixwidth' window and making the
5356 * window smaller, need to make the other window narrower. */
5357 if (take < 0 && room - curfrp->fr_width < room_reserved)
5358 room_reserved = 0;
5359
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 /*
5361 * set the current frame to the new width
5362 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005363 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364
5365 /*
5366 * First take lines from the frames right of the current frame. If
5367 * that is not enough, takes lines from frames left of the current
5368 * frame.
5369 */
5370 for (run = 0; run < 2; ++run)
5371 {
5372 if (run == 0)
5373 frp = curfrp->fr_next; /* 1st run: start with next window */
5374 else
5375 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5376 while (frp != NULL && take != 0)
5377 {
5378 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005379 if (room_reserved > 0
5380 && frp->fr_win != NULL
5381 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005383 if (room_reserved >= frp->fr_width)
5384 room_reserved -= frp->fr_width;
5385 else
5386 {
5387 if (frp->fr_width - room_reserved > take)
5388 room_reserved = frp->fr_width - take;
5389 take -= frp->fr_width - room_reserved;
5390 frame_new_width(frp, room_reserved, FALSE, FALSE);
5391 room_reserved = 0;
5392 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 }
5394 else
5395 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005396 if (frp->fr_width - take < w)
5397 {
5398 take -= frp->fr_width - w;
5399 frame_new_width(frp, w, FALSE, FALSE);
5400 }
5401 else
5402 {
5403 frame_new_width(frp, frp->fr_width - take,
5404 FALSE, FALSE);
5405 take = 0;
5406 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 }
5408 if (run == 0)
5409 frp = frp->fr_next;
5410 else
5411 frp = frp->fr_prev;
5412 }
5413 }
5414 }
5415}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416
5417/*
5418 * Check 'winminheight' for a valid value.
5419 */
5420 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005421win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422{
5423 int room;
5424 int first = TRUE;
5425 win_T *wp;
5426
5427 /* loop until there is a 'winminheight' that is possible */
5428 while (p_wmh > 0)
5429 {
5430 /* TODO: handle vertical splits */
5431 room = -p_wh;
Bram Moolenaar29323592016-07-24 22:04:11 +02005432 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 room += wp->w_height - p_wmh;
5434 if (room >= 0)
5435 break;
5436 --p_wmh;
5437 if (first)
5438 {
5439 EMSG(_(e_noroom));
5440 first = FALSE;
5441 }
5442 }
5443}
5444
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005445#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446
5447/*
5448 * Status line of dragwin is dragged "offset" lines down (negative is up).
5449 */
5450 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005451win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452{
5453 frame_T *curfr;
5454 frame_T *fr;
5455 int room;
5456 int row;
5457 int up; /* if TRUE, drag status line up, otherwise down */
5458 int n;
5459
5460 fr = dragwin->w_frame;
5461 curfr = fr;
5462 if (fr != topframe) /* more than one window */
5463 {
5464 fr = fr->fr_parent;
5465 /* When the parent frame is not a column of frames, its parent should
5466 * be. */
5467 if (fr->fr_layout != FR_COL)
5468 {
5469 curfr = fr;
5470 if (fr != topframe) /* only a row of windows, may drag statusline */
5471 fr = fr->fr_parent;
5472 }
5473 }
5474
5475 /* If this is the last frame in a column, may want to resize the parent
5476 * frame instead (go two up to skip a row of frames). */
5477 while (curfr != topframe && curfr->fr_next == NULL)
5478 {
5479 if (fr != topframe)
5480 fr = fr->fr_parent;
5481 curfr = fr;
5482 if (fr != topframe)
5483 fr = fr->fr_parent;
5484 }
5485
5486 if (offset < 0) /* drag up */
5487 {
5488 up = TRUE;
5489 offset = -offset;
5490 /* sum up the room of the current frame and above it */
5491 if (fr == curfr)
5492 {
5493 /* only one window */
5494 room = fr->fr_height - frame_minheight(fr, NULL);
5495 }
5496 else
5497 {
5498 room = 0;
5499 for (fr = fr->fr_child; ; fr = fr->fr_next)
5500 {
5501 room += fr->fr_height - frame_minheight(fr, NULL);
5502 if (fr == curfr)
5503 break;
5504 }
5505 }
5506 fr = curfr->fr_next; /* put fr at frame that grows */
5507 }
5508 else /* drag down */
5509 {
5510 up = FALSE;
5511 /*
5512 * Only dragging the last status line can reduce p_ch.
5513 */
5514 room = Rows - cmdline_row;
5515 if (curfr->fr_next == NULL)
5516 room -= 1;
5517 else
5518 room -= p_ch;
5519 if (room < 0)
5520 room = 0;
5521 /* sum up the room of frames below of the current one */
5522 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5523 room += fr->fr_height - frame_minheight(fr, NULL);
5524 fr = curfr; /* put fr at window that grows */
5525 }
5526
5527 if (room < offset) /* Not enough room */
5528 offset = room; /* Move as far as we can */
5529 if (offset <= 0)
5530 return;
5531
5532 /*
5533 * Grow frame fr by "offset" lines.
5534 * Doesn't happen when dragging the last status line up.
5535 */
5536 if (fr != NULL)
5537 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5538
5539 if (up)
5540 fr = curfr; /* current frame gets smaller */
5541 else
5542 fr = curfr->fr_next; /* next frame gets smaller */
5543
5544 /*
5545 * Now make the other frames smaller.
5546 */
5547 while (fr != NULL && offset > 0)
5548 {
5549 n = frame_minheight(fr, NULL);
5550 if (fr->fr_height - offset <= n)
5551 {
5552 offset -= fr->fr_height - n;
5553 frame_new_height(fr, n, !up, FALSE);
5554 }
5555 else
5556 {
5557 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5558 break;
5559 }
5560 if (up)
5561 fr = fr->fr_prev;
5562 else
5563 fr = fr->fr_next;
5564 }
5565 row = win_comp_pos();
5566 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5567 cmdline_row = row;
5568 p_ch = Rows - cmdline_row;
5569 if (p_ch < 1)
5570 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005571 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005572 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 showmode();
5574}
5575
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576/*
5577 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5578 */
5579 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005580win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581{
5582 frame_T *curfr;
5583 frame_T *fr;
5584 int room;
5585 int left; /* if TRUE, drag separator line left, otherwise right */
5586 int n;
5587
5588 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005589 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 return;
5591 curfr = fr;
5592 fr = fr->fr_parent;
5593 /* When the parent frame is not a row of frames, its parent should be. */
5594 if (fr->fr_layout != FR_ROW)
5595 {
5596 if (fr == topframe) /* only a column of windows (cannot happen?) */
5597 return;
5598 curfr = fr;
5599 fr = fr->fr_parent;
5600 }
5601
5602 /* If this is the last frame in a row, may want to resize a parent
5603 * frame instead. */
5604 while (curfr->fr_next == NULL)
5605 {
5606 if (fr == topframe)
5607 break;
5608 curfr = fr;
5609 fr = fr->fr_parent;
5610 if (fr != topframe)
5611 {
5612 curfr = fr;
5613 fr = fr->fr_parent;
5614 }
5615 }
5616
5617 if (offset < 0) /* drag left */
5618 {
5619 left = TRUE;
5620 offset = -offset;
5621 /* sum up the room of the current frame and left of it */
5622 room = 0;
5623 for (fr = fr->fr_child; ; fr = fr->fr_next)
5624 {
5625 room += fr->fr_width - frame_minwidth(fr, NULL);
5626 if (fr == curfr)
5627 break;
5628 }
5629 fr = curfr->fr_next; /* put fr at frame that grows */
5630 }
5631 else /* drag right */
5632 {
5633 left = FALSE;
5634 /* sum up the room of frames right of the current one */
5635 room = 0;
5636 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5637 room += fr->fr_width - frame_minwidth(fr, NULL);
5638 fr = curfr; /* put fr at window that grows */
5639 }
5640
5641 if (room < offset) /* Not enough room */
5642 offset = room; /* Move as far as we can */
5643 if (offset <= 0) /* No room at all, quit. */
5644 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005645 if (fr == NULL)
5646 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647
5648 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005649 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650
5651 /* shrink other frames: current and at the left or at the right */
5652 if (left)
5653 fr = curfr; /* current frame gets smaller */
5654 else
5655 fr = curfr->fr_next; /* next frame gets smaller */
5656
5657 while (fr != NULL && offset > 0)
5658 {
5659 n = frame_minwidth(fr, NULL);
5660 if (fr->fr_width - offset <= n)
5661 {
5662 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005663 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 }
5665 else
5666 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005667 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 break;
5669 }
5670 if (left)
5671 fr = fr->fr_prev;
5672 else
5673 fr = fr->fr_next;
5674 }
5675 (void)win_comp_pos();
5676 redraw_all_later(NOT_VALID);
5677}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678#endif /* FEAT_MOUSE */
5679
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005680#define FRACTION_MULT 16384L
5681
5682/*
5683 * Set wp->w_fraction for the current w_wrow and w_height.
Bram Moolenaar3679c172017-11-22 22:22:11 +01005684 * Has no effect when the window is less than two lines.
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005685 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005686 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005687set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005688{
Bram Moolenaar3679c172017-11-22 22:22:11 +01005689 if (wp->w_height > 1)
5690 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005691 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005692}
5693
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694/*
5695 * Set the height of a window.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02005696 * "height" excludes any window toolbar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 * This takes care of the things inside the window, not what happens to the
5698 * window position, the frame or to other windows.
5699 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005700 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005701win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702{
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005703 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704
5705 /* Don't want a negative height. Happens when splitting a tiny window.
5706 * Will equalize heights soon to fix it. */
5707 if (height < 0)
5708 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005709 if (wp->w_height == height)
5710 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005712 if (wp->w_height > 0)
5713 {
5714 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005715 /* w_wrow needs to be valid. When setting 'laststatus' this may
5716 * call win_new_height() recursively. */
5717 validate_cursor();
5718 if (wp->w_height != prev_height)
5719 return; /* Recursive call already changed the size, bail out here
5720 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005721 if (wp->w_wrow != wp->w_prev_fraction_row)
5722 set_fraction(wp);
5723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724
5725 wp->w_height = height;
5726 wp->w_skipcol = 0;
5727
Bram Moolenaar955f1982017-02-05 15:10:51 +01005728 /* There is no point in adjusting the scroll position when exiting. Some
5729 * values might be invalid. */
5730 if (!exiting)
5731 scroll_to_fraction(wp, prev_height);
Bram Moolenaar46328f92016-08-28 15:39:57 +02005732}
5733
5734 void
5735scroll_to_fraction(win_T *wp, int prev_height)
5736{
5737 linenr_T lnum;
5738 int sline, line_size;
5739 int height = wp->w_height;
5740
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 /* Don't change w_topline when height is zero. Don't set w_topline when
5742 * 'scrollbind' is set and this isn't the current window. */
5743 if (height > 0
5744#ifdef FEAT_SCROLLBIND
5745 && (!wp->w_p_scb || wp == curwin)
5746#endif
5747 )
5748 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005749 /*
5750 * Find a value for w_topline that shows the cursor at the same
5751 * relative position in the window as before (more or less).
5752 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 lnum = wp->w_cursor.lnum;
5754 if (lnum < 1) /* can happen when starting up */
5755 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005756 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5757 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5759 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005760
5761 if (sline >= 0)
5762 {
5763 /* Make sure the whole cursor line is visible, if possible. */
5764 int rows = plines_win(wp, lnum, FALSE);
5765
5766 if (sline > wp->w_height - rows)
5767 {
5768 sline = wp->w_height - rows;
5769 wp->w_wrow -= rows - line_size;
5770 }
5771 }
5772
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 if (sline < 0)
5774 {
5775 /*
5776 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005777 * Make cursor line the first line in the window. If not enough
5778 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 */
5780 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005781 if (wp->w_wrow >= wp->w_height
Bram Moolenaar02631462017-09-22 15:20:32 +02005782 && (wp->w_width - win_col_off(wp)) > 0)
Bram Moolenaar26470632006-10-24 19:12:40 +00005783 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005784 wp->w_skipcol += wp->w_width - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00005785 --wp->w_wrow;
5786 while (wp->w_wrow >= wp->w_height)
5787 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005788 wp->w_skipcol += wp->w_width - win_col_off(wp)
Bram Moolenaar26470632006-10-24 19:12:40 +00005789 + win_col_off2(wp);
5790 --wp->w_wrow;
5791 }
5792 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005793 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005795 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005797 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 {
5799#ifdef FEAT_FOLDING
5800 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5801 if (lnum == 1)
5802 {
5803 /* first line in buffer is folded */
5804 line_size = 1;
5805 --sline;
5806 break;
5807 }
5808#endif
5809 --lnum;
5810#ifdef FEAT_DIFF
5811 if (lnum == wp->w_topline)
5812 line_size = plines_win_nofill(wp, lnum, TRUE)
5813 + wp->w_topfill;
5814 else
5815#endif
5816 line_size = plines_win(wp, lnum, TRUE);
5817 sline -= line_size;
5818 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005819
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820 if (sline < 0)
5821 {
5822 /*
5823 * Line we want at top would go off top of screen. Use next
5824 * line instead.
5825 */
5826#ifdef FEAT_FOLDING
5827 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5828#endif
5829 lnum++;
5830 wp->w_wrow -= line_size + sline;
5831 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005832 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 {
5834 /* First line of file reached, use that as topline. */
5835 lnum = 1;
5836 wp->w_wrow -= sline;
5837 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005838
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005839 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 }
5842
5843 if (wp == curwin)
5844 {
5845 if (p_so)
5846 update_topline();
5847 curs_columns(FALSE); /* validate w_wrow */
5848 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005849 if (prev_height > 0)
5850 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851
5852 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005853 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 wp->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 invalidate_botline_win(wp);
5856}
5857
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858/*
5859 * Set the width of a window.
5860 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005861 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005862win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863{
5864 wp->w_width = width;
5865 wp->w_lines_valid = 0;
5866 changed_line_abv_curs_win(wp);
5867 invalidate_botline_win(wp);
5868 if (wp == curwin)
5869 {
5870 update_topline();
5871 curs_columns(TRUE); /* validate w_wrow */
5872 }
5873 redraw_win_later(wp, NOT_VALID);
5874 wp->w_redr_status = TRUE;
5875}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876
5877 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005878win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879{
5880 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5881 if (wp->w_p_scr == 0)
5882 wp->w_p_scr = 1;
5883}
5884
5885/*
5886 * command_height: called whenever p_ch has been changed
5887 */
5888 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005889command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 int h;
5892 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005893 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005895 /* Use the value of p_ch that we remembered. This is needed for when the
5896 * GUI starts up, we can't be sure in what order things happen. And when
5897 * p_ch was changed in another tab page. */
5898 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005899
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 /* Find bottom frame with width of screen. */
5901 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5903 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904
5905 /* Avoid changing the height of a window with 'winfixheight' set. */
5906 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5907 && frp->fr_win->w_p_wfh)
5908 frp = frp->fr_prev;
5909
5910 if (starting != NO_SCREEN)
5911 {
5912 cmdline_row = Rows - p_ch;
5913
5914 if (p_ch > old_p_ch) /* p_ch got bigger */
5915 {
5916 while (p_ch > old_p_ch)
5917 {
5918 if (frp == NULL)
5919 {
5920 EMSG(_(e_noroom));
5921 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005922 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 cmdline_row = Rows - p_ch;
5924 break;
5925 }
5926 h = frp->fr_height - frame_minheight(frp, NULL);
5927 if (h > p_ch - old_p_ch)
5928 h = p_ch - old_p_ch;
5929 old_p_ch += h;
5930 frame_add_height(frp, -h);
5931 frp = frp->fr_prev;
5932 }
5933
5934 /* Recompute window positions. */
5935 (void)win_comp_pos();
5936
5937 /* clear the lines added to cmdline */
5938 if (full_screen)
5939 screen_fill((int)(cmdline_row), (int)Rows, 0,
5940 (int)Columns, ' ', ' ', 0);
5941 msg_row = cmdline_row;
5942 redraw_cmdline = TRUE;
5943 return;
5944 }
5945
5946 if (msg_row < cmdline_row)
5947 msg_row = cmdline_row;
5948 redraw_cmdline = TRUE;
5949 }
5950 frame_add_height(frp, (int)(old_p_ch - p_ch));
5951
5952 /* Recompute window positions. */
5953 if (frp != lastwin->w_frame)
5954 (void)win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955}
5956
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957/*
5958 * Resize frame "frp" to be "n" lines higher (negative for less high).
5959 * Also resize the frames it is contained in.
5960 */
5961 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005962frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963{
5964 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5965 for (;;)
5966 {
5967 frp = frp->fr_parent;
5968 if (frp == NULL)
5969 break;
5970 frp->fr_height += n;
5971 }
5972}
5973
5974/*
5975 * Add or remove a status line for the bottom window(s), according to the
5976 * value of 'laststatus'.
5977 */
5978 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005979last_status(
5980 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981{
5982 /* Don't make a difference between horizontal or vertical split. */
5983 last_status_rec(topframe, (p_ls == 2
Bram Moolenaar459ca562016-11-10 18:16:33 +01005984 || (p_ls == 1 && (morewin || !ONE_WINDOW))));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985}
5986
5987 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005988last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989{
5990 frame_T *fp;
5991 win_T *wp;
5992
5993 if (fr->fr_layout == FR_LEAF)
5994 {
5995 wp = fr->fr_win;
5996 if (wp->w_status_height != 0 && !statusline)
5997 {
5998 /* remove status line */
5999 win_new_height(wp, wp->w_height + 1);
6000 wp->w_status_height = 0;
6001 comp_col();
6002 }
6003 else if (wp->w_status_height == 0 && statusline)
6004 {
6005 /* Find a frame to take a line from. */
6006 fp = fr;
6007 while (fp->fr_height <= frame_minheight(fp, NULL))
6008 {
6009 if (fp == topframe)
6010 {
6011 EMSG(_(e_noroom));
6012 return;
6013 }
6014 /* In a column of frames: go to frame above. If already at
6015 * the top or in a row of frames: go to parent. */
6016 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
6017 fp = fp->fr_prev;
6018 else
6019 fp = fp->fr_parent;
6020 }
6021 wp->w_status_height = 1;
6022 if (fp != fr)
6023 {
6024 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
6025 frame_fix_height(wp);
6026 (void)win_comp_pos();
6027 }
6028 else
6029 win_new_height(wp, wp->w_height - 1);
6030 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006031 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 }
6033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034 else if (fr->fr_layout == FR_ROW)
6035 {
6036 /* vertically split windows, set status line for each one */
6037 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
6038 last_status_rec(fp, statusline);
6039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 else
6041 {
6042 /* horizontally split window, set status line for last one */
6043 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
6044 ;
6045 last_status_rec(fp, statusline);
6046 }
6047}
6048
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006049/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006050 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006051 */
6052 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006053tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006054{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006055#ifdef FEAT_GUI_TABLINE
6056 /* When the GUI has the tabline then this always returns zero. */
6057 if (gui_use_tabline())
6058 return 0;
6059#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006060 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006061 {
6062 case 0: return 0;
6063 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6064 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006065 return 1;
6066}
6067
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6069/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006070 * Get the file name at the cursor.
6071 * If Visual mode is active, use the selected text if it's in one line.
6072 * Returns the name in allocated memory, NULL for failure.
6073 */
6074 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006075grab_file_name(long count, linenr_T *file_lnum)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006076{
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006077 int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC;
6078
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006079 if (VIsual_active)
6080 {
6081 int len;
6082 char_u *ptr;
6083
6084 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6085 return NULL;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006086 return find_file_name_in_path(ptr, len, options,
6087 count, curbuf->b_ffname);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006088 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006089 return file_name_at_cursor(options | FNAME_HYP, count, file_lnum);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006090
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006091}
6092
6093/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 * Return the file name under or after the cursor.
6095 *
6096 * The 'path' option is searched if the file name is not absolute.
6097 * The string returned has been alloc'ed and should be freed by the caller.
6098 * NULL is returned if the file name or file is not found.
6099 *
6100 * options:
6101 * FNAME_MESS give error messages
6102 * FNAME_EXP expand to path
6103 * FNAME_HYP check for hypertext link
6104 * FNAME_INCL apply "includeexpr"
6105 */
6106 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006107file_name_at_cursor(int options, long count, linenr_T *file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108{
6109 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006110 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6111 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112}
6113
6114/*
6115 * Return the name of the file under or after ptr[col].
6116 * Otherwise like file_name_at_cursor().
6117 */
6118 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006119file_name_in_line(
6120 char_u *line,
6121 int col,
6122 int options,
6123 long count,
6124 char_u *rel_fname, /* file we are searching relative to */
6125 linenr_T *file_lnum) /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126{
6127 char_u *ptr;
6128 int len;
6129
6130 /*
6131 * search forward for what could be the start of a file name
6132 */
6133 ptr = line + col;
6134 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006135 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 if (*ptr == NUL) /* nothing found */
6137 {
6138 if (options & FNAME_MESS)
6139 EMSG(_("E446: No file name under cursor"));
6140 return NULL;
6141 }
6142
6143 /*
6144 * Search backward for first char of the file name.
6145 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6146 */
6147 while (ptr > line)
6148 {
6149#ifdef FEAT_MBYTE
6150 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6151 ptr -= len + 1;
6152 else
6153#endif
6154 if (vim_isfilec(ptr[-1])
6155 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6156 --ptr;
6157 else
6158 break;
6159 }
6160
6161 /*
6162 * Search forward for the last char of the file name.
6163 * Also allow "://" when ':' is not in 'isfname'.
6164 */
6165 len = 0;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006166 while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 || ((options & FNAME_HYP) && path_is_url(ptr + len)))
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006168 {
6169 if (ptr[len] == '\\')
6170 /* Skip over the "\" in "\ ". */
6171 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172#ifdef FEAT_MBYTE
6173 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006174 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 else
6176#endif
6177 ++len;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179
6180 /*
6181 * If there is trailing punctuation, remove it.
6182 * But don't remove "..", could be a directory name.
6183 */
6184 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6185 && ptr[len - 2] != '.')
6186 --len;
6187
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006188 if (file_lnum != NULL)
6189 {
6190 char_u *p;
6191
6192 /* Get the number after the file name and a separator character */
6193 p = ptr + len;
6194 p = skipwhite(p);
6195 if (*p != NUL)
6196 {
6197 if (!isdigit(*p))
6198 ++p; /* skip the separator */
6199 p = skipwhite(p);
6200 if (isdigit(*p))
6201 *file_lnum = (int)getdigits(&p);
6202 }
6203 }
6204
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6206}
6207
6208# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006209static char_u *eval_includeexpr(char_u *ptr, int len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210
6211 static char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006212eval_includeexpr(char_u *ptr, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213{
6214 char_u *res;
6215
6216 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006217 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006218 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219 set_vim_var_string(VV_FNAME, NULL, 0);
6220 return res;
6221}
6222#endif
6223
6224/*
6225 * Return the name of the file ptr[len] in 'path'.
6226 * Otherwise like file_name_at_cursor().
6227 */
6228 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006229find_file_name_in_path(
6230 char_u *ptr,
6231 int len,
6232 int options,
6233 long count,
6234 char_u *rel_fname) /* file we are searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235{
6236 char_u *file_name;
6237 int c;
6238# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6239 char_u *tofree = NULL;
6240
6241 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6242 {
6243 tofree = eval_includeexpr(ptr, len);
6244 if (tofree != NULL)
6245 {
6246 ptr = tofree;
6247 len = (int)STRLEN(ptr);
6248 }
6249 }
6250# endif
6251
6252 if (options & FNAME_EXP)
6253 {
6254 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6255 TRUE, rel_fname);
6256
6257# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6258 /*
6259 * If the file could not be found in a normal way, try applying
6260 * 'includeexpr' (unless done already).
6261 */
6262 if (file_name == NULL
6263 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6264 {
6265 tofree = eval_includeexpr(ptr, len);
6266 if (tofree != NULL)
6267 {
6268 ptr = tofree;
6269 len = (int)STRLEN(ptr);
6270 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6271 TRUE, rel_fname);
6272 }
6273 }
6274# endif
6275 if (file_name == NULL && (options & FNAME_MESS))
6276 {
6277 c = ptr[len];
6278 ptr[len] = NUL;
6279 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6280 ptr[len] = c;
6281 }
6282
6283 /* Repeat finding the file "count" times. This matters when it
6284 * appears several times in the path. */
6285 while (file_name != NULL && --count > 0)
6286 {
6287 vim_free(file_name);
6288 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6289 }
6290 }
6291 else
6292 file_name = vim_strnsave(ptr, len);
6293
6294# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6295 vim_free(tofree);
6296# endif
6297
6298 return file_name;
6299}
6300#endif /* FEAT_SEARCHPATH */
6301
6302/*
6303 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6304 * Also check for ":\\", which MS Internet Explorer accepts, return
6305 * URL_BACKSLASH.
6306 */
6307 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006308path_is_url(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309{
6310 if (STRNCMP(p, "://", (size_t)3) == 0)
6311 return URL_SLASH;
6312 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6313 return URL_BACKSLASH;
6314 return 0;
6315}
6316
6317/*
6318 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6319 * Return URL_BACKSLASH for "name:\\".
6320 * Return zero otherwise.
6321 */
6322 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006323path_with_url(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324{
6325 char_u *p;
6326
6327 for (p = fname; isalpha(*p); ++p)
6328 ;
6329 return path_is_url(p);
6330}
6331
6332/*
6333 * Return TRUE if "name" is a full (absolute) path name or URL.
6334 */
6335 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006336vim_isAbsName(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337{
6338 return (path_with_url(name) != 0 || mch_isFullName(name));
6339}
6340
6341/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006342 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 *
6344 * return FAIL for failure, OK otherwise
6345 */
6346 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006347vim_FullName(
6348 char_u *fname,
6349 char_u *buf,
6350 int len,
6351 int force) /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352{
6353 int retval = OK;
6354 int url;
6355
6356 *buf = NUL;
6357 if (fname == NULL)
6358 return FAIL;
6359
6360 url = path_with_url(fname);
6361 if (!url)
6362 retval = mch_FullName(fname, buf, len, force);
6363 if (url || retval == FAIL)
6364 {
6365 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006366 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 }
Bram Moolenaard0573012017-10-28 21:11:06 +02006368#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 slash_adjust(buf);
6370#endif
6371 return retval;
6372}
6373
6374/*
6375 * Return the minimal number of rows that is needed on the screen to display
6376 * the current number of windows.
6377 */
6378 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006379min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380{
6381 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006382 tabpage_T *tp;
6383 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384
6385 if (firstwin == NULL) /* not initialized yet */
6386 return MIN_LINES;
6387
Bram Moolenaarf740b292006-02-16 22:11:02 +00006388 total = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02006389 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006390 {
6391 n = frame_minheight(tp->tp_topframe, NULL);
6392 if (total < n)
6393 total = n;
6394 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006395 total += tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006396 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397 return total;
6398}
6399
6400/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006401 * Return TRUE if there is only one window (in the current tab page), not
6402 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006403 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 */
6405 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006406only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 int count = 0;
6409 win_T *wp;
6410
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006411 /* If there is another tab page there always is another window. */
6412 if (first_tabpage->tp_next != NULL)
6413 return FALSE;
6414
Bram Moolenaar29323592016-07-24 22:04:11 +02006415 FOR_ALL_WINDOWS(wp)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006416 if (wp->w_buffer != NULL
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006417 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418# ifdef FEAT_QUICKFIX
6419 || wp->w_p_pvw
6420# endif
6421 ) || wp == curwin)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006422# ifdef FEAT_AUTOCMD
6423 && wp != aucmd_win
6424# endif
6425 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 ++count;
6427 return (count <= 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428}
6429
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430/*
6431 * Correct the cursor line number in other windows. Used after changing the
6432 * current buffer, and before applying autocommands.
6433 * When "do_curwin" is TRUE, also check current window.
6434 */
6435 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006436check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437{
6438 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006439 tabpage_T *tp;
6440
6441 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 {
6444 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6445 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6446 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6447 wp->w_topline = curbuf->b_ml.ml_line_count;
6448 }
6449}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450
6451/*
6452 * A snapshot of the window sizes, to restore them after closing the help
6453 * window.
6454 * Only these fields are used:
6455 * fr_layout
6456 * fr_width
6457 * fr_height
6458 * fr_next
6459 * fr_child
6460 * fr_win (only valid for the old curwin, NULL otherwise)
6461 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462
6463/*
6464 * Create a snapshot of the current frame sizes.
6465 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006466 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006467make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006469 clear_snapshot(curtab, idx);
6470 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471}
6472
6473 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006474make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475{
6476 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6477 if (*frp == NULL)
6478 return;
6479 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 (*frp)->fr_height = fr->fr_height;
6482 if (fr->fr_next != NULL)
6483 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6484 if (fr->fr_child != NULL)
6485 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6486 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6487 (*frp)->fr_win = curwin;
6488}
6489
6490/*
6491 * Remove any existing snapshot.
6492 */
6493 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006494clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006496 clear_snapshot_rec(tp->tp_snapshot[idx]);
6497 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498}
6499
6500 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006501clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502{
6503 if (fr != NULL)
6504 {
6505 clear_snapshot_rec(fr->fr_next);
6506 clear_snapshot_rec(fr->fr_child);
6507 vim_free(fr);
6508 }
6509}
6510
6511/*
6512 * Restore a previously created snapshot, if there is any.
6513 * This is only done if the screen size didn't change and the window layout is
6514 * still the same.
6515 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006516 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006517restore_snapshot(
6518 int idx,
6519 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520{
6521 win_T *wp;
6522
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006523 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006524 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006525 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6526 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006528 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 win_comp_pos();
6530 if (wp != NULL && close_curwin)
6531 win_goto(wp);
6532 redraw_all_later(CLEAR);
6533 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006534 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535}
6536
6537/*
6538 * Check if frames "sn" and "fr" have the same layout, same following frames
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006539 * and same children. And the window pointer is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 */
6541 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006542check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543{
6544 if (sn->fr_layout != fr->fr_layout
6545 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6546 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6547 || (sn->fr_next != NULL
6548 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6549 || (sn->fr_child != NULL
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006550 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL)
Bram Moolenaar2c90d512017-03-18 22:35:30 +01006551 || (sn->fr_win != NULL && !win_valid(sn->fr_win)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552 return FAIL;
6553 return OK;
6554}
6555
6556/*
6557 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6558 * following frames and children.
6559 * Returns a pointer to the old current window, or NULL.
6560 */
6561 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006562restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563{
6564 win_T *wp = NULL;
6565 win_T *wp2;
6566
6567 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 if (fr->fr_layout == FR_LEAF)
6570 {
6571 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006572 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 wp = sn->fr_win;
6574 }
6575 if (sn->fr_next != NULL)
6576 {
6577 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6578 if (wp2 != NULL)
6579 wp = wp2;
6580 }
6581 if (sn->fr_child != NULL)
6582 {
6583 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6584 if (wp2 != NULL)
6585 wp = wp2;
6586 }
6587 return wp;
6588}
6589
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006590#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6591 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006592/*
6593 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006594 * restore_win() MUST be called to undo, also when FAIL is returned.
6595 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006596 * When "no_display" is TRUE the display won't be affected, no redraw is
6597 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006598 * Returns FAIL if switching to "win" failed.
6599 */
6600 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006601switch_win(
Bram Moolenaar816968d2017-09-29 21:29:18 +02006602 win_T **save_curwin,
6603 tabpage_T **save_curtab,
6604 win_T *win,
6605 tabpage_T *tp,
6606 int no_display)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006607{
6608# ifdef FEAT_AUTOCMD
6609 block_autocmds();
6610# endif
Bram Moolenaar105bc352013-05-17 16:03:57 +02006611 *save_curwin = curwin;
6612 if (tp != NULL)
6613 {
6614 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006615 if (no_display)
6616 {
6617 curtab->tp_firstwin = firstwin;
6618 curtab->tp_lastwin = lastwin;
6619 curtab = tp;
6620 firstwin = curtab->tp_firstwin;
6621 lastwin = curtab->tp_lastwin;
6622 }
6623 else
6624 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006625 }
6626 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006627 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006628 curwin = win;
6629 curbuf = curwin->w_buffer;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006630 return OK;
6631}
6632
6633/*
6634 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006635 * When "no_display" is TRUE the display won't be affected, no redraw is
6636 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006637 */
6638 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006639restore_win(
6640 win_T *save_curwin UNUSED,
6641 tabpage_T *save_curtab UNUSED,
6642 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006643{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006644 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006645 {
6646 if (no_display)
6647 {
6648 curtab->tp_firstwin = firstwin;
6649 curtab->tp_lastwin = lastwin;
6650 curtab = save_curtab;
6651 firstwin = curtab->tp_firstwin;
6652 lastwin = curtab->tp_lastwin;
6653 }
6654 else
6655 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6656 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006657 if (win_valid(save_curwin))
6658 {
6659 curwin = save_curwin;
6660 curbuf = curwin->w_buffer;
6661 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006662# ifdef FEAT_AUTOCMD
6663 unblock_autocmds();
6664# endif
6665}
6666
6667/*
6668 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6669 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6670 */
6671 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006672switch_buffer(bufref_T *save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006673{
6674# ifdef FEAT_AUTOCMD
6675 block_autocmds();
6676# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006677 set_bufref(save_curbuf, curbuf);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006678 --curbuf->b_nwindows;
6679 curbuf = buf;
6680 curwin->w_buffer = buf;
6681 ++curbuf->b_nwindows;
6682}
6683
6684/*
6685 * Restore the current buffer after using switch_buffer().
6686 */
6687 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006688restore_buffer(bufref_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006689{
6690# ifdef FEAT_AUTOCMD
6691 unblock_autocmds();
6692# endif
6693 /* Check for valid buffer, just in case. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006694 if (bufref_valid(save_curbuf))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006695 {
6696 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006697 curwin->w_buffer = save_curbuf->br_buf;
6698 curbuf = save_curbuf->br_buf;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006699 ++curbuf->b_nwindows;
6700 }
6701}
6702#endif
6703
Bram Moolenaar4033c552017-09-16 20:54:51 +02006704#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705/*
6706 * Return TRUE if there is any vertically split window.
6707 */
6708 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006709win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710{
6711 frame_T *fr;
6712
6713 if (topframe->fr_layout == FR_ROW)
6714 return TRUE;
6715
6716 if (topframe->fr_layout == FR_COL)
6717 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6718 if (fr->fr_layout == FR_ROW)
6719 return TRUE;
6720
6721 return FALSE;
6722}
6723#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006724
6725#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6726/*
6727 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006728 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006729 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6730 * If no particular ID is desired, -1 must be specified for 'id'.
6731 * Return ID of added match, -1 on failure.
6732 */
6733 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006734match_add(
6735 win_T *wp,
6736 char_u *grp,
6737 char_u *pat,
6738 int prio,
6739 int id,
6740 list_T *pos_list,
6741 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006742{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006743 matchitem_T *cur;
6744 matchitem_T *prev;
6745 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006746 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006747 regprog_T *regprog = NULL;
6748 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006749
Bram Moolenaarb3414592014-06-17 17:48:32 +02006750 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006751 return -1;
6752 if (id < -1 || id == 0)
6753 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02006754 EMSGN(_("E799: Invalid ID: %ld (must be greater than or equal to 1)"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006755 return -1;
6756 }
6757 if (id != -1)
6758 {
6759 cur = wp->w_match_head;
6760 while (cur != NULL)
6761 {
6762 if (cur->id == id)
6763 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02006764 EMSGN(_("E801: ID already taken: %ld"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006765 return -1;
6766 }
6767 cur = cur->next;
6768 }
6769 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006770 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006771 {
6772 EMSG2(_(e_nogroup), grp);
6773 return -1;
6774 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006775 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006776 {
6777 EMSG2(_(e_invarg2), pat);
6778 return -1;
6779 }
6780
6781 /* Find available match ID. */
6782 while (id == -1)
6783 {
6784 cur = wp->w_match_head;
6785 while (cur != NULL && cur->id != wp->w_next_match_id)
6786 cur = cur->next;
6787 if (cur == NULL)
6788 id = wp->w_next_match_id;
6789 wp->w_next_match_id++;
6790 }
6791
6792 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006793 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006794 m->id = id;
6795 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006796 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006797 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006798 m->match.regprog = regprog;
6799 m->match.rmm_ic = FALSE;
6800 m->match.rmm_maxcol = 0;
Bram Moolenaar42356152016-03-31 22:27:40 +02006801# if defined(FEAT_CONCEAL) && defined(FEAT_MBYTE)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006802 m->conceal_char = 0;
6803 if (conceal_char != NULL)
6804 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006805# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006806
Bram Moolenaarb3414592014-06-17 17:48:32 +02006807 /* Set up position matches */
6808 if (pos_list != NULL)
6809 {
6810 linenr_T toplnum = 0;
6811 linenr_T botlnum = 0;
6812 listitem_T *li;
6813 int i;
6814
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006815 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006816 i++, li = li->li_next)
6817 {
6818 linenr_T lnum = 0;
6819 colnr_T col = 0;
6820 int len = 1;
6821 list_T *subl;
6822 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006823 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006824
Bram Moolenaarb3414592014-06-17 17:48:32 +02006825 if (li->li_tv.v_type == VAR_LIST)
6826 {
6827 subl = li->li_tv.vval.v_list;
6828 if (subl == NULL)
6829 goto fail;
6830 subli = subl->lv_first;
6831 if (subli == NULL)
6832 goto fail;
6833 lnum = get_tv_number_chk(&subli->li_tv, &error);
6834 if (error == TRUE)
6835 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006836 if (lnum == 0)
6837 {
6838 --i;
6839 continue;
6840 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006841 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006842 subli = subli->li_next;
6843 if (subli != NULL)
6844 {
6845 col = get_tv_number_chk(&subli->li_tv, &error);
6846 if (error == TRUE)
6847 goto fail;
6848 subli = subli->li_next;
6849 if (subli != NULL)
6850 {
6851 len = get_tv_number_chk(&subli->li_tv, &error);
6852 if (error == TRUE)
6853 goto fail;
6854 }
6855 }
6856 m->pos.pos[i].col = col;
6857 m->pos.pos[i].len = len;
6858 }
6859 else if (li->li_tv.v_type == VAR_NUMBER)
6860 {
6861 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006862 {
6863 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006864 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006865 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006866 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6867 m->pos.pos[i].col = 0;
6868 m->pos.pos[i].len = 0;
6869 }
6870 else
6871 {
6872 EMSG(_("List or number required"));
6873 goto fail;
6874 }
6875 if (toplnum == 0 || lnum < toplnum)
6876 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006877 if (botlnum == 0 || lnum >= botlnum)
6878 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006879 }
6880
6881 /* Calculate top and bottom lines for redrawing area */
6882 if (toplnum != 0)
6883 {
6884 if (wp->w_buffer->b_mod_set)
6885 {
6886 if (wp->w_buffer->b_mod_top > toplnum)
6887 wp->w_buffer->b_mod_top = toplnum;
6888 if (wp->w_buffer->b_mod_bot < botlnum)
6889 wp->w_buffer->b_mod_bot = botlnum;
6890 }
6891 else
6892 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006893 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006894 wp->w_buffer->b_mod_top = toplnum;
6895 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006896 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006897 }
6898 m->pos.toplnum = toplnum;
6899 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006900 rtype = VALID;
6901 }
6902 }
6903
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006904 /* Insert new match. The match list is in ascending order with regard to
6905 * the match priorities. */
6906 cur = wp->w_match_head;
6907 prev = cur;
6908 while (cur != NULL && prio >= cur->priority)
6909 {
6910 prev = cur;
6911 cur = cur->next;
6912 }
6913 if (cur == prev)
6914 wp->w_match_head = m;
6915 else
6916 prev->next = m;
6917 m->next = cur;
6918
Bram Moolenaarb3414592014-06-17 17:48:32 +02006919 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006920 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006921
6922fail:
6923 vim_free(m);
6924 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006925}
6926
6927/*
6928 * Delete match with ID 'id' in the match list of window 'wp'.
6929 * Print error messages if 'perr' is TRUE.
6930 */
6931 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006932match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006933{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006934 matchitem_T *cur = wp->w_match_head;
6935 matchitem_T *prev = cur;
6936 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006937
6938 if (id < 1)
6939 {
6940 if (perr == TRUE)
Bram Moolenaar5b302912016-08-24 22:11:55 +02006941 EMSGN(_("E802: Invalid ID: %ld (must be greater than or equal to 1)"),
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006942 id);
6943 return -1;
6944 }
6945 while (cur != NULL && cur->id != id)
6946 {
6947 prev = cur;
6948 cur = cur->next;
6949 }
6950 if (cur == NULL)
6951 {
6952 if (perr == TRUE)
Bram Moolenaar5b302912016-08-24 22:11:55 +02006953 EMSGN(_("E803: ID not found: %ld"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006954 return -1;
6955 }
6956 if (cur == prev)
6957 wp->w_match_head = cur->next;
6958 else
6959 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006960 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006961 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006962 if (cur->pos.toplnum != 0)
6963 {
6964 if (wp->w_buffer->b_mod_set)
6965 {
6966 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6967 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6968 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
6969 wp->w_buffer->b_mod_bot = cur->pos.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 = cur->pos.toplnum;
6975 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006976 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006977 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006978 rtype = VALID;
6979 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006980 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006981 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006982 return 0;
6983}
6984
6985/*
6986 * Delete all matches in the match list of window 'wp'.
6987 */
6988 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006989clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006990{
6991 matchitem_T *m;
6992
6993 while (wp->w_match_head != NULL)
6994 {
6995 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006996 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006997 vim_free(wp->w_match_head->pattern);
6998 vim_free(wp->w_match_head);
6999 wp->w_match_head = m;
7000 }
7001 redraw_later(SOME_VALID);
7002}
7003
7004/*
7005 * Get match from ID 'id' in window 'wp'.
7006 * Return NULL if match not found.
7007 */
7008 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007009get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007010{
7011 matchitem_T *cur = wp->w_match_head;
7012
7013 while (cur != NULL && cur->id != id)
7014 cur = cur->next;
7015 return cur;
7016}
7017#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02007018
7019#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
7020 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007021get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02007022{
7023 int i = 1;
7024 win_T *w;
7025
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007026 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02007027 ++i;
7028
7029 if (w == NULL)
7030 return 0;
7031 else
7032 return i;
7033}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007034
7035 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007036get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007037{
7038 int i = 1;
7039 tabpage_T *t;
7040
7041 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7042 ++i;
7043
7044 if (t == NULL)
7045 return 0;
7046 else
7047 return i;
7048}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007049#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007050
7051/*
7052 * Return TRUE if "topfrp" and its children are at the right height.
7053 */
7054 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007055frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007056{
7057 frame_T *frp;
7058
7059 if (topfrp->fr_height != height)
7060 return FALSE;
7061
7062 if (topfrp->fr_layout == FR_ROW)
7063 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7064 if (frp->fr_height != height)
7065 return FALSE;
7066
7067 return TRUE;
7068}
7069
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007070/*
7071 * Return TRUE if "topfrp" and its children are at the right width.
7072 */
7073 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007074frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007075{
7076 frame_T *frp;
7077
7078 if (topfrp->fr_width != width)
7079 return FALSE;
7080
7081 if (topfrp->fr_layout == FR_COL)
7082 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7083 if (frp->fr_width != width)
7084 return FALSE;
7085
7086 return TRUE;
7087}
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007088
Bram Moolenaar86edef62016-03-13 18:07:30 +01007089#if defined(FEAT_EVAL) || defined(PROTO)
7090 int
7091win_getid(typval_T *argvars)
7092{
7093 int winnr;
7094 win_T *wp;
7095
7096 if (argvars[0].v_type == VAR_UNKNOWN)
7097 return curwin->w_id;
7098 winnr = get_tv_number(&argvars[0]);
7099 if (winnr > 0)
7100 {
7101 if (argvars[1].v_type == VAR_UNKNOWN)
7102 wp = firstwin;
7103 else
7104 {
7105 tabpage_T *tp;
7106 int tabnr = get_tv_number(&argvars[1]);
7107
Bram Moolenaar29323592016-07-24 22:04:11 +02007108 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007109 if (--tabnr == 0)
7110 break;
7111 if (tp == NULL)
7112 return -1;
Bram Moolenaar8e639052016-11-13 14:31:40 +01007113 if (tp == curtab)
7114 wp = firstwin;
7115 else
7116 wp = tp->tp_firstwin;
Bram Moolenaar86edef62016-03-13 18:07:30 +01007117 }
7118 for ( ; wp != NULL; wp = wp->w_next)
7119 if (--winnr == 0)
7120 return wp->w_id;
7121 }
7122 return 0;
7123}
7124
7125 int
7126win_gotoid(typval_T *argvars)
7127{
7128 win_T *wp;
7129 tabpage_T *tp;
7130 int id = get_tv_number(&argvars[0]);
7131
Bram Moolenaar29323592016-07-24 22:04:11 +02007132 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007133 if (wp->w_id == id)
7134 {
7135 goto_tabpage_win(tp, wp);
7136 return 1;
7137 }
7138 return 0;
7139}
7140
7141 void
7142win_id2tabwin(typval_T *argvars, list_T *list)
7143{
7144 win_T *wp;
7145 tabpage_T *tp;
7146 int winnr = 1;
7147 int tabnr = 1;
7148 int id = get_tv_number(&argvars[0]);
7149
Bram Moolenaar29323592016-07-24 22:04:11 +02007150 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007151 {
Bram Moolenaar29323592016-07-24 22:04:11 +02007152 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007153 {
7154 if (wp->w_id == id)
7155 {
7156 list_append_number(list, tabnr);
7157 list_append_number(list, winnr);
7158 return;
7159 }
7160 ++winnr;
7161 }
7162 ++tabnr;
7163 winnr = 1;
7164 }
7165 list_append_number(list, 0);
7166 list_append_number(list, 0);
7167}
7168
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007169 win_T *
7170win_id2wp(typval_T *argvars)
7171{
7172 win_T *wp;
7173 tabpage_T *tp;
7174 int id = get_tv_number(&argvars[0]);
7175
7176 FOR_ALL_TAB_WINDOWS(tp, wp)
7177 if (wp->w_id == id)
7178 return wp;
7179
7180 return NULL;
7181}
7182
Bram Moolenaar86edef62016-03-13 18:07:30 +01007183 int
7184win_id2win(typval_T *argvars)
7185{
7186 win_T *wp;
7187 int nr = 1;
7188 int id = get_tv_number(&argvars[0]);
7189
Bram Moolenaar29323592016-07-24 22:04:11 +02007190 FOR_ALL_WINDOWS(wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007191 {
7192 if (wp->w_id == id)
7193 return nr;
7194 ++nr;
7195 }
7196 return 0;
7197}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007198
7199 void
7200win_findbuf(typval_T *argvars, list_T *list)
7201{
7202 win_T *wp;
7203 tabpage_T *tp;
7204 int bufnr = get_tv_number(&argvars[0]);
7205
Bram Moolenaar29323592016-07-24 22:04:11 +02007206 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007207 if (wp->w_buffer->b_fnum == bufnr)
7208 list_append_number(list, wp->w_id);
7209}
7210
Bram Moolenaar86edef62016-03-13 18:07:30 +01007211#endif