blob: ffff75647eb9765c4a2047bea022907990c8975f [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 void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum);
13static void win_init(win_T *newp, win_T *oldp, int flags);
14static void win_init_some(win_T *newp, win_T *oldp);
15static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
16static void frame_setheight(frame_T *curfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010017static void frame_setwidth(frame_T *curfrp, int width);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010018static void win_exchange(long);
19static void win_rotate(int, int);
20static void win_totop(int size, int flags);
21static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010022static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
23static frame_T *win_altframe(win_T *win, tabpage_T *tp);
24static tabpage_T *alt_tabpage(void);
25static win_T *frame2win(frame_T *frp);
26static int frame_has_win(frame_T *frp, win_T *wp);
27static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
28static int frame_fixed_height(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010029static int frame_fixed_width(frame_T *frp);
30static void frame_add_statusline(frame_T *frp);
31static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
32static void frame_add_vsep(frame_T *frp);
33static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
34static void frame_fix_width(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010035static int win_alloc_firstwin(win_T *oldwin);
36static void new_frame(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010037static tabpage_T *alloc_tabpage(void);
38static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds);
39static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds);
40static void frame_fix_height(win_T *wp);
41static int frame_minheight(frame_T *topfrp, win_T *next_curwin);
Bram Moolenaarc917da42016-07-19 22:31:36 +020042static 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 +010043static void win_free(win_T *wp, tabpage_T *tp);
44static void frame_append(frame_T *after, frame_T *frp);
45static void frame_insert(frame_T *before, frame_T *frp);
46static void frame_remove(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010047static void win_goto_ver(int up, long count);
48static void win_goto_hor(int left, long count);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010049static void frame_add_height(frame_T *frp, int n);
50static void last_status_rec(frame_T *fr, int statusline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010052static void make_snapshot_rec(frame_T *fr, frame_T **frp);
53static void clear_snapshot(tabpage_T *tp, int idx);
54static void clear_snapshot_rec(frame_T *fr);
55static int check_snapshot_rec(frame_T *sn, frame_T *fr);
56static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010058static int frame_check_height(frame_T *topfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010059static int frame_check_width(frame_T *topfrp, int width);
Bram Moolenaarb893ac22013-06-26 14:04:47 +020060
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010061static win_T *win_alloc(win_T *after, int hidden);
Bram Moolenaar071d4272004-06-13 20:20:40 +000062
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000063#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000064
Bram Moolenaar4033c552017-09-16 20:54:51 +020065#define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000066
67static char *m_onlyone = N_("Already only one window");
68
Bram Moolenaar071d4272004-06-13 20:20:40 +000069/*
Bram Moolenaar72e83c12019-02-22 16:09:52 +010070 * All CTRL-W window commands are handled here, called from normal_cmd().
Bram Moolenaar071d4272004-06-13 20:20:40 +000071 */
72 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010073do_window(
74 int nchar,
75 long Prenum,
76 int xchar) /* extra char from ":wincmd gx" or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000077{
78 long Prenum1;
79 win_T *wp;
80#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
81 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +000082 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000083#endif
84#ifdef FEAT_FIND_ID
85 int type = FIND_DEFINE;
86 int len;
87#endif
88 char_u cbuf[40];
89
Bram Moolenaar882d02e2019-02-22 17:56:43 +010090 Prenum1 = Prenum == 0 ? 1 : Prenum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
92#ifdef FEAT_CMDWIN
Bram Moolenaar6f470022018-04-10 18:47:20 +020093# define CHECK_CMDWIN \
94 do { \
95 if (cmdwin_type != 0) \
96 { \
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010097 emsg(_(e_cmdwin)); \
Bram Moolenaar6f470022018-04-10 18:47:20 +020098 return; \
99 } \
100 } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#else
Bram Moolenaar6f470022018-04-10 18:47:20 +0200102# define CHECK_CMDWIN do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
104
105 switch (nchar)
106 {
107/* split current window in two parts, horizontally */
108 case 'S':
109 case Ctrl_S:
110 case 's':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200111 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000113#ifdef FEAT_QUICKFIX
114 /* When splitting the quickfix window open a new buffer in it,
115 * don't replicate the quickfix buffer. */
116 if (bt_quickfix(curbuf))
117 goto newwindow;
118#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119#ifdef FEAT_GUI
120 need_mouse_correct = TRUE;
121#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200122 (void)win_split((int)Prenum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 break;
124
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125/* split current window in two parts, vertically */
126 case Ctrl_V:
127 case 'v':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200128 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100130#ifdef FEAT_QUICKFIX
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000131 /* When splitting the quickfix window open a new buffer in it,
132 * don't replicate the quickfix buffer. */
133 if (bt_quickfix(curbuf))
134 goto newwindow;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100135#endif
136#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100138#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200139 (void)win_split((int)Prenum, WSP_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141
142/* split current window and edit alternate file */
143 case Ctrl_HAT:
144 case '^':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200145 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar1bbb6192018-11-10 16:02:01 +0100147
148 if (buflist_findnr(Prenum == 0
149 ? curwin->w_alt_fnum : Prenum) == NULL)
150 {
151 if (Prenum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100152 emsg(_(e_noalt));
Bram Moolenaar1bbb6192018-11-10 16:02:01 +0100153 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100154 semsg(_("E92: Buffer %ld not found"), Prenum);
Bram Moolenaar1bbb6192018-11-10 16:02:01 +0100155 break;
156 }
157
158 if (!curbuf_locked() && win_split(0, 0) == OK)
159 (void)buflist_getfile(
160 Prenum == 0 ? curwin->w_alt_fnum : Prenum,
161 (linenr_T)0, GETF_ALT, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 break;
163
164/* open new window */
165 case Ctrl_N:
166 case 'n':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200167 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000169#ifdef FEAT_QUICKFIX
170newwindow:
171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000173 /* window height */
174 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 else
176 cbuf[0] = NUL;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100177#if defined(FEAT_QUICKFIX)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000178 if (nchar == 'v' || nchar == Ctrl_V)
179 STRCAT(cbuf, "v");
180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 STRCAT(cbuf, "new");
182 do_cmdline_cmd(cbuf);
183 break;
184
185/* quit current window */
186 case Ctrl_Q:
187 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100189 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100190 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 break;
192
193/* close current window */
194 case Ctrl_C:
195 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100197 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100198 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 break;
200
Bram Moolenaar4033c552017-09-16 20:54:51 +0200201#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202/* close preview window */
203 case Ctrl_Z:
204 case 'z':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200205 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 do_cmdline_cmd((char_u *)"pclose");
208 break;
209
210/* cursor to preview window */
211 case 'P':
Bram Moolenaar29323592016-07-24 22:04:11 +0200212 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 if (wp->w_p_pvw)
214 break;
215 if (wp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100216 emsg(_("E441: There is no preview window"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 else
218 win_goto(wp);
219 break;
220#endif
221
222/* close all but current window */
223 case Ctrl_O:
224 case 'o':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200225 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100227 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100228 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 break;
230
231/* cursor to next window with wrap around */
232 case Ctrl_W:
233 case 'w':
234/* cursor to previous window with wrap around */
235 case 'W':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200236 CHECK_CMDWIN;
Bram Moolenaara1f4cb92016-11-06 15:25:42 +0100237 if (ONE_WINDOW && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 beep_flush();
239 else
240 {
241 if (Prenum) /* go to specified window */
242 {
243 for (wp = firstwin; --Prenum > 0; )
244 {
245 if (wp->w_next == NULL)
246 break;
247 else
248 wp = wp->w_next;
249 }
250 }
251 else
252 {
253 if (nchar == 'W') /* go to previous window */
254 {
255 wp = curwin->w_prev;
256 if (wp == NULL)
257 wp = lastwin; /* wrap around */
258 }
259 else /* go to next window */
260 {
261 wp = curwin->w_next;
262 if (wp == NULL)
263 wp = firstwin; /* wrap around */
264 }
265 }
266 win_goto(wp);
267 }
268 break;
269
270/* cursor to window below */
271 case 'j':
272 case K_DOWN:
273 case Ctrl_J:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200274 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 win_goto_ver(FALSE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 break;
277
278/* cursor to window above */
279 case 'k':
280 case K_UP:
281 case Ctrl_K:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200282 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 win_goto_ver(TRUE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 break;
285
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286/* cursor to left window */
287 case 'h':
288 case K_LEFT:
289 case Ctrl_H:
290 case K_BS:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200291 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 win_goto_hor(TRUE, Prenum1);
293 break;
294
295/* cursor to right window */
296 case 'l':
297 case K_RIGHT:
298 case Ctrl_L:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200299 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 win_goto_hor(FALSE, Prenum1);
301 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000303/* move window to new tab page */
304 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000305 if (one_window())
Bram Moolenaar32526b32019-01-19 17:43:09 +0100306 msg(_(m_onlyone));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000307 else
308 {
309 tabpage_T *oldtab = curtab;
310 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000311
312 /* First create a new tab with the window, then go back to
313 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000314 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000315 if (win_new_tabpage((int)Prenum) == OK
316 && valid_tabpage(oldtab))
317 {
318 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200319 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000320 if (curwin == wp)
321 win_close(curwin, FALSE);
322 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200323 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000324 }
325 }
326 break;
327
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328/* cursor to top-left window */
329 case 't':
330 case Ctrl_T:
331 win_goto(firstwin);
332 break;
333
334/* cursor to bottom-right window */
335 case 'b':
336 case Ctrl_B:
337 win_goto(lastwin);
338 break;
339
340/* cursor to last accessed (previous) window */
341 case 'p':
342 case Ctrl_P:
Bram Moolenaar3dda7db2016-04-03 21:22:58 +0200343 if (!win_valid(prevwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 beep_flush();
345 else
346 win_goto(prevwin);
347 break;
348
349/* exchange current and next window */
350 case 'x':
351 case Ctrl_X:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200352 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 win_exchange(Prenum);
354 break;
355
356/* rotate windows downwards */
357 case Ctrl_R:
358 case 'r':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200359 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 win_rotate(FALSE, (int)Prenum1); /* downwards */
362 break;
363
364/* rotate windows upwards */
365 case 'R':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200366 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 win_rotate(TRUE, (int)Prenum1); /* upwards */
369 break;
370
371/* move window to the very top/bottom/left/right */
372 case 'K':
373 case 'J':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 case 'H':
375 case 'L':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200376 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 win_totop((int)Prenum,
378 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
379 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
380 break;
381
382/* make all windows the same height */
383 case '=':
384#ifdef FEAT_GUI
385 need_mouse_correct = TRUE;
386#endif
387 win_equal(NULL, FALSE, 'b');
388 break;
389
390/* increase current window height */
391 case '+':
392#ifdef FEAT_GUI
393 need_mouse_correct = TRUE;
394#endif
395 win_setheight(curwin->w_height + (int)Prenum1);
396 break;
397
398/* decrease current window height */
399 case '-':
400#ifdef FEAT_GUI
401 need_mouse_correct = TRUE;
402#endif
403 win_setheight(curwin->w_height - (int)Prenum1);
404 break;
405
406/* set current window height */
407 case Ctrl__:
408 case '_':
409#ifdef FEAT_GUI
410 need_mouse_correct = TRUE;
411#endif
412 win_setheight(Prenum ? (int)Prenum : 9999);
413 break;
414
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415/* increase current window width */
416 case '>':
417#ifdef FEAT_GUI
418 need_mouse_correct = TRUE;
419#endif
420 win_setwidth(curwin->w_width + (int)Prenum1);
421 break;
422
423/* decrease current window width */
424 case '<':
425#ifdef FEAT_GUI
426 need_mouse_correct = TRUE;
427#endif
428 win_setwidth(curwin->w_width - (int)Prenum1);
429 break;
430
431/* set current window width */
432 case '|':
433#ifdef FEAT_GUI
434 need_mouse_correct = TRUE;
435#endif
436 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
437 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438
439/* jump to tag and split window if tag exists (in preview window) */
440#if defined(FEAT_QUICKFIX)
441 case '}':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200442 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 if (Prenum)
444 g_do_tagpreview = Prenum;
445 else
446 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200448 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 case ']':
450 case Ctrl_RSB:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200451 CHECK_CMDWIN;
Bram Moolenaard355c502014-09-23 13:48:43 +0200452 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 if (Prenum)
454 postponed_split = Prenum;
455 else
456 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200457#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200458 if (nchar != '}')
459 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461
Bram Moolenaard355c502014-09-23 13:48:43 +0200462 /* Execute the command right here, required when "wincmd ]"
463 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 do_nv_ident(Ctrl_RSB, NUL);
465 break;
466
467#ifdef FEAT_SEARCHPATH
468/* edit file name under cursor in a new window */
469 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000470 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000472wingotofile:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200473 CHECK_CMDWIN;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000474
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000475 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 if (ptr != NULL)
477 {
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200478 tabpage_T *oldtab = curtab;
479 win_T *oldwin = curwin;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000480# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000482# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 setpcmark();
484 if (win_split(0, 0) == OK)
485 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200486 RESET_BINDING(curwin);
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200487 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
488 ECMD_HIDE, NULL) == FAIL)
489 {
490 /* Failed to open the file, close the window
491 * opened for it. */
492 win_close(curwin, FALSE);
493 goto_tabpage_win(oldtab, oldwin);
494 }
495 else if (nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000496 {
497 curwin->w_cursor.lnum = lnum;
498 check_cursor_lnum();
499 beginline(BL_SOL | BL_FIX);
500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 }
502 vim_free(ptr);
503 }
504 break;
505#endif
506
507#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000508/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 * new window -- webb
510 */
511 case 'i': /* Go to any match */
512 case Ctrl_I:
513 type = FIND_ANY;
514 /* FALLTHROUGH */
515 case 'd': /* Go to definition, using 'define' */
516 case Ctrl_D:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200517 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
519 break;
520 find_pattern_in_path(ptr, 0, len, TRUE,
521 Prenum == 0 ? TRUE : FALSE, type,
522 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
523 curwin->w_set_curswant = TRUE;
524 break;
525#endif
526
Bram Moolenaar0a08c632018-07-25 22:36:52 +0200527/* Quickfix window only: view the result under the cursor in a new split. */
528#if defined(FEAT_QUICKFIX)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000529 case K_KENTER:
530 case CAR:
Bram Moolenaar05159a02005-02-26 23:04:13 +0000531 if (bt_quickfix(curbuf))
Bram Moolenaar0a08c632018-07-25 22:36:52 +0200532 qf_view_result(TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000533 break;
Bram Moolenaar0a08c632018-07-25 22:36:52 +0200534#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000535
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536/* CTRL-W g extended commands */
537 case 'g':
538 case Ctrl_G:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200539 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540#ifdef USE_ON_FLY_SCROLL
541 dont_scroll = TRUE; /* disallow scrolling here */
542#endif
543 ++no_mapping;
544 ++allow_keys; /* no mapping for xchar, but allow key codes */
545 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000546 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 --no_mapping;
549 --allow_keys;
550#ifdef FEAT_CMDL_INFO
551 (void)add_to_showcmd(xchar);
552#endif
553 switch (xchar)
554 {
555#if defined(FEAT_QUICKFIX)
556 case '}':
557 xchar = Ctrl_RSB;
558 if (Prenum)
559 g_do_tagpreview = Prenum;
560 else
561 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200563 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 case ']':
565 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200566 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 if (Prenum)
568 postponed_split = Prenum;
569 else
570 postponed_split = -1;
571
572 /* Execute the command right here, required when
573 * "wincmd g}" was used in a function. */
574 do_nv_ident('g', xchar);
575 break;
576
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000577#ifdef FEAT_SEARCHPATH
578 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000579 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100580 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000581 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000582 goto wingotofile;
583#endif
Bram Moolenaar72e83c12019-02-22 16:09:52 +0100584 case 't': // CTRL-W gt: go to next tab page
585 goto_tabpage((int)Prenum);
586 break;
587
Bram Moolenaar882d02e2019-02-22 17:56:43 +0100588 case 'T': // CTRL-W gT: go to previous tab page
589 goto_tabpage(-(int)Prenum1);
590 break;
591
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 default:
593 beep_flush();
594 break;
595 }
596 break;
597
598 default: beep_flush();
599 break;
600 }
601}
602
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100603/*
Bram Moolenaarb7316892019-05-01 18:08:42 +0200604 * Figure out the address type for ":wincmd".
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100605 */
606 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100607get_wincmd_addr_type(char_u *arg, exarg_T *eap)
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100608{
609 switch (*arg)
610 {
611 case 'S':
612 case Ctrl_S:
613 case 's':
614 case Ctrl_N:
615 case 'n':
616 case 'j':
617 case Ctrl_J:
618 case 'k':
619 case Ctrl_K:
620 case 'T':
621 case Ctrl_R:
622 case 'r':
623 case 'R':
624 case 'K':
625 case 'J':
626 case '+':
627 case '-':
628 case Ctrl__:
629 case '_':
630 case '|':
631 case ']':
632 case Ctrl_RSB:
633 case 'g':
634 case Ctrl_G:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100635 case Ctrl_V:
636 case 'v':
637 case 'h':
638 case Ctrl_H:
639 case 'l':
640 case Ctrl_L:
641 case 'H':
642 case 'L':
643 case '>':
644 case '<':
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100645#if defined(FEAT_QUICKFIX)
646 case '}':
647#endif
648#ifdef FEAT_SEARCHPATH
649 case 'f':
650 case 'F':
651 case Ctrl_F:
652#endif
653#ifdef FEAT_FIND_ID
654 case 'i':
655 case Ctrl_I:
656 case 'd':
657 case Ctrl_D:
658#endif
Bram Moolenaarb7316892019-05-01 18:08:42 +0200659 // window size or any count
660 eap->addr_type = ADDR_OTHER;
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100661 break;
662
663 case Ctrl_HAT:
664 case '^':
Bram Moolenaarb7316892019-05-01 18:08:42 +0200665 // buffer number
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100666 eap->addr_type = ADDR_BUFFERS;
667 break;
668
669 case Ctrl_Q:
670 case 'q':
671 case Ctrl_C:
672 case 'c':
673 case Ctrl_O:
674 case 'o':
675 case Ctrl_W:
676 case 'w':
677 case 'W':
678 case 'x':
679 case Ctrl_X:
Bram Moolenaarb7316892019-05-01 18:08:42 +0200680 // window number
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100681 eap->addr_type = ADDR_WINDOWS;
682 break;
683
684#if defined(FEAT_QUICKFIX)
685 case Ctrl_Z:
686 case 'z':
687 case 'P':
688#endif
689 case 't':
690 case Ctrl_T:
691 case 'b':
692 case Ctrl_B:
693 case 'p':
694 case Ctrl_P:
695 case '=':
696 case CAR:
Bram Moolenaarb7316892019-05-01 18:08:42 +0200697 // no count
698 eap->addr_type = ADDR_NONE;
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100699 break;
700 }
701}
702
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100703 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100704cmd_with_count(
705 char *cmd,
706 char_u *bufp,
707 size_t bufsize,
708 long Prenum)
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100709{
710 size_t len = STRLEN(cmd);
711
712 STRCPY(bufp, cmd);
713 if (Prenum > 0)
714 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum);
715}
716
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717/*
718 * split the current window, implements CTRL-W s and :split
719 *
720 * "size" is the height or width for the new window, 0 to use half of current
721 * height or width.
722 *
723 * "flags":
724 * WSP_ROOM: require enough room for new window
725 * WSP_VERT: vertical split.
726 * WSP_TOP: open window at the top-left of the shell (help window).
727 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
728 * WSP_HELP: creating the help window, keep layout snapshot
729 *
730 * return FAIL for failure, OK otherwise
731 */
732 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100733win_split(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000735 /* When the ":tab" modifier was used open a new tab page instead. */
736 if (may_open_tabpage() == OK)
737 return OK;
738
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 /* Add flags from ":vertical", ":topleft" and ":botright". */
740 flags |= cmdmod.split;
741 if ((flags & WSP_TOP) && (flags & WSP_BOT))
742 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100743 emsg(_("E442: Can't split topleft and botright at the same time"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 return FAIL;
745 }
746
747 /* When creating the help window make a snapshot of the window layout.
748 * Otherwise clear the snapshot, it's now invalid. */
749 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000750 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000752 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753
754 return win_split_ins(size, flags, NULL, 0);
755}
756
757/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100758 * When "new_wp" is NULL: split the current window in two.
759 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 * top/left/right/bottom.
761 * return FAIL for failure, OK otherwise
762 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000763 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100764win_split_ins(
765 int size,
766 int flags,
767 win_T *new_wp,
768 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100770 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 win_T *oldwin;
772 int new_size = size;
773 int i;
774 int need_status = 0;
775 int do_equal = FALSE;
776 int needed;
777 int available;
778 int oldwin_height = 0;
779 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200780 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200782 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200783 int wmh1;
Bram Moolenaar98da6ec2018-04-13 22:15:46 +0200784 int did_set_fraction = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
786 if (flags & WSP_TOP)
787 oldwin = firstwin;
788 else if (flags & WSP_BOT)
789 oldwin = lastwin;
790 else
791 oldwin = curwin;
792
793 /* add a status line when p_ls == 1 and splitting the first window */
Bram Moolenaar459ca562016-11-10 18:16:33 +0100794 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 {
Bram Moolenaar415a6932017-12-05 20:31:07 +0100796 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100798 emsg(_(e_noroom));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 return FAIL;
800 }
801 need_status = STATUS_HEIGHT;
802 }
803
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000804#ifdef FEAT_GUI
805 /* May be needed for the scrollbars that are going to change. */
806 if (gui.in_use)
807 out_flush();
808#endif
809
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 if (flags & WSP_VERT)
811 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200812 int wmw1;
813 int minwidth;
814
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816
817 /*
818 * Check if we are able to split the current window and compute its
819 * width.
820 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200821 /* Current window requires at least 1 space. */
822 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
823 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200825 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200826 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200828 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200830 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200832 else if (p_ea)
833 {
834 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
835 prevfrp = oldwin->w_frame;
836 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
837 frp = frp->fr_parent)
838 {
839 if (frp->fr_layout == FR_ROW)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +0100840 FOR_ALL_FRAMES(frp2, frp->fr_child)
Bram Moolenaar54368f22014-07-23 15:21:20 +0200841 if (frp2 != prevfrp)
842 minwidth += frame_minwidth(frp2, NOWIN);
843 prevfrp = frp;
844 }
845 available = topframe->fr_width;
846 needed += minwidth;
847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200849 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200850 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
851 available = oldwin->w_frame->fr_width;
852 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200853 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100854 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100856 emsg(_(e_noroom));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 return FAIL;
858 }
859 if (new_size == 0)
860 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200861 if (new_size > available - minwidth - 1)
862 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200863 if (new_size < wmw1)
864 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865
866 /* if it doesn't fit in the current window, need win_equal() */
867 if (oldwin->w_width - new_size - 1 < p_wmw)
868 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000869
870 /* We don't like to take lines for the new window from a
871 * 'winfixwidth' window. Take them from a window to the left or right
Bram Moolenaar38e34832017-03-19 20:22:36 +0100872 * instead, if possible. Add one for the separator. */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000873 if (oldwin->w_p_wfw)
Bram Moolenaar38e34832017-03-19 20:22:36 +0100874 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000875
876 /* Only make all windows the same width if one of them (except oldwin)
877 * is wider than one of the split windows. */
878 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
879 && oldwin->w_frame->fr_parent != NULL)
880 {
881 frp = oldwin->w_frame->fr_parent->fr_child;
882 while (frp != NULL)
883 {
884 if (frp->fr_win != oldwin && frp->fr_win != NULL
885 && (frp->fr_win->w_width > new_size
886 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100887 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000888 {
889 do_equal = TRUE;
890 break;
891 }
892 frp = frp->fr_next;
893 }
894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 }
896 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 {
898 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
900 /*
901 * Check if we are able to split the current window and compute its
902 * height.
903 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200904 /* Current window requires at least 1 space. */
Bram Moolenaar415a6932017-12-05 20:31:07 +0100905 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin);
Bram Moolenaar1f538352014-07-16 18:19:27 +0200906 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200908 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200909 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200911 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200913 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200915 else if (p_ea)
916 {
917 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
918 prevfrp = oldwin->w_frame;
919 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
920 frp = frp->fr_parent)
921 {
922 if (frp->fr_layout == FR_COL)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +0100923 FOR_ALL_FRAMES(frp2, frp->fr_child)
Bram Moolenaar54368f22014-07-23 15:21:20 +0200924 if (frp2 != prevfrp)
925 minheight += frame_minheight(frp2, NOWIN);
926 prevfrp = frp;
927 }
928 available = topframe->fr_height;
929 needed += minheight;
930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 else
932 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200933 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
934 available = oldwin->w_frame->fr_height;
935 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100937 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100939 emsg(_(e_noroom));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 return FAIL;
941 }
942 oldwin_height = oldwin->w_height;
943 if (need_status)
944 {
945 oldwin->w_status_height = STATUS_HEIGHT;
946 oldwin_height -= STATUS_HEIGHT;
947 }
948 if (new_size == 0)
949 new_size = oldwin_height / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200950 if (new_size > available - minheight - STATUS_HEIGHT)
951 new_size = available - minheight - STATUS_HEIGHT;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200952 if (new_size < wmh1)
953 new_size = wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954
955 /* if it doesn't fit in the current window, need win_equal() */
956 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
957 do_equal = TRUE;
958
959 /* We don't like to take lines for the new window from a
960 * 'winfixheight' window. Take them from a window above or below
961 * instead, if possible. */
962 if (oldwin->w_p_wfh)
963 {
Bram Moolenaar98da6ec2018-04-13 22:15:46 +0200964 /* Set w_fraction now so that the cursor keeps the same relative
965 * vertical position using the old height. */
966 set_fraction(oldwin);
967 did_set_fraction = TRUE;
968
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
970 oldwin);
971 oldwin_height = oldwin->w_height;
972 if (need_status)
973 oldwin_height -= STATUS_HEIGHT;
974 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000975
976 /* Only make all windows the same height if one of them (except oldwin)
977 * is higher than one of the split windows. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100978 if (!do_equal && p_ea && size == 0 && *p_ead != 'h'
Bram Moolenaar67f71312007-08-12 14:55:56 +0000979 && oldwin->w_frame->fr_parent != NULL)
980 {
981 frp = oldwin->w_frame->fr_parent->fr_child;
982 while (frp != NULL)
983 {
984 if (frp->fr_win != oldwin && frp->fr_win != NULL
985 && (frp->fr_win->w_height > new_size
986 || frp->fr_win->w_height > oldwin_height - new_size
987 - STATUS_HEIGHT))
988 {
989 do_equal = TRUE;
990 break;
991 }
992 frp = frp->fr_next;
993 }
994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 }
996
997 /*
998 * allocate new window structure and link it in the window list
999 */
1000 if ((flags & WSP_TOP) == 0
1001 && ((flags & WSP_BOT)
1002 || (flags & WSP_BELOW)
1003 || (!(flags & WSP_ABOVE)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001004 && ( (flags & WSP_VERT) ? p_spr : p_sb))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 {
1006 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001007 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001008 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 else
1010 win_append(oldwin, wp);
1011 }
1012 else
1013 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001014 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001015 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 else
1017 win_append(oldwin->w_prev, wp);
1018 }
1019
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001020 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 {
1022 if (wp == NULL)
1023 return FAIL;
1024
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001025 new_frame(wp);
1026 if (wp->w_frame == NULL)
1027 {
1028 win_free(wp, NULL);
1029 return FAIL;
1030 }
1031
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001032 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001033 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 }
1035
1036 /*
1037 * Reorganise the tree of frames to insert the new window.
1038 */
1039 if (flags & (WSP_TOP | WSP_BOT))
1040 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
1042 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 {
1044 curfrp = topframe->fr_child;
1045 if (flags & WSP_BOT)
1046 while (curfrp->fr_next != NULL)
1047 curfrp = curfrp->fr_next;
1048 }
1049 else
1050 curfrp = topframe;
1051 before = (flags & WSP_TOP);
1052 }
1053 else
1054 {
1055 curfrp = oldwin->w_frame;
1056 if (flags & WSP_BELOW)
1057 before = FALSE;
1058 else if (flags & WSP_ABOVE)
1059 before = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001060 else if (flags & WSP_VERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 before = !p_spr;
1062 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 before = !p_sb;
1064 }
1065 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
1066 {
1067 /* Need to create a new frame in the tree to make a branch. */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001068 frp = (frame_T *)alloc_clear(sizeof(frame_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 *frp = *curfrp;
1070 curfrp->fr_layout = layout;
1071 frp->fr_parent = curfrp;
1072 frp->fr_next = NULL;
1073 frp->fr_prev = NULL;
1074 curfrp->fr_child = frp;
1075 curfrp->fr_win = NULL;
1076 curfrp = frp;
1077 if (frp->fr_win != NULL)
1078 oldwin->w_frame = frp;
1079 else
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001080 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 frp->fr_parent = curfrp;
1082 }
1083
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001084 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001085 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001087 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 frp->fr_parent = curfrp->fr_parent;
1089
1090 /* Insert the new frame at the right place in the frame list. */
1091 if (before)
1092 frame_insert(curfrp, frp);
1093 else
1094 frame_append(curfrp, frp);
1095
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001096 /* Set w_fraction now so that the cursor keeps the same relative
1097 * vertical position. */
Bram Moolenaar98da6ec2018-04-13 22:15:46 +02001098 if (!did_set_fraction)
1099 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001100 wp->w_fraction = oldwin->w_fraction;
1101
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 if (flags & WSP_VERT)
1103 {
1104 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 if (need_status)
1107 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001108 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 oldwin->w_status_height = need_status;
1110 }
1111 if (flags & (WSP_TOP | WSP_BOT))
1112 {
1113 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001114 wp->w_winrow = tabline_height();
Bram Moolenaard326ad62017-09-18 20:31:41 +02001115 win_new_height(wp, curfrp->fr_height - (p_ls > 0)
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01001116 - WINBAR_HEIGHT(wp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 wp->w_status_height = (p_ls > 0);
1118 }
1119 else
1120 {
1121 /* height and row of new window is same as current window */
1122 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar415a6932017-12-05 20:31:07 +01001123 win_new_height(wp, VISIBLE_HEIGHT(oldwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 wp->w_status_height = oldwin->w_status_height;
1125 }
1126 frp->fr_height = curfrp->fr_height;
1127
1128 /* "new_size" of the current window goes to the new window, use
1129 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001130 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 if (before)
1132 wp->w_vsep_width = 1;
1133 else
1134 {
1135 wp->w_vsep_width = oldwin->w_vsep_width;
1136 oldwin->w_vsep_width = 1;
1137 }
1138 if (flags & (WSP_TOP | WSP_BOT))
1139 {
1140 if (flags & WSP_BOT)
1141 frame_add_vsep(curfrp);
1142 /* Set width of neighbor frame */
1143 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001144 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1145 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 }
1147 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001148 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 if (before) /* new window left of current one */
1150 {
1151 wp->w_wincol = oldwin->w_wincol;
1152 oldwin->w_wincol += new_size + 1;
1153 }
1154 else /* new window right of current one */
1155 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1156 frame_fix_width(oldwin);
1157 frame_fix_width(wp);
1158 }
1159 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 {
1161 /* width and column of new window is same as current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 if (flags & (WSP_TOP | WSP_BOT))
1163 {
1164 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001165 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 wp->w_vsep_width = 0;
1167 }
1168 else
1169 {
1170 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001171 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 wp->w_vsep_width = oldwin->w_vsep_width;
1173 }
1174 frp->fr_width = curfrp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175
1176 /* "new_size" of the current window goes to the new window, use
1177 * one row for the status line */
1178 win_new_height(wp, new_size);
1179 if (flags & (WSP_TOP | WSP_BOT))
Bram Moolenaar991dea32016-05-24 11:31:32 +02001180 {
Bram Moolenaard326ad62017-09-18 20:31:41 +02001181 int new_fr_height = curfrp->fr_height - new_size
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01001182 + WINBAR_HEIGHT(wp) ;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001183
1184 if (!((flags & WSP_BOT) && p_ls == 0))
1185 new_fr_height -= STATUS_HEIGHT;
1186 frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, FALSE);
1187 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 else
1189 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1190 if (before) /* new window above current one */
1191 {
1192 wp->w_winrow = oldwin->w_winrow;
1193 wp->w_status_height = STATUS_HEIGHT;
1194 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1195 }
1196 else /* new window below current one */
1197 {
Bram Moolenaar415a6932017-12-05 20:31:07 +01001198 wp->w_winrow = oldwin->w_winrow + VISIBLE_HEIGHT(oldwin)
1199 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 wp->w_status_height = oldwin->w_status_height;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001201 if (!(flags & WSP_BOT))
1202 oldwin->w_status_height = STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 if (flags & WSP_BOT)
1205 frame_add_statusline(curfrp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 frame_fix_height(wp);
1207 frame_fix_height(oldwin);
1208 }
1209
1210 if (flags & (WSP_TOP | WSP_BOT))
1211 (void)win_comp_pos();
1212
1213 /*
1214 * Both windows need redrawing
1215 */
1216 redraw_win_later(wp, NOT_VALID);
1217 wp->w_redr_status = TRUE;
1218 redraw_win_later(oldwin, NOT_VALID);
1219 oldwin->w_redr_status = TRUE;
1220
1221 if (need_status)
1222 {
1223 msg_row = Rows - 1;
1224 msg_col = sc_col;
1225 msg_clr_eos_force(); /* Old command/ruler may still be there */
1226 comp_col();
1227 msg_row = Rows - 1;
1228 msg_col = 0; /* put position back at start of line */
1229 }
1230
1231 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001232 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 */
1234 if (do_equal || dir != 0)
1235 win_equal(wp, TRUE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001237 : dir == 'h' ? 'b' : 'v');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238
1239 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1240 * size was given. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 if (flags & WSP_VERT)
1242 {
1243 i = p_wiw;
1244 if (size != 0)
1245 p_wiw = size;
1246
1247# ifdef FEAT_GUI
1248 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1249 if (gui.in_use)
1250 gui_init_which_components(NULL);
1251# endif
1252 }
1253 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 {
1255 i = p_wh;
1256 if (size != 0)
1257 p_wh = size;
1258 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001259
Bram Moolenaar23fb7a92014-07-30 14:05:00 +02001260#ifdef FEAT_JUMPLIST
1261 /* Keep same changelist position in new window. */
1262 wp->w_changelistidx = oldwin->w_changelistidx;
1263#endif
1264
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001265 /*
1266 * make the new window the current window
1267 */
Bram Moolenaarc917da42016-07-19 22:31:36 +02001268 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 if (flags & WSP_VERT)
1270 p_wiw = i;
1271 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 p_wh = i;
1273
1274 return OK;
1275}
1276
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001277
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001278/*
1279 * Initialize window "newp" from window "oldp".
1280 * Used when splitting a window and when creating a new tab page.
1281 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001282 * WSP_NEWLOC may be specified in flags to prevent the location list from
1283 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001284 */
1285 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001286win_init(win_T *newp, win_T *oldp, int flags UNUSED)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001287{
1288 int i;
1289
1290 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001291#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001292 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001293#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001294 oldp->w_buffer->b_nwindows++;
1295 newp->w_cursor = oldp->w_cursor;
1296 newp->w_valid = 0;
1297 newp->w_curswant = oldp->w_curswant;
1298 newp->w_set_curswant = oldp->w_set_curswant;
1299 newp->w_topline = oldp->w_topline;
1300#ifdef FEAT_DIFF
1301 newp->w_topfill = oldp->w_topfill;
1302#endif
1303 newp->w_leftcol = oldp->w_leftcol;
1304 newp->w_pcmark = oldp->w_pcmark;
1305 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1306 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001307 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001308 newp->w_fraction = oldp->w_fraction;
1309 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1310#ifdef FEAT_JUMPLIST
1311 copy_jumplist(oldp, newp);
1312#endif
1313#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001314 if (flags & WSP_NEWLOC)
1315 {
1316 /* Don't copy the location list. */
1317 newp->w_llist = NULL;
1318 newp->w_llist_ref = NULL;
1319 }
1320 else
Bram Moolenaar09037502018-09-25 22:08:14 +02001321 copy_loclist_stack(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001322#endif
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01001323 newp->w_localdir = (oldp->w_localdir == NULL)
1324 ? NULL : vim_strsave(oldp->w_localdir);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001325
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001326 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001327 for (i = 0; i < oldp->w_tagstacklen; i++)
1328 {
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02001329 taggy_T *tag = &newp->w_tagstack[i];
1330 *tag = oldp->w_tagstack[i];
1331 if (tag->tagname != NULL)
1332 tag->tagname = vim_strsave(tag->tagname);
1333 if (tag->user_data != NULL)
1334 tag->user_data = vim_strsave(tag->user_data);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001335 }
1336 newp->w_tagstackidx = oldp->w_tagstackidx;
1337 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001338#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001339 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001340#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001341
1342 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001343
Bram Moolenaara971b822011-09-14 14:43:25 +02001344#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001345 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001346#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001347}
1348
1349/*
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001350 * Initialize window "newp" from window "old".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001351 * Only the essential things are copied.
1352 */
1353 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001354win_init_some(win_T *newp, win_T *oldp)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001355{
1356 /* Use the same argument list. */
1357 newp->w_alist = oldp->w_alist;
1358 ++newp->w_alist->al_refcount;
1359 newp->w_arg_idx = oldp->w_arg_idx;
1360
1361 /* copy options from existing window */
1362 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001363}
1364
Bram Moolenaar4d784b22019-05-25 19:51:39 +02001365 static int
Bram Moolenaar682725c2019-05-25 20:10:37 +02001366win_valid_popup(win_T *win UNUSED)
Bram Moolenaar4d784b22019-05-25 19:51:39 +02001367{
1368#ifdef FEAT_TEXT_PROP
1369 win_T *wp;
1370
1371 for (wp = first_popupwin; wp != NULL; wp = wp->w_next)
1372 if (wp == win)
1373 return TRUE;
1374 for (wp = first_tab_popupwin; wp != NULL; wp = wp->w_next)
1375 if (wp == win)
1376 return TRUE;
1377#endif
1378 return FALSE;
1379}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381/*
Bram Moolenaare59215c2016-08-14 19:08:45 +02001382 * Check if "win" is a pointer to an existing window in the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 */
1384 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001385win_valid(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
1387 win_T *wp;
1388
1389 if (win == NULL)
1390 return FALSE;
Bram Moolenaar29323592016-07-24 22:04:11 +02001391 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 if (wp == win)
1393 return TRUE;
Bram Moolenaar4d784b22019-05-25 19:51:39 +02001394 return win_valid_popup(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395}
1396
1397/*
Bram Moolenaare59215c2016-08-14 19:08:45 +02001398 * Check if "win" is a pointer to an existing window in any tab page.
1399 */
1400 int
1401win_valid_any_tab(win_T *win)
1402{
1403 win_T *wp;
1404 tabpage_T *tp;
1405
1406 if (win == NULL)
1407 return FALSE;
1408 FOR_ALL_TABPAGES(tp)
1409 {
1410 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
1411 {
1412 if (wp == win)
1413 return TRUE;
1414 }
1415 }
Bram Moolenaar4d784b22019-05-25 19:51:39 +02001416 return win_valid_popup(win);
Bram Moolenaare59215c2016-08-14 19:08:45 +02001417}
1418
1419/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 * Return the number of windows.
1421 */
1422 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001423win_count(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424{
1425 win_T *wp;
1426 int count = 0;
1427
Bram Moolenaar29323592016-07-24 22:04:11 +02001428 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 ++count;
1430 return count;
1431}
1432
1433/*
1434 * Make "count" windows on the screen.
1435 * Return actual number of windows on the screen.
1436 * Must be called when there is just one window, filling the whole screen
1437 * (excluding the command line).
1438 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001440make_windows(
1441 int count,
1442 int vertical UNUSED) /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443{
1444 int maxcount;
1445 int todo;
1446
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 if (vertical)
1448 {
1449 /* Each windows needs at least 'winminwidth' lines and a separator
1450 * column. */
1451 maxcount = (curwin->w_width + curwin->w_vsep_width
1452 - (p_wiw - p_wmw)) / (p_wmw + 1);
1453 }
1454 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 {
1456 /* Each window needs at least 'winminheight' lines and a status line. */
Bram Moolenaar415a6932017-12-05 20:31:07 +01001457 maxcount = (VISIBLE_HEIGHT(curwin) + curwin->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1459 }
1460
1461 if (maxcount < 2)
1462 maxcount = 2;
1463 if (count > maxcount)
1464 count = maxcount;
1465
1466 /*
1467 * add status line now, otherwise first window will be too big
1468 */
1469 if (count > 1)
1470 last_status(TRUE);
1471
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 /*
1473 * Don't execute autocommands while creating the windows. Must do that
1474 * when putting the buffers in the windows.
1475 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001476 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477
1478 /* todo is number of windows left to create */
1479 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 if (vertical)
1481 {
1482 if (win_split(curwin->w_width - (curwin->w_width - todo)
1483 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1484 break;
1485 }
1486 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 {
1488 if (win_split(curwin->w_height - (curwin->w_height - todo
1489 * STATUS_HEIGHT) / (todo + 1)
1490 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1491 break;
1492 }
1493
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001494 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495
1496 /* return actual number of windows */
1497 return (count - todo);
1498}
1499
1500/*
1501 * Exchange current and next window
1502 */
1503 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001504win_exchange(long Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505{
1506 frame_T *frp;
1507 frame_T *frp2;
1508 win_T *wp;
1509 win_T *wp2;
1510 int temp;
1511
Bram Moolenaar459ca562016-11-10 18:16:33 +01001512 if (ONE_WINDOW) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 {
1514 beep_flush();
1515 return;
1516 }
1517
1518#ifdef FEAT_GUI
1519 need_mouse_correct = TRUE;
1520#endif
1521
1522 /*
1523 * find window to exchange with
1524 */
1525 if (Prenum)
1526 {
1527 frp = curwin->w_frame->fr_parent->fr_child;
1528 while (frp != NULL && --Prenum > 0)
1529 frp = frp->fr_next;
1530 }
1531 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1532 frp = curwin->w_frame->fr_next;
1533 else /* Swap last window in row/col with previous */
1534 frp = curwin->w_frame->fr_prev;
1535
1536 /* We can only exchange a window with another window, not with a frame
1537 * containing windows. */
1538 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1539 return;
1540 wp = frp->fr_win;
1541
1542/*
1543 * 1. remove curwin from the list. Remember after which window it was in wp2
1544 * 2. insert curwin before wp in the list
1545 * if wp != wp2
1546 * 3. remove wp from the list
1547 * 4. insert wp after wp2
1548 * 5. exchange the status line height and vsep width.
1549 */
1550 wp2 = curwin->w_prev;
1551 frp2 = curwin->w_frame->fr_prev;
1552 if (wp->w_prev != curwin)
1553 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001554 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 frame_remove(curwin->w_frame);
1556 win_append(wp->w_prev, curwin);
1557 frame_insert(frp, curwin->w_frame);
1558 }
1559 if (wp != wp2)
1560 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001561 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 frame_remove(wp->w_frame);
1563 win_append(wp2, wp);
1564 if (frp2 == NULL)
1565 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1566 else
1567 frame_append(frp2, wp->w_frame);
1568 }
1569 temp = curwin->w_status_height;
1570 curwin->w_status_height = wp->w_status_height;
1571 wp->w_status_height = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 temp = curwin->w_vsep_width;
1573 curwin->w_vsep_width = wp->w_vsep_width;
1574 wp->w_vsep_width = temp;
1575
1576 /* If the windows are not in the same frame, exchange the sizes to avoid
1577 * messing up the window layout. Otherwise fix the frame sizes. */
1578 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1579 {
1580 temp = curwin->w_height;
1581 curwin->w_height = wp->w_height;
1582 wp->w_height = temp;
1583 temp = curwin->w_width;
1584 curwin->w_width = wp->w_width;
1585 wp->w_width = temp;
1586 }
1587 else
1588 {
1589 frame_fix_height(curwin);
1590 frame_fix_height(wp);
1591 frame_fix_width(curwin);
1592 frame_fix_width(wp);
1593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
1595 (void)win_comp_pos(); /* recompute window positions */
1596
1597 win_enter(wp, TRUE);
Bram Moolenaarbf3250a2019-01-06 17:25:29 +01001598 redraw_all_later(NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599}
1600
1601/*
1602 * rotate windows: if upwards TRUE the second window becomes the first one
1603 * if upwards FALSE the first window becomes the second one
1604 */
1605 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001606win_rotate(int upwards, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
1608 win_T *wp1;
1609 win_T *wp2;
1610 frame_T *frp;
1611 int n;
1612
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01001613 if (ONE_WINDOW) /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 {
1615 beep_flush();
1616 return;
1617 }
1618
1619#ifdef FEAT_GUI
1620 need_mouse_correct = TRUE;
1621#endif
1622
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 /* Check if all frames in this row/col have one window. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001624 FOR_ALL_FRAMES(frp, curwin->w_frame->fr_parent->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 if (frp->fr_win == NULL)
1626 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001627 emsg(_("E443: Cannot rotate when another window is split"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 return;
1629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630
1631 while (count--)
1632 {
1633 if (upwards) /* first window becomes last window */
1634 {
1635 /* remove first window/frame from the list */
1636 frp = curwin->w_frame->fr_parent->fr_child;
1637 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001638 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 frame_remove(frp);
1640
1641 /* find last frame and append removed window/frame after it */
1642 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1643 ;
1644 win_append(frp->fr_win, wp1);
1645 frame_append(frp, wp1->w_frame);
1646
1647 wp2 = frp->fr_win; /* previously last window */
1648 }
1649 else /* last window becomes first window */
1650 {
1651 /* find last window/frame in the list and remove it */
1652 for (frp = curwin->w_frame; frp->fr_next != NULL;
1653 frp = frp->fr_next)
1654 ;
1655 wp1 = frp->fr_win;
1656 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001657 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 frame_remove(frp);
1659
1660 /* append the removed window/frame before the first in the list */
1661 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1662 frame_insert(frp->fr_parent->fr_child, frp);
1663 }
1664
1665 /* exchange status height and vsep width of old and new last window */
1666 n = wp2->w_status_height;
1667 wp2->w_status_height = wp1->w_status_height;
1668 wp1->w_status_height = n;
1669 frame_fix_height(wp1);
1670 frame_fix_height(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 n = wp2->w_vsep_width;
1672 wp2->w_vsep_width = wp1->w_vsep_width;
1673 wp1->w_vsep_width = n;
1674 frame_fix_width(wp1);
1675 frame_fix_width(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001677 /* recompute w_winrow and w_wincol for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 (void)win_comp_pos();
1679 }
1680
Bram Moolenaarbf3250a2019-01-06 17:25:29 +01001681 redraw_all_later(NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682}
1683
1684/*
1685 * Move the current window to the very top/bottom/left/right of the screen.
1686 */
1687 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001688win_totop(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689{
1690 int dir;
1691 int height = curwin->w_height;
1692
Bram Moolenaar459ca562016-11-10 18:16:33 +01001693 if (ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 {
1695 beep_flush();
1696 return;
1697 }
1698
1699 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001700 (void)winframe_remove(curwin, &dir, NULL);
1701 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 last_status(FALSE); /* may need to remove last status line */
1703 (void)win_comp_pos(); /* recompute window positions */
1704
1705 /* Split a window on the desired side and put the window there. */
1706 (void)win_split_ins(size, flags, curwin, dir);
1707 if (!(flags & WSP_VERT))
1708 {
1709 win_setheight(height);
1710 if (p_ea)
1711 win_equal(curwin, TRUE, 'v');
1712 }
1713
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001714#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1716 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001717 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719}
1720
1721/*
1722 * Move window "win1" to below/right of "win2" and make "win1" the current
1723 * window. Only works within the same frame!
1724 */
1725 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001726win_move_after(win_T *win1, win_T *win2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727{
1728 int height;
1729
1730 /* check if the arguments are reasonable */
1731 if (win1 == win2)
1732 return;
1733
1734 /* check if there is something to do */
1735 if (win2->w_next != win1)
1736 {
1737 /* may need move the status line/vertical separator of the last window
1738 * */
1739 if (win1 == lastwin)
1740 {
1741 height = win1->w_prev->w_status_height;
1742 win1->w_prev->w_status_height = win1->w_status_height;
1743 win1->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001744 if (win1->w_prev->w_vsep_width == 1)
1745 {
1746 /* Remove the vertical separator from the last-but-one window,
1747 * add it to the last window. Adjust the frame widths. */
1748 win1->w_prev->w_vsep_width = 0;
1749 win1->w_prev->w_frame->fr_width -= 1;
1750 win1->w_vsep_width = 1;
1751 win1->w_frame->fr_width += 1;
1752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 }
1754 else if (win2 == lastwin)
1755 {
1756 height = win1->w_status_height;
1757 win1->w_status_height = win2->w_status_height;
1758 win2->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001759 if (win1->w_vsep_width == 1)
1760 {
1761 /* Remove the vertical separator from win1, add it to the last
1762 * window, win2. Adjust the frame widths. */
1763 win2->w_vsep_width = 1;
1764 win2->w_frame->fr_width += 1;
1765 win1->w_vsep_width = 0;
1766 win1->w_frame->fr_width -= 1;
1767 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001769 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 frame_remove(win1->w_frame);
1771 win_append(win2, win1);
1772 frame_append(win2->w_frame, win1->w_frame);
1773
1774 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1775 redraw_later(NOT_VALID);
1776 }
1777 win_enter(win1, FALSE);
1778}
1779
1780/*
1781 * Make all windows the same height.
1782 * 'next_curwin' will soon be the current window, make sure it has enough
1783 * rows.
1784 */
1785 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001786win_equal(
1787 win_T *next_curwin, /* pointer to current window to be or NULL */
1788 int current, /* do only frame with current window */
1789 int dir) /* 'v' for vertically, 'h' for horizontally,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 'b' for both, 0 for using p_ead */
1791{
1792 if (dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 dir = *p_ead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001795 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001796 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797}
1798
1799/*
1800 * Set a frame to a new position and height, spreading the available room
1801 * equally over contained frames.
1802 * The window "next_curwin" (if not NULL) should at least get the size from
1803 * 'winheight' and 'winwidth' if possible.
1804 */
1805 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001806win_equal_rec(
1807 win_T *next_curwin, /* pointer to current window to be or NULL */
1808 int current, /* do only frame with current window */
1809 frame_T *topfr, /* frame to set size off */
1810 int dir, /* 'v', 'h' or 'b', see win_equal() */
1811 int col, /* horizontal position for frame */
1812 int row, /* vertical position for frame */
1813 int width, /* new width of frame */
1814 int height) /* new height of frame */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815{
1816 int n, m;
1817 int extra_sep = 0;
1818 int wincount, totwincount = 0;
1819 frame_T *fr;
1820 int next_curwin_size = 0;
1821 int room = 0;
1822 int new_size;
1823 int has_next_curwin = 0;
1824 int hnc;
1825
1826 if (topfr->fr_layout == FR_LEAF)
1827 {
1828 /* Set the width/height of this frame.
1829 * Redraw when size or position changes */
1830 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 )
1833 {
1834 topfr->fr_win->w_winrow = row;
1835 frame_new_height(topfr, height, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001837 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaarbf3250a2019-01-06 17:25:29 +01001838 redraw_all_later(NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 }
1840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 else if (topfr->fr_layout == FR_ROW)
1842 {
1843 topfr->fr_width = width;
1844 topfr->fr_height = height;
1845
1846 if (dir != 'v') /* equalize frame widths */
1847 {
1848 /* Compute the maximum number of windows horizontally in this
1849 * frame. */
1850 n = frame_minwidth(topfr, NOWIN);
1851 /* add one for the rightmost window, it doesn't have a separator */
1852 if (col + width == Columns)
1853 extra_sep = 1;
1854 else
1855 extra_sep = 0;
1856 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001857 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001859 /*
1860 * Compute width for "next_curwin" window and room available for
1861 * other windows.
1862 * "m" is the minimal width when counting p_wiw for "next_curwin".
1863 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 m = frame_minwidth(topfr, next_curwin);
1865 room = width - m;
1866 if (room < 0)
1867 {
1868 next_curwin_size = p_wiw + room;
1869 room = 0;
1870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 else
1872 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001873 next_curwin_size = -1;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001874 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001875 {
1876 /* If 'winfixwidth' set keep the window width if
1877 * possible.
1878 * Watch out for this window being the next_curwin. */
1879 if (frame_fixed_width(fr))
1880 {
1881 n = frame_minwidth(fr, NOWIN);
1882 new_size = fr->fr_width;
1883 if (frame_has_win(fr, next_curwin))
1884 {
1885 room += p_wiw - p_wmw;
1886 next_curwin_size = 0;
1887 if (new_size < p_wiw)
1888 new_size = p_wiw;
1889 }
1890 else
1891 /* These windows don't use up room. */
1892 totwincount -= (n + (fr->fr_next == NULL
1893 ? extra_sep : 0)) / (p_wmw + 1);
1894 room -= new_size - n;
1895 if (room < 0)
1896 {
1897 new_size += room;
1898 room = 0;
1899 }
1900 fr->fr_newwidth = new_size;
1901 }
1902 }
1903 if (next_curwin_size == -1)
1904 {
1905 if (!has_next_curwin)
1906 next_curwin_size = 0;
1907 else if (totwincount > 1
1908 && (room + (totwincount - 2))
1909 / (totwincount - 1) > p_wiw)
1910 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001911 /* Can make all windows wider than 'winwidth', spread
1912 * the room equally. */
1913 next_curwin_size = (room + p_wiw
1914 + (totwincount - 1) * p_wmw
1915 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001916 room -= next_curwin_size - p_wiw;
1917 }
1918 else
1919 next_curwin_size = p_wiw;
1920 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001922
1923 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 --totwincount; /* don't count curwin */
1925 }
1926
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001927 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 wincount = 1;
1930 if (fr->fr_next == NULL)
1931 /* last frame gets all that remains (avoid roundoff error) */
1932 new_size = width;
1933 else if (dir == 'v')
1934 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001935 else if (frame_fixed_width(fr))
1936 {
1937 new_size = fr->fr_newwidth;
1938 wincount = 0; /* doesn't count as a sizeable window */
1939 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 else
1941 {
1942 /* Compute the maximum number of windows horiz. in "fr". */
1943 n = frame_minwidth(fr, NOWIN);
1944 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1945 / (p_wmw + 1);
1946 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001947 if (has_next_curwin)
1948 hnc = frame_has_win(fr, next_curwin);
1949 else
1950 hnc = FALSE;
1951 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001953 if (totwincount == 0)
1954 new_size = room;
1955 else
1956 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001958 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
1960 next_curwin_size -= p_wiw - (m - n);
1961 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001962 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001964 else
1965 room -= new_size;
1966 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001969 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 * window, unless equalizing all frames. */
1971 if (!current || dir != 'v' || topfr->fr_parent != NULL
1972 || (new_size != fr->fr_width)
1973 || frame_has_win(fr, next_curwin))
1974 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001975 new_size, height);
1976 col += new_size;
1977 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 totwincount -= wincount;
1979 }
1980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 else /* topfr->fr_layout == FR_COL */
1982 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 topfr->fr_width = width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 topfr->fr_height = height;
1985
1986 if (dir != 'h') /* equalize frame heights */
1987 {
1988 /* Compute maximum number of windows vertically in this frame. */
1989 n = frame_minheight(topfr, NOWIN);
1990 /* add one for the bottom window if it doesn't have a statusline */
1991 if (row + height == cmdline_row && p_ls == 0)
1992 extra_sep = 1;
1993 else
1994 extra_sep = 0;
1995 totwincount = (n + extra_sep) / (p_wmh + 1);
1996 has_next_curwin = frame_has_win(topfr, next_curwin);
1997
1998 /*
1999 * Compute height for "next_curwin" window and room available for
2000 * other windows.
2001 * "m" is the minimal height when counting p_wh for "next_curwin".
2002 */
2003 m = frame_minheight(topfr, next_curwin);
2004 room = height - m;
2005 if (room < 0)
2006 {
2007 /* The room is less then 'winheight', use all space for the
2008 * current window. */
2009 next_curwin_size = p_wh + room;
2010 room = 0;
2011 }
2012 else
2013 {
2014 next_curwin_size = -1;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002015 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 {
2017 /* If 'winfixheight' set keep the window height if
2018 * possible.
2019 * Watch out for this window being the next_curwin. */
2020 if (frame_fixed_height(fr))
2021 {
2022 n = frame_minheight(fr, NOWIN);
2023 new_size = fr->fr_height;
2024 if (frame_has_win(fr, next_curwin))
2025 {
2026 room += p_wh - p_wmh;
2027 next_curwin_size = 0;
2028 if (new_size < p_wh)
2029 new_size = p_wh;
2030 }
2031 else
2032 /* These windows don't use up room. */
2033 totwincount -= (n + (fr->fr_next == NULL
2034 ? extra_sep : 0)) / (p_wmh + 1);
2035 room -= new_size - n;
2036 if (room < 0)
2037 {
2038 new_size += room;
2039 room = 0;
2040 }
2041 fr->fr_newheight = new_size;
2042 }
2043 }
2044 if (next_curwin_size == -1)
2045 {
2046 if (!has_next_curwin)
2047 next_curwin_size = 0;
2048 else if (totwincount > 1
2049 && (room + (totwincount - 2))
2050 / (totwincount - 1) > p_wh)
2051 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002052 /* can make all windows higher than 'winheight',
2053 * spread the room equally. */
2054 next_curwin_size = (room + p_wh
2055 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 + (totwincount - 1)) / totwincount;
2057 room -= next_curwin_size - p_wh;
2058 }
2059 else
2060 next_curwin_size = p_wh;
2061 }
2062 }
2063
2064 if (has_next_curwin)
2065 --totwincount; /* don't count curwin */
2066 }
2067
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002068 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 wincount = 1;
2071 if (fr->fr_next == NULL)
2072 /* last frame gets all that remains (avoid roundoff error) */
2073 new_size = height;
2074 else if (dir == 'h')
2075 new_size = fr->fr_height;
2076 else if (frame_fixed_height(fr))
2077 {
2078 new_size = fr->fr_newheight;
2079 wincount = 0; /* doesn't count as a sizeable window */
2080 }
2081 else
2082 {
2083 /* Compute the maximum number of windows vert. in "fr". */
2084 n = frame_minheight(fr, NOWIN);
2085 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2086 / (p_wmh + 1);
2087 m = frame_minheight(fr, next_curwin);
2088 if (has_next_curwin)
2089 hnc = frame_has_win(fr, next_curwin);
2090 else
2091 hnc = FALSE;
2092 if (hnc) /* don't count next_curwin */
2093 --wincount;
2094 if (totwincount == 0)
2095 new_size = room;
2096 else
2097 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2098 / totwincount;
2099 if (hnc) /* add next_curwin size */
2100 {
2101 next_curwin_size -= p_wh - (m - n);
2102 new_size += next_curwin_size;
2103 room -= new_size - next_curwin_size;
2104 }
2105 else
2106 room -= new_size;
2107 new_size += n;
2108 }
2109 /* Skip frame that is full width when splitting or closing a
2110 * window, unless equalizing all frames. */
2111 if (!current || dir != 'h' || topfr->fr_parent != NULL
2112 || (new_size != fr->fr_height)
2113 || frame_has_win(fr, next_curwin))
2114 win_equal_rec(next_curwin, current, fr, dir, col, row,
2115 width, new_size);
2116 row += new_size;
2117 height -= new_size;
2118 totwincount -= wincount;
2119 }
2120 }
2121}
2122
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002123#ifdef FEAT_JOB_CHANNEL
2124 static void
2125leaving_window(win_T *win)
2126{
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002127 // Only matters for a prompt window.
2128 if (!bt_prompt(win->w_buffer))
2129 return;
2130
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002131 // When leaving a prompt window stop Insert mode and perhaps restart
2132 // it when entering that window again.
2133 win->w_buffer->b_prompt_insert = restart_edit;
Bram Moolenaar942b4542018-06-17 16:23:34 +02002134 if (restart_edit != 0 && mode_displayed)
2135 clear_cmdline = TRUE; /* unshow mode later */
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002136 restart_edit = NUL;
2137
2138 // When leaving the window (or closing the window) was done from a
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002139 // callback we need to break out of the Insert mode loop and restart Insert
2140 // mode when entering the window again.
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002141 if (State & INSERT)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002142 {
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002143 stop_insert_mode = TRUE;
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002144 if (win->w_buffer->b_prompt_insert == NUL)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002145 win->w_buffer->b_prompt_insert = 'A';
2146 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002147}
2148
2149 static void
2150entering_window(win_T *win)
2151{
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002152 // Only matters for a prompt window.
2153 if (!bt_prompt(win->w_buffer))
2154 return;
2155
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002156 // When switching to a prompt buffer that was in Insert mode, don't stop
2157 // Insert mode, it may have been set in leaving_window().
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002158 if (win->w_buffer->b_prompt_insert != NUL)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002159 stop_insert_mode = FALSE;
2160
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002161 // When entering the prompt window restart Insert mode if we were in Insert
2162 // mode when we left it.
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002163 restart_edit = win->w_buffer->b_prompt_insert;
2164}
2165#endif
2166
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002168 * Close all windows for buffer "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 */
2170 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002171close_windows(
2172 buf_T *buf,
2173 int keep_curwin) /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002175 win_T *wp;
2176 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002177 int h = tabline_height();
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002178 int count = tabpage_index(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179
2180 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002181
Bram Moolenaar459ca562016-11-10 18:16:33 +01002182 for (wp = firstwin; wp != NULL && !ONE_WINDOW; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002184 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002185 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002187 if (win_close(wp, FALSE) == FAIL)
2188 /* If closing the window fails give up, to avoid looping
2189 * forever. */
2190 break;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002191
2192 /* Start all over, autocommands may change the window layout. */
2193 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 }
2195 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002196 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002198
2199 /* Also check windows in other tab pages. */
2200 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2201 {
2202 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002203 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002204 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002205 if (wp->w_buffer == buf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002206 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaarf740b292006-02-16 22:11:02 +00002207 {
2208 win_close_othertab(wp, FALSE, tp);
2209
2210 /* Start all over, the tab page may be closed and
2211 * autocommands may change the window layout. */
2212 nexttp = first_tabpage;
2213 break;
2214 }
2215 }
2216
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002218
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002219 if (count != tabpage_index(NULL))
2220 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002221
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002222 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002223 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002224 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225}
2226
2227/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002228 * Return TRUE if the current window is the only window that exists (ignoring
2229 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002230 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002231 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002232 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002233last_window(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002234{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002235 return (one_window() && first_tabpage->tp_next == NULL);
2236}
2237
2238/*
2239 * Return TRUE if there is only one window other than "aucmd_win" in the
2240 * current tab page.
2241 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002242 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002243one_window(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002244{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002245 win_T *wp;
2246 int seen_one = FALSE;
2247
2248 FOR_ALL_WINDOWS(wp)
2249 {
2250 if (wp != aucmd_win)
2251 {
2252 if (seen_one)
2253 return FALSE;
2254 seen_one = TRUE;
2255 }
2256 }
2257 return TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002258}
2259
2260/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002261 * Close the possibly last window in a tab page.
2262 * Returns TRUE when the window was closed already.
2263 */
2264 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002265close_last_window_tabpage(
2266 win_T *win,
2267 int free_buf,
2268 tabpage_T *prev_curtab)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002269{
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002270 if (ONE_WINDOW)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002271 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002272 buf_T *old_curbuf = curbuf;
2273
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002274 /*
2275 * Closing the last window in a tab page. First go to another tab
2276 * page and then close the window and the tab page. This avoids that
2277 * curwin and curtab are invalid while we are freeing memory, they may
2278 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002279 * Don't trigger autocommands yet, they may use wrong values, so do
2280 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002281 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002282 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002283 redraw_tabline = TRUE;
2284
2285 /* Safety check: Autocommands may have closed the window when jumping
2286 * to the other tab page. */
2287 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2288 {
2289 int h = tabline_height();
2290
2291 win_close_othertab(win, free_buf, prev_curtab);
2292 if (h != tabline_height())
2293 shell_new_rows();
2294 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002295#ifdef FEAT_JOB_CHANNEL
2296 entering_window(curwin);
2297#endif
Bram Moolenaara8596c42012-06-13 14:28:20 +02002298 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2299 * that now. */
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002300 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002301 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002302 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2303 if (old_curbuf != curbuf)
2304 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002305 return TRUE;
2306 }
2307 return FALSE;
2308}
2309
2310/*
Bram Moolenaar4d784b22019-05-25 19:51:39 +02002311 * Close the buffer of "win" and unload it if "free_buf" is TRUE.
2312 * "abort_if_last" is passed to close_buffer(): abort closing if all other
2313 * windows are closed.
2314 */
2315 static void
2316win_close_buffer(win_T *win, int free_buf, int abort_if_last)
2317{
2318#ifdef FEAT_SYN_HL
2319 // Free independent synblock before the buffer is freed.
2320 if (win->w_buffer != NULL)
2321 reset_synblock(win);
2322#endif
2323
2324#ifdef FEAT_QUICKFIX
2325 // When the quickfix/location list window is closed, unlist the buffer.
2326 if (win->w_buffer != NULL && bt_quickfix(win->w_buffer))
2327 win->w_buffer->b_p_bl = FALSE;
2328#endif
2329
2330 // Close the link to the buffer.
2331 if (win->w_buffer != NULL)
2332 {
2333 bufref_T bufref;
2334
2335 set_bufref(&bufref, curbuf);
2336 win->w_closing = TRUE;
2337 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0,
2338 abort_if_last);
2339 if (win_valid_any_tab(win))
2340 win->w_closing = FALSE;
2341 // Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2342 // "wipe".
2343 if (!bufref_valid(&bufref))
2344 curbuf = firstbuf;
2345 }
2346}
2347
2348/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002349 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 * If "free_buf" is TRUE related buffer may be unloaded.
2351 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002352 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002353 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002355 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002356win_close(win_T *win, int free_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357{
2358 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 int other_buffer = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 int dir;
2362 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002363 tabpage_T *prev_curtab = curtab;
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002364 frame_T *win_frame = win->w_frame->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002366 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002368 emsg(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002369 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 }
2371
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002372 if (win->w_closing || (win->w_buffer != NULL
2373 && win->w_buffer->b_locked > 0))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002374 return FAIL; /* window is already being closed */
Bram Moolenaar4d784b22019-05-25 19:51:39 +02002375 if (win_unlisted(win))
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002376 {
Bram Moolenaar4d784b22019-05-25 19:51:39 +02002377 emsg(_("E813: Cannot close autocmd or popup window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002378 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002379 }
2380 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2381 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002382 emsg(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002383 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002384 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002385
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002386 /* When closing the last window in a tab page first go to another tab page
2387 * and then close the window and the tab page to avoid that curwin and
2388 * curtab are invalid while we are freeing memory. */
2389 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002390 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002391
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 /* When closing the help window, try restoring a snapshot after closing
2393 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002394 if (bt_help(win->w_buffer))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 help_window = TRUE;
2396 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002397 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 if (win == curwin)
2400 {
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002401#ifdef FEAT_JOB_CHANNEL
2402 leaving_window(curwin);
2403#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 /*
2405 * Guess which window is going to be the new current window.
2406 * This may change because of the autocommands (sigh).
2407 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002408 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409
2410 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002411 * Be careful: If autocommands delete the window or cause this window
2412 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 */
2414 if (wp->w_buffer != curbuf)
2415 {
2416 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002417 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002419 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002420 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002421 win->w_closing = FALSE;
2422 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002423 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002425 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002427 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002428 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002429 win->w_closing = FALSE;
2430 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002431 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002432#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 /* autocmds may abort script processing */
2434 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002435 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002439#ifdef FEAT_GUI
Bram Moolenaar647e24b2019-03-17 16:39:46 +01002440 // Avoid trouble with scrollbars that are going to be deleted in
2441 // win_free().
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002442 if (gui.in_use)
2443 out_flush();
2444#endif
2445
Bram Moolenaar4d784b22019-05-25 19:51:39 +02002446 win_close_buffer(win, free_buf, TRUE);
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002447
Bram Moolenaar802418d2013-01-17 14:00:11 +01002448 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2449 && (last_window() || curtab != prev_curtab
2450 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002451 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002452 /* Autocommands have closed all windows, quit now. Restore
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002453 * curwin->w_buffer, otherwise writing viminfo may fail. */
2454 if (curwin->w_buffer == NULL)
2455 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002456 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002457 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002458
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002459 /* Autocommands may have moved to another tab page. */
2460 if (curtab != prev_curtab && win_valid_any_tab(win)
2461 && win->w_buffer == NULL)
2462 {
2463 /* Need to close the window anyway, since the buffer is NULL. */
2464 win_close_othertab(win, FALSE, prev_curtab);
2465 return FAIL;
2466 }
2467
2468 /* Autocommands may have closed the window already or closed the only
2469 * other window. */
2470 if (!win_valid(win) || last_window()
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002471 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002472 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473
Bram Moolenaara971b822011-09-14 14:43:25 +02002474 /* Free the memory used for the window and get the window that received
2475 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002476 wp = win_free_mem(win, &dir, NULL);
2477
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 /* Make sure curwin isn't invalid. It can cause severe trouble when
2479 * printing an error message. For win_equal() curbuf needs to be valid
2480 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002481 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 {
2483 curwin = wp;
2484#ifdef FEAT_QUICKFIX
2485 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2486 {
2487 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002488 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 * finding another window to go to.
2490 */
2491 for (;;)
2492 {
2493 if (wp->w_next == NULL)
2494 wp = firstwin;
2495 else
2496 wp = wp->w_next;
2497 if (wp == curwin)
2498 break;
2499 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2500 {
2501 curwin = wp;
2502 break;
2503 }
2504 }
2505 }
2506#endif
2507 curbuf = curwin->w_buffer;
2508 close_curwin = TRUE;
Bram Moolenaarf79225e2017-03-18 23:11:04 +01002509
2510 /* The cursor position may be invalid if the buffer changed after last
2511 * using the window. */
2512 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002514 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
Bram Moolenaar8eeeba82017-06-25 22:45:39 +02002515 /* If the frame of the closed window contains the new current window,
2516 * only resize that frame. Otherwise resize all windows. */
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002517 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 else
2519 win_comp_pos();
2520 if (close_curwin)
2521 {
Bram Moolenaarc917da42016-07-19 22:31:36 +02002522 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 if (other_buffer)
2524 /* careful: after this wp and win may be invalid! */
2525 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 }
2527
2528 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002529 * If last window has a status line now and we don't want one,
2530 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 */
2532 last_status(FALSE);
2533
2534 /* After closing the help window, try restoring the window layout from
2535 * before it was opened. */
2536 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002537 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002539#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2541 if (gui.in_use && !win_hasvertsplit())
2542 gui_init_which_components(NULL);
2543#endif
2544
2545 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002546 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547}
2548
2549/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002550 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002551 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002552 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002553 * Caller must check if buffer is hidden and whether the tabline needs to be
2554 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002555 */
2556 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002557win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002558{
2559 win_T *wp;
2560 int dir;
2561 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002562 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002563
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002564 /* Get here with win->w_buffer == NULL when win_close() detects the tab
2565 * page changed. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002566 if (win->w_closing || (win->w_buffer != NULL
2567 && win->w_buffer->b_locked > 0))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002568 return; /* window is already being closed */
Bram Moolenaar362ce482012-06-06 19:02:45 +02002569
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002570 if (win->w_buffer != NULL)
2571 /* Close the link to the buffer. */
2572 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002573
2574 /* Careful: Autocommands may have closed the tab page or made it the
2575 * current tab page. */
2576 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2577 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002578 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002579 return;
2580
2581 /* Autocommands may have closed the window already. */
2582 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2583 ;
2584 if (wp == NULL)
2585 return;
2586
Bram Moolenaarf740b292006-02-16 22:11:02 +00002587 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002588 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002589 {
2590 if (tp == first_tabpage)
2591 first_tabpage = tp->tp_next;
2592 else
2593 {
2594 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2595 ptp = ptp->tp_next)
2596 ;
2597 if (ptp == NULL)
2598 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01002599 internal_error("win_close_othertab()");
Bram Moolenaarf740b292006-02-16 22:11:02 +00002600 return;
2601 }
2602 ptp->tp_next = tp->tp_next;
2603 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002604 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002605 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002606
2607 /* Free the memory used for the window. */
2608 win_free_mem(win, &dir, tp);
2609
2610 if (free_tp)
2611 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002612}
2613
2614/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002615 * Free the memory used for a window.
2616 * Returns a pointer to the window that got the freed up space.
2617 */
2618 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002619win_free_mem(
2620 win_T *win,
2621 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2622 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002623{
2624 frame_T *frp;
2625 win_T *wp;
2626
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002627 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002628 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002629 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002630 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002631 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002632
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002633 /* When deleting the current window of another tab page select a new
2634 * current window. */
2635 if (tp != NULL && win == tp->tp_curwin)
2636 tp->tp_curwin = wp;
2637
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002638 return wp;
2639}
2640
2641#if defined(EXITFREE) || defined(PROTO)
2642 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002643win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002644{
2645 int dummy;
2646
Bram Moolenaarf740b292006-02-16 22:11:02 +00002647 while (first_tabpage->tp_next != NULL)
2648 tabpage_close(TRUE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002649
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002650 if (aucmd_win != NULL)
2651 {
2652 (void)win_free_mem(aucmd_win, &dummy, NULL);
2653 aucmd_win = NULL;
2654 }
Bram Moolenaar4d784b22019-05-25 19:51:39 +02002655# ifdef FEAT_TEXT_PROP
2656 close_all_popups();
2657# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002658
2659 while (firstwin != NULL)
2660 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002661
2662 /* No window should be used after this. Set curwin to NULL to crash
2663 * instead of using freed memory. */
2664 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002665}
2666#endif
2667
2668/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 * Remove a window and its frame from the tree of frames.
2670 * Returns a pointer to the window that got the freed up space.
2671 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002672 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002673winframe_remove(
2674 win_T *win,
2675 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2676 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677{
2678 frame_T *frp, *frp2, *frp3;
2679 frame_T *frp_close = win->w_frame;
2680 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
2682 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002683 * If there is only one window there is nothing to remove.
2684 */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002685 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002686 return NULL;
2687
2688 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 * Remove the window from its frame.
2690 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002691 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 wp = frame2win(frp2);
2693
2694 /* Remove this frame from the list of frames. */
2695 frame_remove(frp_close);
2696
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 if (frp_close->fr_parent->fr_layout == FR_COL)
2698 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002699 /* When 'winfixheight' is set, try to find another frame in the column
2700 * (as close to the closed frame as possible) to distribute the height
2701 * to. */
2702 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2703 {
2704 frp = frp_close->fr_prev;
2705 frp3 = frp_close->fr_next;
2706 while (frp != NULL || frp3 != NULL)
2707 {
2708 if (frp != NULL)
2709 {
Bram Moolenaar9e1e3582019-03-30 19:49:06 +01002710 if (!frame_fixed_height(frp))
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002711 {
2712 frp2 = frp;
Bram Moolenaar9e1e3582019-03-30 19:49:06 +01002713 wp = frame2win(frp2);
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002714 break;
2715 }
2716 frp = frp->fr_prev;
2717 }
2718 if (frp3 != NULL)
2719 {
2720 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2721 {
2722 frp2 = frp3;
2723 wp = frp3->fr_win;
2724 break;
2725 }
2726 frp3 = frp3->fr_next;
2727 }
2728 }
2729 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2731 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 *dirp = 'v';
2733 }
2734 else
2735 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002736 /* When 'winfixwidth' is set, try to find another frame in the column
2737 * (as close to the closed frame as possible) to distribute the width
2738 * to. */
2739 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2740 {
2741 frp = frp_close->fr_prev;
2742 frp3 = frp_close->fr_next;
2743 while (frp != NULL || frp3 != NULL)
2744 {
2745 if (frp != NULL)
2746 {
Bram Moolenaar9e1e3582019-03-30 19:49:06 +01002747 if (!frame_fixed_width(frp))
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002748 {
2749 frp2 = frp;
Bram Moolenaar9e1e3582019-03-30 19:49:06 +01002750 wp = frame2win(frp2);
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002751 break;
2752 }
2753 frp = frp->fr_prev;
2754 }
2755 if (frp3 != NULL)
2756 {
2757 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2758 {
2759 frp2 = frp3;
2760 wp = frp3->fr_win;
2761 break;
2762 }
2763 frp3 = frp3->fr_next;
2764 }
2765 }
2766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002768 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 *dirp = 'h';
2770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771
2772 /* If rows/columns go to a window below/right its positions need to be
2773 * updated. Can only be done after the sizes have been updated. */
2774 if (frp2 == frp_close->fr_next)
2775 {
2776 int row = win->w_winrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02002777 int col = win->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778
2779 frame_comp_pos(frp2, &row, &col);
2780 }
2781
2782 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2783 {
2784 /* There is no other frame in this list, move its info to the parent
2785 * and remove it. */
2786 frp2->fr_parent->fr_layout = frp2->fr_layout;
2787 frp2->fr_parent->fr_child = frp2->fr_child;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002788 FOR_ALL_FRAMES(frp, frp2->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 frp->fr_parent = frp2->fr_parent;
2790 frp2->fr_parent->fr_win = frp2->fr_win;
2791 if (frp2->fr_win != NULL)
2792 frp2->fr_win->w_frame = frp2->fr_parent;
2793 frp = frp2->fr_parent;
Bram Moolenaar6f361c92018-01-31 19:06:50 +01002794 if (topframe->fr_child == frp2)
2795 topframe->fr_child = frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 vim_free(frp2);
2797
2798 frp2 = frp->fr_parent;
2799 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2800 {
2801 /* The frame above the parent has the same layout, have to merge
2802 * the frames into this list. */
2803 if (frp2->fr_child == frp)
2804 frp2->fr_child = frp->fr_child;
2805 frp->fr_child->fr_prev = frp->fr_prev;
2806 if (frp->fr_prev != NULL)
2807 frp->fr_prev->fr_next = frp->fr_child;
2808 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2809 {
2810 frp3->fr_parent = frp2;
2811 if (frp3->fr_next == NULL)
2812 {
2813 frp3->fr_next = frp->fr_next;
2814 if (frp->fr_next != NULL)
2815 frp->fr_next->fr_prev = frp3;
2816 break;
2817 }
2818 }
Bram Moolenaar6f361c92018-01-31 19:06:50 +01002819 if (topframe->fr_child == frp)
2820 topframe->fr_child = frp2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 vim_free(frp);
2822 }
2823 }
2824
2825 return wp;
2826}
2827
2828/*
Bram Moolenaarc136af22018-05-04 20:15:38 +02002829 * Return a pointer to the frame that will receive the empty screen space that
2830 * is left over after "win" is closed.
2831 *
2832 * If 'splitbelow' or 'splitright' is set, the space goes above or to the left
2833 * by default. Otherwise, the free space goes below or to the right. The
2834 * result is that opening a window and then immediately closing it will
2835 * preserve the initial window layout. The 'wfh' and 'wfw' settings are
2836 * respected when possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 */
2838 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002839win_altframe(
2840 win_T *win,
2841 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842{
2843 frame_T *frp;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002844 frame_T *other_fr, *target_fr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002846 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002847 return alt_tabpage()->tp_curwin->w_frame;
2848
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 frp = win->w_frame;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002850
2851 if (frp->fr_prev == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 return frp->fr_next;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002853 if (frp->fr_next == NULL)
2854 return frp->fr_prev;
2855
2856 target_fr = frp->fr_next;
2857 other_fr = frp->fr_prev;
2858 if (p_spr || p_sb)
2859 {
2860 target_fr = frp->fr_prev;
2861 other_fr = frp->fr_next;
2862 }
2863
2864 /* If 'wfh' or 'wfw' is set for the target and not for the alternate
2865 * window, reverse the selection. */
2866 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
2867 {
2868 if (frame_fixed_width(target_fr) && !frame_fixed_width(other_fr))
2869 target_fr = other_fr;
2870 }
2871 else
2872 {
2873 if (frame_fixed_height(target_fr) && !frame_fixed_height(other_fr))
2874 target_fr = other_fr;
2875 }
2876
2877 return target_fr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878}
2879
2880/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002881 * Return the tabpage that will be used if the current one is closed.
2882 */
2883 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002884alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002885{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002886 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002887
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002888 /* Use the next tab page if possible. */
2889 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002890 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002891
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002892 /* Find the last but one tab page. */
2893 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2894 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002895 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002896}
2897
2898/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 * Find the left-upper window in frame "frp".
2900 */
2901 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002902frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903{
2904 while (frp->fr_win == NULL)
2905 frp = frp->fr_child;
2906 return frp->fr_win;
2907}
2908
2909/*
2910 * Return TRUE if frame "frp" contains window "wp".
2911 */
2912 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002913frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914{
2915 frame_T *p;
2916
2917 if (frp->fr_layout == FR_LEAF)
2918 return frp->fr_win == wp;
2919
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002920 FOR_ALL_FRAMES(p, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 if (frame_has_win(p, wp))
2922 return TRUE;
2923 return FALSE;
2924}
2925
2926/*
2927 * Set a new height for a frame. Recursively sets the height for contained
2928 * frames and windows. Caller must take care of positions.
2929 */
2930 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002931frame_new_height(
2932 frame_T *topfrp,
2933 int height,
2934 int topfirst, /* resize topmost contained frame first */
2935 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 may cause the height not to be set */
2937{
2938 frame_T *frp;
2939 int extra_lines;
2940 int h;
2941
2942 if (topfrp->fr_win != NULL)
2943 {
2944 /* Simple case: just one window. */
2945 win_new_height(topfrp->fr_win,
Bram Moolenaard326ad62017-09-18 20:31:41 +02002946 height - topfrp->fr_win->w_status_height
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01002947 - WINBAR_HEIGHT(topfrp->fr_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 else if (topfrp->fr_layout == FR_ROW)
2950 {
2951 do
2952 {
2953 /* All frames in this row get the same new height. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002954 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 {
2956 frame_new_height(frp, height, topfirst, wfh);
2957 if (frp->fr_height > height)
2958 {
2959 /* Could not fit the windows, make the whole row higher. */
2960 height = frp->fr_height;
2961 break;
2962 }
2963 }
2964 }
2965 while (frp != NULL);
2966 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002967 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 {
2969 /* Complicated case: Resize a column of frames. Resize the bottom
2970 * frame first, frames above that when needed. */
2971
2972 frp = topfrp->fr_child;
2973 if (wfh)
2974 /* Advance past frames with one window with 'wfh' set. */
2975 while (frame_fixed_height(frp))
2976 {
2977 frp = frp->fr_next;
2978 if (frp == NULL)
2979 return; /* no frame without 'wfh', give up */
2980 }
2981 if (!topfirst)
2982 {
2983 /* Find the bottom frame of this column */
2984 while (frp->fr_next != NULL)
2985 frp = frp->fr_next;
2986 if (wfh)
2987 /* Advance back for frames with one window with 'wfh' set. */
2988 while (frame_fixed_height(frp))
2989 frp = frp->fr_prev;
2990 }
2991
2992 extra_lines = height - topfrp->fr_height;
2993 if (extra_lines < 0)
2994 {
2995 /* reduce height of contained frames, bottom or top frame first */
2996 while (frp != NULL)
2997 {
2998 h = frame_minheight(frp, NULL);
2999 if (frp->fr_height + extra_lines < h)
3000 {
3001 extra_lines += frp->fr_height - h;
3002 frame_new_height(frp, h, topfirst, wfh);
3003 }
3004 else
3005 {
3006 frame_new_height(frp, frp->fr_height + extra_lines,
3007 topfirst, wfh);
3008 break;
3009 }
3010 if (topfirst)
3011 {
3012 do
3013 frp = frp->fr_next;
3014 while (wfh && frp != NULL && frame_fixed_height(frp));
3015 }
3016 else
3017 {
3018 do
3019 frp = frp->fr_prev;
3020 while (wfh && frp != NULL && frame_fixed_height(frp));
3021 }
3022 /* Increase "height" if we could not reduce enough frames. */
3023 if (frp == NULL)
3024 height -= extra_lines;
3025 }
3026 }
3027 else if (extra_lines > 0)
3028 {
3029 /* increase height of bottom or top frame */
3030 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
3031 }
3032 }
3033 topfrp->fr_height = height;
3034}
3035
3036/*
3037 * Return TRUE if height of frame "frp" should not be changed because of
3038 * the 'winfixheight' option.
3039 */
3040 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003041frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042{
3043 /* frame with one window: fixed height if 'winfixheight' set. */
3044 if (frp->fr_win != NULL)
3045 return frp->fr_win->w_p_wfh;
3046
3047 if (frp->fr_layout == FR_ROW)
3048 {
3049 /* The frame is fixed height if one of the frames in the row is fixed
3050 * height. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003051 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 if (frame_fixed_height(frp))
3053 return TRUE;
3054 return FALSE;
3055 }
3056
3057 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
3058 * frames in the row are fixed height. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003059 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 if (!frame_fixed_height(frp))
3061 return FALSE;
3062 return TRUE;
3063}
3064
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003066 * Return TRUE if width of frame "frp" should not be changed because of
3067 * the 'winfixwidth' option.
3068 */
3069 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003070frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003071{
3072 /* frame with one window: fixed width if 'winfixwidth' set. */
3073 if (frp->fr_win != NULL)
3074 return frp->fr_win->w_p_wfw;
3075
3076 if (frp->fr_layout == FR_COL)
3077 {
3078 /* The frame is fixed width if one of the frames in the row is fixed
3079 * width. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003080 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003081 if (frame_fixed_width(frp))
3082 return TRUE;
3083 return FALSE;
3084 }
3085
3086 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
3087 * frames in the row are fixed width. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003088 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003089 if (!frame_fixed_width(frp))
3090 return FALSE;
3091 return TRUE;
3092}
3093
3094/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 * Add a status line to windows at the bottom of "frp".
3096 * Note: Does not check if there is room!
3097 */
3098 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003099frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100{
3101 win_T *wp;
3102
3103 if (frp->fr_layout == FR_LEAF)
3104 {
3105 wp = frp->fr_win;
3106 if (wp->w_status_height == 0)
3107 {
3108 if (wp->w_height > 0) /* don't make it negative */
3109 --wp->w_height;
3110 wp->w_status_height = STATUS_HEIGHT;
3111 }
3112 }
3113 else if (frp->fr_layout == FR_ROW)
3114 {
3115 /* Handle all the frames in the row. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003116 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 frame_add_statusline(frp);
3118 }
3119 else /* frp->fr_layout == FR_COL */
3120 {
3121 /* Only need to handle the last frame in the column. */
3122 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
3123 ;
3124 frame_add_statusline(frp);
3125 }
3126}
3127
3128/*
3129 * Set width of a frame. Handles recursively going through contained frames.
3130 * May remove separator line for windows at the right side (for win_close()).
3131 */
3132 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003133frame_new_width(
3134 frame_T *topfrp,
3135 int width,
3136 int leftfirst, /* resize leftmost contained frame first */
3137 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003138 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139{
3140 frame_T *frp;
3141 int extra_cols;
3142 int w;
3143 win_T *wp;
3144
3145 if (topfrp->fr_layout == FR_LEAF)
3146 {
3147 /* Simple case: just one window. */
3148 wp = topfrp->fr_win;
3149 /* Find out if there are any windows right of this one. */
3150 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3151 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3152 break;
3153 if (frp->fr_parent == NULL)
3154 wp->w_vsep_width = 0;
3155 win_new_width(wp, width - wp->w_vsep_width);
3156 }
3157 else if (topfrp->fr_layout == FR_COL)
3158 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003159 do
3160 {
3161 /* All frames in this column get the same new width. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003162 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003163 {
3164 frame_new_width(frp, width, leftfirst, wfw);
3165 if (frp->fr_width > width)
3166 {
3167 /* Could not fit the windows, make whole column wider. */
3168 width = frp->fr_width;
3169 break;
3170 }
3171 }
3172 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 }
3174 else /* fr_layout == FR_ROW */
3175 {
3176 /* Complicated case: Resize a row of frames. Resize the rightmost
3177 * frame first, frames left of it when needed. */
3178
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003180 if (wfw)
3181 /* Advance past frames with one window with 'wfw' set. */
3182 while (frame_fixed_width(frp))
3183 {
3184 frp = frp->fr_next;
3185 if (frp == NULL)
3186 return; /* no frame without 'wfw', give up */
3187 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003189 {
3190 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 while (frp->fr_next != NULL)
3192 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003193 if (wfw)
3194 /* Advance back for frames with one window with 'wfw' set. */
3195 while (frame_fixed_width(frp))
3196 frp = frp->fr_prev;
3197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198
3199 extra_cols = width - topfrp->fr_width;
3200 if (extra_cols < 0)
3201 {
3202 /* reduce frame width, rightmost frame first */
3203 while (frp != NULL)
3204 {
3205 w = frame_minwidth(frp, NULL);
3206 if (frp->fr_width + extra_cols < w)
3207 {
3208 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003209 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 }
3211 else
3212 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003213 frame_new_width(frp, frp->fr_width + extra_cols,
3214 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 break;
3216 }
3217 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003218 {
3219 do
3220 frp = frp->fr_next;
3221 while (wfw && frp != NULL && frame_fixed_width(frp));
3222 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003224 {
3225 do
3226 frp = frp->fr_prev;
3227 while (wfw && frp != NULL && frame_fixed_width(frp));
3228 }
3229 /* Increase "width" if we could not reduce enough frames. */
3230 if (frp == NULL)
3231 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 }
3233 }
3234 else if (extra_cols > 0)
3235 {
3236 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003237 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 }
3239 }
3240 topfrp->fr_width = width;
3241}
3242
3243/*
3244 * Add the vertical separator to windows at the right side of "frp".
3245 * Note: Does not check if there is room!
3246 */
3247 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003248frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249{
3250 win_T *wp;
3251
3252 if (frp->fr_layout == FR_LEAF)
3253 {
3254 wp = frp->fr_win;
3255 if (wp->w_vsep_width == 0)
3256 {
3257 if (wp->w_width > 0) /* don't make it negative */
3258 --wp->w_width;
3259 wp->w_vsep_width = 1;
3260 }
3261 }
3262 else if (frp->fr_layout == FR_COL)
3263 {
3264 /* Handle all the frames in the column. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003265 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 frame_add_vsep(frp);
3267 }
3268 else /* frp->fr_layout == FR_ROW */
3269 {
3270 /* Only need to handle the last frame in the row. */
3271 frp = frp->fr_child;
3272 while (frp->fr_next != NULL)
3273 frp = frp->fr_next;
3274 frame_add_vsep(frp);
3275 }
3276}
3277
3278/*
3279 * Set frame width from the window it contains.
3280 */
3281 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003282frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283{
3284 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3285}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286
3287/*
3288 * Set frame height from the window it contains.
3289 */
3290 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003291frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292{
Bram Moolenaar415a6932017-12-05 20:31:07 +01003293 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294}
3295
3296/*
3297 * Compute the minimal height for frame "topfrp".
3298 * Uses the 'winminheight' option.
3299 * When "next_curwin" isn't NULL, use p_wh for this window.
3300 * When "next_curwin" is NOWIN, don't use at least one line for the current
3301 * window.
3302 */
3303 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003304frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305{
3306 frame_T *frp;
3307 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309
3310 if (topfrp->fr_win != NULL)
3311 {
3312 if (topfrp->fr_win == next_curwin)
3313 m = p_wh + topfrp->fr_win->w_status_height;
3314 else
3315 {
3316 /* window: minimal height of the window plus status line */
3317 m = p_wmh + topfrp->fr_win->w_status_height;
Bram Moolenaar415a6932017-12-05 20:31:07 +01003318 if (topfrp->fr_win == curwin && next_curwin == NULL)
3319 {
3320 /* Current window is minimal one line high and WinBar is
3321 * visible. */
3322 if (p_wmh == 0)
3323 ++m;
3324 m += WINBAR_HEIGHT(curwin);
3325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 }
3327 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 else if (topfrp->fr_layout == FR_ROW)
3329 {
3330 /* get the minimal height from each frame in this row */
3331 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003332 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 {
3334 n = frame_minheight(frp, next_curwin);
3335 if (n > m)
3336 m = n;
3337 }
3338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 else
3340 {
3341 /* Add up the minimal heights for all frames in this column. */
3342 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003343 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 m += frame_minheight(frp, next_curwin);
3345 }
3346
3347 return m;
3348}
3349
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350/*
3351 * Compute the minimal width for frame "topfrp".
3352 * When "next_curwin" isn't NULL, use p_wiw for this window.
3353 * When "next_curwin" is NOWIN, don't use at least one column for the current
3354 * window.
3355 */
3356 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003357frame_minwidth(
3358 frame_T *topfrp,
3359 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360{
3361 frame_T *frp;
3362 int m, n;
3363
3364 if (topfrp->fr_win != NULL)
3365 {
3366 if (topfrp->fr_win == next_curwin)
3367 m = p_wiw + topfrp->fr_win->w_vsep_width;
3368 else
3369 {
3370 /* window: minimal width of the window plus separator column */
3371 m = p_wmw + topfrp->fr_win->w_vsep_width;
3372 /* Current window is minimal one column wide */
3373 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3374 ++m;
3375 }
3376 }
3377 else if (topfrp->fr_layout == FR_COL)
3378 {
3379 /* get the minimal width from each frame in this column */
3380 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003381 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 {
3383 n = frame_minwidth(frp, next_curwin);
3384 if (n > m)
3385 m = n;
3386 }
3387 }
3388 else
3389 {
3390 /* Add up the minimal widths for all frames in this row. */
3391 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003392 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 m += frame_minwidth(frp, next_curwin);
3394 }
3395
3396 return m;
3397}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398
3399
3400/*
3401 * Try to close all windows except current one.
3402 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3403 * used and the buffer was modified.
3404 *
3405 * Used by ":bdel" and ":only".
3406 */
3407 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003408close_others(
3409 int message,
3410 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411{
3412 win_T *wp;
3413 win_T *nextwp;
3414 int r;
3415
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003416 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003418 if (message && !autocmd_busy)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003419 msg(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 return;
3421 }
3422
3423 /* Be very careful here: autocommands may change the window layout. */
3424 for (wp = firstwin; win_valid(wp); wp = nextwp)
3425 {
3426 nextwp = wp->w_next;
3427 if (wp != curwin) /* don't close current window */
3428 {
3429
3430 /* Check if it's allowed to abandon this window */
3431 r = can_abandon(wp->w_buffer, forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 if (!win_valid(wp)) /* autocommands messed wp up */
3433 {
3434 nextwp = firstwin;
3435 continue;
3436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 if (!r)
3438 {
3439#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3440 if (message && (p_confirm || cmdmod.confirm) && p_write)
3441 {
3442 dialog_changed(wp->w_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 if (!win_valid(wp)) /* autocommands messed wp up */
3444 {
3445 nextwp = firstwin;
3446 continue;
3447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 }
3449 if (bufIsChanged(wp->w_buffer))
3450#endif
3451 continue;
3452 }
Bram Moolenaareb44a682017-08-03 22:44:55 +02003453 win_close(wp, !buf_hide(wp->w_buffer)
3454 && !bufIsChanged(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 }
3456 }
3457
Bram Moolenaar459ca562016-11-10 18:16:33 +01003458 if (message && !ONE_WINDOW)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003459 emsg(_("E445: Other window contains changes"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460}
3461
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003463 * Init the current window "curwin".
3464 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 */
3466 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003467curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003469 win_init_empty(curwin);
3470}
3471
3472 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003473win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003474{
3475 redraw_win_later(wp, NOT_VALID);
3476 wp->w_lines_valid = 0;
3477 wp->w_cursor.lnum = 1;
3478 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003479 wp->w_cursor.coladd = 0;
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003480 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3481 wp->w_pcmark.col = 0;
3482 wp->w_prev_pcmark.lnum = 0;
3483 wp->w_prev_pcmark.col = 0;
3484 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003486 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003488 wp->w_botline = 2;
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003489#if defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
Bram Moolenaara971b822011-09-14 14:43:25 +02003490 wp->w_s = &wp->w_buffer->b_s;
3491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492}
3493
3494/*
3495 * Allocate the first window and put an empty buffer in it.
3496 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003497 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003499 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003500win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003502 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003503 return FAIL;
3504
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003505 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003506 if (first_tabpage == NULL)
3507 return FAIL;
3508 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003509 curtab = first_tabpage;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003510
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003511 return OK;
3512}
3513
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003514/*
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003515 * Allocate and init a window that is not a regular window.
3516 * This can only be done after the first window is fully initialized, thus it
3517 * can't be in win_alloc_first().
3518 */
3519 win_T *
3520win_alloc_popup_win(void)
3521{
3522 win_T *wp;
3523
3524 wp = win_alloc(NULL, TRUE);
3525 if (wp != NULL)
3526 {
3527 // We need to initialize options with something, using the current
3528 // window makes most sense.
3529 win_init_some(wp, curwin);
3530
3531 RESET_BINDING(wp);
3532 new_frame(wp);
3533 }
3534 return wp;
3535}
3536
3537/*
3538 * Initialize window "wp" to display buffer "buf".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003539 */
3540 void
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003541win_init_popup_win(win_T *wp, buf_T *buf)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003542{
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003543 wp->w_buffer = buf;
3544 ++buf->b_nwindows;
3545 win_init_empty(wp); // set cursor and topline to safe values
3546
3547 // Make sure w_localdir and globaldir are NULL to avoid a chdir() in
3548 // win_enter_ext().
3549 VIM_CLEAR(wp->w_localdir);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003550}
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003551
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003552/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003553 * Allocate the first window or the first window in a new tab page.
3554 * When "oldwin" is NULL create an empty buffer for it.
Bram Moolenaar4033c552017-09-16 20:54:51 +02003555 * When "oldwin" is not NULL copy info from it to the new window.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003556 * Return FAIL when something goes wrong (out of memory).
3557 */
3558 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003559win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003560{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003561 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003562 if (oldwin == NULL)
3563 {
3564 /* Very first window, need to create an empty buffer for it and
3565 * initialize from scratch. */
3566 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3567 if (curwin == NULL || curbuf == NULL)
3568 return FAIL;
3569 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003570#ifdef FEAT_SYN_HL
3571 curwin->w_s = &(curbuf->b_s);
3572#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003573 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003574 curwin->w_alist = &global_alist;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003575 curwin_init(); /* init current window */
3576 }
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003577 else
3578 {
3579 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003580 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003581
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003582 /* We don't want cursor- and scroll-binding in the first window. */
3583 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003586 new_frame(curwin);
3587 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003588 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003589 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 topframe->fr_height = Rows - p_ch;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003592
3593 return OK;
3594}
3595
3596/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003597 * Create a frame for window "wp".
3598 */
3599 static void
3600new_frame(win_T *wp)
3601{
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02003602 frame_T *frp = (frame_T *)alloc_clear(sizeof(frame_T));
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003603
3604 wp->w_frame = frp;
3605 if (frp != NULL)
3606 {
3607 frp->fr_layout = FR_LEAF;
3608 frp->fr_win = wp;
3609 }
3610}
3611
3612/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003613 * Initialize the window and frame size to the maximum.
3614 */
3615 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003616win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003617{
3618 firstwin->w_height = ROWS_AVAIL;
3619 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003620 firstwin->w_width = Columns;
3621 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622}
3623
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003624/*
3625 * Allocate a new tabpage_T and init the values.
3626 * Returns NULL when out of memory.
3627 */
3628 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003629alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003630{
3631 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003632# ifdef FEAT_GUI
3633 int i;
3634# endif
3635
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003636
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02003637 tp = (tabpage_T *)alloc_clear(sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003638 if (tp == NULL)
3639 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003640
Bram Moolenaar429fa852013-04-15 12:27:36 +02003641# ifdef FEAT_EVAL
3642 /* init t: variables */
3643 tp->tp_vars = dict_alloc();
3644 if (tp->tp_vars == NULL)
3645 {
3646 vim_free(tp);
3647 return NULL;
3648 }
3649 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3650# endif
3651
3652# ifdef FEAT_GUI
3653 for (i = 0; i < 3; i++)
3654 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003655# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003656# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003657 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003658# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003659 tp->tp_ch_used = p_ch;
3660
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003661 return tp;
3662}
3663
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003664 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003665free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003666{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003667 int idx;
3668
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003669# ifdef FEAT_DIFF
3670 diff_clear(tp);
3671# endif
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003672# ifdef FEAT_TEXT_PROP
Bram Moolenaarec583842019-05-26 14:11:23 +02003673 {
3674 win_T *wp;
3675
3676 for (;;)
3677 {
3678 wp = tp == curtab ? first_tab_popupwin : tp->tp_first_popupwin;
3679 if (wp == NULL)
3680 break;
3681 popup_close_tabpage(tp, wp->w_id);
3682 }
3683 }
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003684#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003685 for (idx = 0; idx < SNAP_COUNT; ++idx)
3686 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003687#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003688 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3689 hash_init(&tp->tp_vars->dv_hashtab);
3690 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003691#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003692
Bram Moolenaar00aa0692019-04-27 20:37:57 +02003693 vim_free(tp->tp_localdir);
3694
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003695#ifdef FEAT_PYTHON
3696 python_tabpage_free(tp);
3697#endif
3698
3699#ifdef FEAT_PYTHON3
3700 python3_tabpage_free(tp);
3701#endif
3702
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003703 vim_free(tp);
3704}
3705
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003706/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003707 * Create a new Tab page with one window.
3708 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003709 * When "after" is 0 put it just after the current Tab page.
3710 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003711 * Return FAIL or OK.
3712 */
3713 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003714win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003715{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003716 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003717 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003718 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003719
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003720 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003721 if (newtp == NULL)
3722 return FAIL;
3723
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003724 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003725 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003726 {
3727 vim_free(newtp);
3728 return FAIL;
3729 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003730 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003731
Bram Moolenaar00aa0692019-04-27 20:37:57 +02003732 newtp->tp_localdir = (tp->tp_localdir == NULL)
3733 ? NULL : vim_strsave(tp->tp_localdir);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003734 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003735 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003736 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003737 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003738 if (after == 1)
3739 {
3740 /* New tab page becomes the first one. */
3741 newtp->tp_next = first_tabpage;
3742 first_tabpage = newtp;
3743 }
3744 else
3745 {
3746 if (after > 0)
3747 {
3748 /* Put new tab page before tab page "after". */
3749 n = 2;
3750 for (tp = first_tabpage; tp->tp_next != NULL
3751 && n < after; tp = tp->tp_next)
3752 ++n;
3753 }
3754 newtp->tp_next = tp->tp_next;
3755 tp->tp_next = newtp;
3756 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003757 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003758 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003759 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003760
3761 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003762 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003763
3764#if defined(FEAT_GUI)
3765 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3766 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003767 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003768#endif
Bram Moolenaar6d41c782018-06-06 09:11:12 +02003769#ifdef FEAT_JOB_CHANNEL
3770 entering_window(curwin);
3771#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003772
Bram Moolenaarbf3250a2019-01-06 17:25:29 +01003773 redraw_all_later(NOT_VALID);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003774 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003775 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003776 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003777 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003778 return OK;
3779 }
3780
3781 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003782 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003783 return FAIL;
3784}
3785
3786/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003787 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3788 * like with ":split".
3789 * Returns OK if a new tab page was created, FAIL otherwise.
3790 */
3791 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003792may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003793{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003794 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003795
Bram Moolenaard326ce82007-03-11 14:48:29 +00003796 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003797 {
3798 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003799 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003800 return win_new_tabpage(n);
3801 }
3802 return FAIL;
3803}
3804
3805/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003806 * Create up to "maxcount" tabpages with empty windows.
3807 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003808 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003809 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003810make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003811{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003812 int count = maxcount;
3813 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003814
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003815 /* Limit to 'tabpagemax' tabs. */
3816 if (count > p_tpm)
3817 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003818
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003819 /*
3820 * Don't execute autocommands while creating the tab pages. Must do that
3821 * when putting the buffers in the windows.
3822 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003823 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003824
3825 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003826 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003827 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003828
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003829 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003830
3831 /* return actual number of tab pages */
3832 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003833}
3834
3835/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003836 * Return TRUE when "tpc" points to a valid tab page.
3837 */
3838 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003839valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003840{
3841 tabpage_T *tp;
3842
Bram Moolenaar29323592016-07-24 22:04:11 +02003843 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003844 if (tp == tpc)
3845 return TRUE;
3846 return FALSE;
3847}
3848
3849/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003850 * Return TRUE when "tpc" points to a valid tab page and at least one window is
3851 * valid.
3852 */
3853 int
3854valid_tabpage_win(tabpage_T *tpc)
3855{
3856 tabpage_T *tp;
3857 win_T *wp;
3858
3859 FOR_ALL_TABPAGES(tp)
3860 {
3861 if (tp == tpc)
3862 {
3863 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
3864 {
3865 if (win_valid_any_tab(wp))
3866 return TRUE;
3867 }
3868 return FALSE;
3869 }
3870 }
3871 /* shouldn't happen */
3872 return FALSE;
3873}
3874
3875/*
3876 * Close tabpage "tab", assuming it has no windows in it.
3877 * There must be another tabpage or this will crash.
3878 */
3879 void
3880close_tabpage(tabpage_T *tab)
3881{
3882 tabpage_T *ptp;
3883
3884 if (tab == first_tabpage)
3885 {
3886 first_tabpage = tab->tp_next;
3887 ptp = first_tabpage;
3888 }
3889 else
3890 {
3891 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tab;
3892 ptp = ptp->tp_next)
3893 ;
Bram Moolenaara37ffaa2017-03-21 21:58:00 +01003894 assert(ptp != NULL);
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003895 ptp->tp_next = tab->tp_next;
3896 }
3897
3898 goto_tabpage_tp(ptp, FALSE, FALSE);
3899 free_tabpage(tab);
3900}
3901
3902/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003903 * Find tab page "n" (first one is 1). Returns NULL when not found.
3904 */
3905 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003906find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003907{
3908 tabpage_T *tp;
3909 int i = 1;
3910
Bram Moolenaar00aa0692019-04-27 20:37:57 +02003911 if (n == 0)
3912 return curtab;
3913
Bram Moolenaarf740b292006-02-16 22:11:02 +00003914 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3915 ++i;
3916 return tp;
3917}
3918
3919/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003920 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003921 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003922 */
3923 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003924tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003925{
3926 int i = 1;
3927 tabpage_T *tp;
3928
3929 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3930 ++i;
3931 return i;
3932}
3933
3934/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003935 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003936 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003937 * FAIL.
3938 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003939 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003940 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003941leave_tabpage(
3942 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003943 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003944 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003945{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003946 tabpage_T *tp = curtab;
3947
Bram Moolenaar6d41c782018-06-06 09:11:12 +02003948#ifdef FEAT_JOB_CHANNEL
3949 leaving_window(curwin);
3950#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003951 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003952 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003953 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003954 if (new_curbuf != curbuf)
3955 {
3956 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3957 if (curtab != tp)
3958 return FAIL;
3959 }
3960 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3961 if (curtab != tp)
3962 return FAIL;
3963 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003964 if (curtab != tp)
3965 return FAIL;
3966 }
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003967#if defined(FEAT_GUI)
3968 /* Remove the scrollbars. They may be added back later. */
3969 if (gui.in_use)
3970 gui_remove_scrollbars();
3971#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003972 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003973 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003974 tp->tp_firstwin = firstwin;
3975 tp->tp_lastwin = lastwin;
Bram Moolenaarec583842019-05-26 14:11:23 +02003976#ifdef FEAT_TEXT_PROP
3977 tp->tp_first_popupwin = first_tab_popupwin;
3978 first_tab_popupwin = NULL;
3979#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003980 tp->tp_old_Rows = Rows;
3981 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003982 firstwin = NULL;
3983 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003984 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003985}
3986
3987/*
3988 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003989 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003990 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3991 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003992 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003993 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003994enter_tabpage(
3995 tabpage_T *tp,
3996 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003997 int trigger_enter_autocmds,
3998 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003999{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004000 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00004001 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004002
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004003 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004004 firstwin = tp->tp_firstwin;
4005 lastwin = tp->tp_lastwin;
4006 topframe = tp->tp_topframe;
Bram Moolenaarec583842019-05-26 14:11:23 +02004007#ifdef FEAT_TEXT_PROP
4008 first_tab_popupwin = tp->tp_first_popupwin;
4009#endif
Bram Moolenaar773560b2006-05-06 21:38:18 +00004010
4011 /* We would like doing the TabEnter event first, but we don't have a
4012 * valid current window yet, which may break some commands.
4013 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaarc917da42016-07-19 22:31:36 +02004014 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE,
Bram Moolenaard6949742013-06-16 14:18:28 +02004015 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00004016 prevwin = next_prevwin;
4017
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004018 last_status(FALSE); /* status line may appear or disappear */
4019 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004020#ifdef FEAT_DIFF
4021 diff_need_scrollbind = TRUE;
4022#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004023
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004024 /* The tabpage line may have appeared or disappeared, may need to resize
4025 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004026 * frame sizes too. Use the stored value of p_ch, so that it can be
4027 * different for each tab page. */
Bram Moolenaar0fef0ae2019-05-01 20:30:40 +02004028 if (p_ch != curtab->tp_ch_used)
4029 clear_cmdline = TRUE;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004030 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004031 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
4032#ifdef FEAT_GUI_TABLINE
4033 && !gui_use_tabline()
4034#endif
4035 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004036 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004037 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004038 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004039
4040#if defined(FEAT_GUI)
4041 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
4042 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004043 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004044#endif
4045
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01004046 /* Apply autocommands after updating the display, when 'rows' and
4047 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004048 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02004049 {
4050 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
4051 if (old_curbuf != curbuf)
4052 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4053 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01004054
Bram Moolenaarbf3250a2019-01-06 17:25:29 +01004055 redraw_all_later(NOT_VALID);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004056}
4057
4058/*
4059 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004060 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004061 */
4062 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004063goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004064{
Bram Moolenaar1f3601e2019-04-26 20:33:00 +02004065 tabpage_T *tp = NULL; // shut up compiler
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004066 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004067 int i;
4068
Bram Moolenaard68071d2006-05-02 22:08:30 +00004069 if (text_locked())
4070 {
4071 /* Not allowed when editing the command line. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02004072 text_locked_msg();
Bram Moolenaard68071d2006-05-02 22:08:30 +00004073 return;
4074 }
4075
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004076 /* If there is only one it can't work. */
4077 if (first_tabpage->tp_next == NULL)
4078 {
4079 if (n > 1)
4080 beep_flush();
4081 return;
4082 }
4083
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004084 if (n == 0)
4085 {
4086 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004087 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004088 tp = first_tabpage;
4089 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004090 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004091 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004092 else if (n < 0)
4093 {
4094 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
4095 * this N times. */
4096 ttp = curtab;
4097 for (i = n; i < 0; ++i)
4098 {
4099 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
4100 tp = tp->tp_next)
4101 ;
4102 ttp = tp;
4103 }
4104 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004105 else if (n == 9999)
4106 {
4107 /* Go to last tab page. */
4108 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
4109 ;
4110 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004111 else
4112 {
4113 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004114 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00004115 if (tp == NULL)
4116 {
4117 beep_flush();
4118 return;
4119 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004120 }
4121
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004122 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004123
4124#ifdef FEAT_GUI_TABLINE
4125 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00004126 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004127#endif
4128}
4129
4130/*
4131 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004132 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
4133 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004134 * Note: doesn't update the GUI tab.
4135 */
4136 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004137goto_tabpage_tp(
4138 tabpage_T *tp,
4139 int trigger_enter_autocmds,
4140 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004141{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02004142 /* Don't repeat a message in another tab page. */
4143 set_keep_msg(NULL, 0);
4144
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004145 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
4146 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004147 {
4148 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004149 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
4150 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004151 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004152 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
4153 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004154 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004155}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156
4157/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004158 * Enter window "wp" in tab page "tp".
4159 * Also updates the GUI tab.
4160 */
4161 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004162goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004163{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004164 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004165 if (curtab == tp && win_valid(wp))
4166 {
4167 win_enter(wp, TRUE);
4168# ifdef FEAT_GUI_TABLINE
4169 if (gui_use_tabline())
4170 gui_mch_set_curtab(tabpage_index(curtab));
4171# endif
4172 }
4173}
4174
4175/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004176 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004177 */
4178 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004179tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004180{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004181 int n = 1;
4182 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004183
4184 if (first_tabpage->tp_next == NULL)
4185 return;
4186
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004187 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
4188 ++n;
4189
4190 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
4191 && tp->tp_next == curtab))
4192 return;
4193
4194 tp_dst = tp;
4195
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004196 /* Remove the current tab page from the list of tab pages. */
4197 if (curtab == first_tabpage)
4198 first_tabpage = curtab->tp_next;
4199 else
4200 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004201 FOR_ALL_TABPAGES(tp)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004202 if (tp->tp_next == curtab)
4203 break;
4204 if (tp == NULL) /* "cannot happen" */
4205 return;
4206 tp->tp_next = curtab->tp_next;
4207 }
4208
4209 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004210 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004211 {
4212 curtab->tp_next = first_tabpage;
4213 first_tabpage = curtab;
4214 }
4215 else
4216 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004217 curtab->tp_next = tp_dst->tp_next;
4218 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004219 }
4220
4221 /* Need to redraw the tabline. Tab page contents doesn't change. */
4222 redraw_tabline = TRUE;
4223}
4224
4225
4226/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 * Go to another window.
4228 * When jumping to another buffer, stop Visual mode. Do this before
4229 * changing windows so we can yank the selection into the '*' register.
4230 * When jumping to another window on the same buffer, adjust its cursor
4231 * position to keep the same Visual area.
4232 */
4233 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004234win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004236#ifdef FEAT_CONCEAL
4237 win_T *owp = curwin;
4238#endif
4239
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004240 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 {
4242 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004243 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 return;
4245 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004246 if (curbuf_locked())
4247 return;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004248
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 if (wp->w_buffer != curbuf)
4250 reset_VIsual_and_resel();
4251 else if (VIsual_active)
4252 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253
4254#ifdef FEAT_GUI
4255 need_mouse_correct = TRUE;
4256#endif
4257 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004258
4259#ifdef FEAT_CONCEAL
Bram Moolenaar535d5b62019-01-11 20:45:36 +01004260 // Conceal cursor line in previous window, unconceal in current window.
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004261 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01004262 redrawWinline(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004263 if (curwin->w_p_cole > 0 && !msg_scrolled)
4264 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004265#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266}
4267
4268#if defined(FEAT_PERL) || defined(PROTO)
4269/*
4270 * Find window number "winnr" (counting top to bottom).
4271 */
4272 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004273win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274{
4275 win_T *wp;
4276
Bram Moolenaar29323592016-07-24 22:04:11 +02004277 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 if (--winnr == 0)
4279 break;
4280 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281}
4282#endif
4283
Bram Moolenaar4033c552017-09-16 20:54:51 +02004284#if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004285/*
4286 * Find the tabpage for window "win".
4287 */
4288 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004289win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004290{
4291 win_T *wp;
4292 tabpage_T *tp;
4293
Bram Moolenaar29323592016-07-24 22:04:11 +02004294 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004295 if (wp == win)
4296 return tp;
4297 return NULL;
4298}
4299#endif
4300
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301/*
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004302 * Get the above or below neighbor window of the specified window.
4303 * up - TRUE for the above neighbor
4304 * count - nth neighbor window
4305 * Returns the specified window if the neighbor is not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 */
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004307 win_T *
4308win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309{
4310 frame_T *fr;
4311 frame_T *nfr;
4312 frame_T *foundfr;
4313
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004314 foundfr = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 while (count--)
4316 {
4317 /*
4318 * First go upwards in the tree of frames until we find a upwards or
4319 * downwards neighbor.
4320 */
4321 fr = foundfr;
4322 for (;;)
4323 {
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004324 if (fr == tp->tp_topframe)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 goto end;
4326 if (up)
4327 nfr = fr->fr_prev;
4328 else
4329 nfr = fr->fr_next;
4330 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4331 break;
4332 fr = fr->fr_parent;
4333 }
4334
4335 /*
4336 * Now go downwards to find the bottom or top frame in it.
4337 */
4338 for (;;)
4339 {
4340 if (nfr->fr_layout == FR_LEAF)
4341 {
4342 foundfr = nfr;
4343 break;
4344 }
4345 fr = nfr->fr_child;
4346 if (nfr->fr_layout == FR_ROW)
4347 {
4348 /* Find the frame at the cursor row. */
4349 while (fr->fr_next != NULL
4350 && frame2win(fr)->w_wincol + fr->fr_width
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004351 <= wp->w_wincol + wp->w_wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 fr = fr->fr_next;
4353 }
4354 if (nfr->fr_layout == FR_COL && up)
4355 while (fr->fr_next != NULL)
4356 fr = fr->fr_next;
4357 nfr = fr;
4358 }
4359 }
4360end:
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004361 return foundfr != NULL ? foundfr->fr_win : NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362}
4363
4364/*
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004365 * Move to window above or below "count" times.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 */
4367 static void
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004368win_goto_ver(
4369 int up, // TRUE to go to win above
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004370 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371{
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004372 win_T *win;
4373
4374 win = win_vert_neighbor(curtab, curwin, up, count);
4375 if (win != NULL)
4376 win_goto(win);
4377}
4378
4379/*
4380 * Get the left or right neighbor window of the specified window.
4381 * left - TRUE for the left neighbor
4382 * count - nth neighbor window
4383 * Returns the specified window if the neighbor is not found.
4384 */
4385 win_T *
Bram Moolenaarb9cdb372019-04-17 18:24:35 +02004386win_horz_neighbor(tabpage_T *tp, win_T *wp, int left, long count)
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004387{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 frame_T *fr;
4389 frame_T *nfr;
4390 frame_T *foundfr;
4391
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004392 foundfr = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 while (count--)
4394 {
4395 /*
4396 * First go upwards in the tree of frames until we find a left or
4397 * right neighbor.
4398 */
4399 fr = foundfr;
4400 for (;;)
4401 {
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004402 if (fr == tp->tp_topframe)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 goto end;
4404 if (left)
4405 nfr = fr->fr_prev;
4406 else
4407 nfr = fr->fr_next;
4408 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4409 break;
4410 fr = fr->fr_parent;
4411 }
4412
4413 /*
4414 * Now go downwards to find the leftmost or rightmost frame in it.
4415 */
4416 for (;;)
4417 {
4418 if (nfr->fr_layout == FR_LEAF)
4419 {
4420 foundfr = nfr;
4421 break;
4422 }
4423 fr = nfr->fr_child;
4424 if (nfr->fr_layout == FR_COL)
4425 {
4426 /* Find the frame at the cursor row. */
4427 while (fr->fr_next != NULL
4428 && frame2win(fr)->w_winrow + fr->fr_height
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004429 <= wp->w_winrow + wp->w_wrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 fr = fr->fr_next;
4431 }
4432 if (nfr->fr_layout == FR_ROW && left)
4433 while (fr->fr_next != NULL)
4434 fr = fr->fr_next;
4435 nfr = fr;
4436 }
4437 }
4438end:
Bram Moolenaar46ad2882019-04-08 20:01:47 +02004439 return foundfr != NULL ? foundfr->fr_win : NULL;
4440}
4441
4442/*
4443 * Move to left or right window.
4444 */
4445 static void
4446win_goto_hor(
4447 int left, // TRUE to go to left win
4448 long count)
4449{
4450 win_T *win;
4451
4452 win = win_horz_neighbor(curtab, curwin, left, count);
4453 if (win != NULL)
4454 win_goto(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456
4457/*
4458 * Make window "wp" the current window.
4459 */
4460 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004461win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462{
Bram Moolenaarc917da42016-07-19 22:31:36 +02004463 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464}
4465
4466/*
4467 * Make window wp the current window.
4468 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4469 * been closed and isn't valid.
4470 */
4471 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004472win_enter_ext(
4473 win_T *wp,
4474 int undo_sync,
4475 int curwin_invalid,
Bram Moolenaar6f470022018-04-10 18:47:20 +02004476 int trigger_new_autocmds,
4477 int trigger_enter_autocmds,
4478 int trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 int other_buffer = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481
4482 if (wp == curwin && !curwin_invalid) /* nothing to do */
4483 return;
4484
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004485#ifdef FEAT_JOB_CHANNEL
4486 if (!curwin_invalid)
4487 leaving_window(curwin);
4488#endif
4489
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004490 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 {
4492 /*
4493 * Be careful: If autocommands delete the window, return now.
4494 */
4495 if (wp->w_buffer != curbuf)
4496 {
4497 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4498 other_buffer = TRUE;
4499 if (!win_valid(wp))
4500 return;
4501 }
4502 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4503 if (!win_valid(wp))
4504 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004505#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 /* autocmds may abort script processing */
4507 if (aborting())
4508 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004510 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511
4512 /* sync undo before leaving the current buffer */
4513 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004514 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004515
4516 /* Might need to scroll the old window before switching, e.g., when the
4517 * cursor was moved. */
4518 update_topline();
4519
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 /* may have to copy the buffer options when 'cpo' contains 'S' */
4521 if (wp->w_buffer != curbuf)
4522 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4523 if (!curwin_invalid)
4524 {
4525 prevwin = curwin; /* remember for CTRL-W p */
4526 curwin->w_redr_status = TRUE;
4527 }
4528 curwin = wp;
4529 curbuf = wp->w_buffer;
4530 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 if (!virtual_active())
4532 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 changed_line_abv_curs(); /* assume cursor position needs updating */
4534
Bram Moolenaar00aa0692019-04-27 20:37:57 +02004535 if (curwin->w_localdir != NULL || curtab->tp_localdir != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 {
Bram Moolenaar00aa0692019-04-27 20:37:57 +02004537 char_u *dirname;
4538
4539 // Window or tab has a local directory: Save current directory as
4540 // global directory (unless that was done already) and change to the
4541 // local directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 if (globaldir == NULL)
4543 {
4544 char_u cwd[MAXPATHL];
4545
4546 if (mch_dirname(cwd, MAXPATHL) == OK)
4547 globaldir = vim_strsave(cwd);
4548 }
Bram Moolenaar00aa0692019-04-27 20:37:57 +02004549 if (curwin->w_localdir != NULL)
4550 dirname = curwin->w_localdir;
4551 else
4552 dirname = curtab->tp_localdir;
4553
4554 if (mch_chdir((char *)dirname) == 0)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004555 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 }
4557 else if (globaldir != NULL)
4558 {
4559 /* Window doesn't have a local directory and we are not in the global
4560 * directory: Change to the global directory. */
Bram Moolenaar42335f52018-09-13 15:33:43 +02004561 vim_ignored = mch_chdir((char *)globaldir);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004562 VIM_CLEAR(globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 shorten_fnames(TRUE);
4564 }
4565
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004566#ifdef FEAT_JOB_CHANNEL
4567 entering_window(curwin);
4568#endif
Bram Moolenaarc917da42016-07-19 22:31:36 +02004569 if (trigger_new_autocmds)
4570 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004571 if (trigger_enter_autocmds)
4572 {
4573 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4574 if (other_buffer)
4575 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577
4578#ifdef FEAT_TITLE
4579 maketitle();
4580#endif
4581 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004582 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 if (restart_edit)
4584 redraw_later(VALID); /* causes status line redraw */
4585
4586 /* set window height to desired minimal value */
4587 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4588 win_setheight((int)p_wh);
4589 else if (curwin->w_height == 0)
4590 win_setheight(1);
4591
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004593 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595
4596#ifdef FEAT_MOUSE
4597 setmouse(); /* in case jumped to/from help buffer */
4598#endif
4599
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004600 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004601 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602}
4603
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004606 * Jump to the first open window that contains buffer "buf", if one exists.
4607 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 */
4609 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004610buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004612 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004614 if (curwin->w_buffer == buf)
4615 wp = curwin;
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004616 else
Bram Moolenaar29323592016-07-24 22:04:11 +02004617 FOR_ALL_WINDOWS(wp)
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004618 if (wp->w_buffer == buf)
4619 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 if (wp != NULL)
4621 win_enter(wp, FALSE);
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004622 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004624
4625/*
4626 * Jump to the first open window in any tab page that contains buffer "buf",
4627 * if one exists.
4628 * Returns a pointer to the window found, otherwise NULL.
4629 */
4630 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004631buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004632{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004633 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004634 tabpage_T *tp;
4635
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004636 if (wp != NULL)
4637 return wp;
4638
Bram Moolenaar29323592016-07-24 22:04:11 +02004639 FOR_ALL_TABPAGES(tp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004640 if (tp != curtab)
4641 {
4642 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4643 if (wp->w_buffer == buf)
4644 break;
4645 if (wp != NULL)
4646 {
4647 goto_tabpage_win(tp, wp);
4648 if (curwin != wp)
4649 wp = NULL; /* something went wrong */
4650 break;
4651 }
4652 }
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004653 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004654}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004656static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004657
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004659 * Allocate a window structure and link it in the window list when "hidden" is
4660 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004663win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004665 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666
4667 /*
4668 * allocate window structure and linesizes arrays
4669 */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004670 new_wp = (win_T *)alloc_clear(sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004671 if (new_wp == NULL)
4672 return NULL;
4673
4674 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004676 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004677 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 }
4679
Bram Moolenaar86edef62016-03-13 18:07:30 +01004680 new_wp->w_id = ++last_win_id;
4681
Bram Moolenaar429fa852013-04-15 12:27:36 +02004682#ifdef FEAT_EVAL
4683 /* init w: variables */
4684 new_wp->w_vars = dict_alloc();
4685 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004687 win_free_lsize(new_wp);
4688 vim_free(new_wp);
4689 return NULL;
4690 }
4691 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004692#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004693
Bram Moolenaar429fa852013-04-15 12:27:36 +02004694 /* Don't execute autocommands while the window is not properly
4695 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4696 * event. */
4697 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004698
Bram Moolenaar429fa852013-04-15 12:27:36 +02004699 /*
4700 * link the window in the window list
4701 */
Bram Moolenaar429fa852013-04-15 12:27:36 +02004702 if (!hidden)
4703 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004704 new_wp->w_wincol = 0;
4705 new_wp->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706
Bram Moolenaar429fa852013-04-15 12:27:36 +02004707 /* position the display and the cursor at the top of the file. */
4708 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004710 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004712 new_wp->w_botline = 2;
4713 new_wp->w_cursor.lnum = 1;
Bram Moolenaar429fa852013-04-15 12:27:36 +02004714 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715
Bram Moolenaar375e3392019-01-31 18:26:10 +01004716 // use global option value for global-local options
4717 new_wp->w_p_so = -1;
4718 new_wp->w_p_siso = -1;
4719
Bram Moolenaar429fa852013-04-15 12:27:36 +02004720 /* We won't calculate w_fraction until resizing the window */
4721 new_wp->w_fraction = 0;
4722 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723
4724#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004725 if (gui.in_use)
4726 {
4727 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4728 SBAR_LEFT, new_wp);
4729 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4730 SBAR_RIGHT, new_wp);
4731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732#endif
4733#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004734 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004736 unblock_autocmds();
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004737#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004738 new_wp->w_match_head = NULL;
4739 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004740#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004741 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742}
4743
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004745 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 */
4747 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004748win_free(
4749 win_T *wp,
4750 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751{
4752 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004753 buf_T *buf;
4754 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004756#ifdef FEAT_FOLDING
4757 clearFolding(wp);
4758#endif
4759
4760 /* reduce the reference count to the argument list. */
4761 alist_unlink(wp->w_alist);
4762
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004763 /* Don't execute autocommands while the window is halfway being deleted.
4764 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004765 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004766
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004767#ifdef FEAT_LUA
4768 lua_window_free(wp);
4769#endif
4770
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004771#ifdef FEAT_MZSCHEME
4772 mzscheme_window_free(wp);
4773#endif
4774
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775#ifdef FEAT_PERL
4776 perl_win_free(wp);
4777#endif
4778
4779#ifdef FEAT_PYTHON
4780 python_window_free(wp);
4781#endif
4782
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004783#ifdef FEAT_PYTHON3
4784 python3_window_free(wp);
4785#endif
4786
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787#ifdef FEAT_TCL
4788 tcl_window_free(wp);
4789#endif
4790
4791#ifdef FEAT_RUBY
4792 ruby_window_free(wp);
4793#endif
4794
4795 clear_winopt(&wp->w_onebuf_opt);
4796 clear_winopt(&wp->w_allbuf_opt);
4797
4798#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004799 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4800 hash_init(&wp->w_vars->dv_hashtab);
4801 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802#endif
4803
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004804 {
4805 tabpage_T *ttp;
4806
4807 if (prevwin == wp)
4808 prevwin = NULL;
Bram Moolenaar29323592016-07-24 22:04:11 +02004809 FOR_ALL_TABPAGES(ttp)
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004810 if (ttp->tp_prevwin == wp)
4811 ttp->tp_prevwin = NULL;
4812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 win_free_lsize(wp);
4814
4815 for (i = 0; i < wp->w_tagstacklen; ++i)
4816 vim_free(wp->w_tagstack[i].tagname);
4817
4818 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004819
Bram Moolenaarff18df02013-07-24 17:51:57 +02004820 /* Remove the window from the b_wininfo lists, it may happen that the
4821 * freed memory is re-used for another window. */
Bram Moolenaar29323592016-07-24 22:04:11 +02004822 FOR_ALL_BUFFERS(buf)
Bram Moolenaarff18df02013-07-24 17:51:57 +02004823 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4824 if (wip->wi_win == wp)
4825 wip->wi_win = NULL;
4826
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004828 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004830
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831#ifdef FEAT_JUMPLIST
4832 free_jumplist(wp);
4833#endif
4834
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004835#ifdef FEAT_QUICKFIX
4836 qf_free_all(wp);
4837#endif
4838
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839#ifdef FEAT_GUI
4840 if (gui.in_use)
4841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4843 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4844 }
4845#endif /* FEAT_GUI */
4846
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02004847#ifdef FEAT_MENU
4848 remove_winbar(wp);
4849#endif
4850
Bram Moolenaar860cae12010-06-05 23:22:07 +02004851#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004852 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004853#endif
4854
Bram Moolenaar4d784b22019-05-25 19:51:39 +02004855 if (win_valid_any_tab(wp))
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004856 win_remove(wp, tp);
Bram Moolenaar3be85852014-06-12 14:01:31 +02004857 if (autocmd_busy)
4858 {
4859 wp->w_next = au_pending_free_win;
4860 au_pending_free_win = wp;
4861 }
4862 else
4863 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004864
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004865 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866}
4867
4868/*
Bram Moolenaar4d784b22019-05-25 19:51:39 +02004869 * Return TRUE if "wp" is not in the list of windows: the autocmd window or a
4870 * popup window.
4871 */
4872 int
4873win_unlisted(win_T *wp)
4874{
4875 return wp == aucmd_win || bt_popup(wp->w_buffer);
4876}
4877
4878/*
4879 * Free a popup window. This does not take the window out of the window list
4880 * and assumes there is only one toplevel frame, no split.
4881 */
4882 void
4883win_free_popup(win_T *win)
4884{
4885 win_close_buffer(win, TRUE, FALSE);
4886 vim_free(win->w_frame);
4887 win_free(win, NULL);
4888}
4889
4890/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 * Append window "wp" in the window list after window "after".
4892 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004893 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004894win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895{
4896 win_T *before;
4897
4898 if (after == NULL) /* after NULL is in front of the first */
4899 before = firstwin;
4900 else
4901 before = after->w_next;
4902
4903 wp->w_next = before;
4904 wp->w_prev = after;
4905 if (after == NULL)
4906 firstwin = wp;
4907 else
4908 after->w_next = wp;
4909 if (before == NULL)
4910 lastwin = wp;
4911 else
4912 before->w_prev = wp;
4913}
4914
4915/*
4916 * Remove a window from the window list.
4917 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004918 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004919win_remove(
4920 win_T *wp,
4921 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922{
4923 if (wp->w_prev != NULL)
4924 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004925 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004926 firstwin = curtab->tp_firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004927 else
4928 tp->tp_firstwin = wp->w_next;
Bram Moolenaar816968d2017-09-29 21:29:18 +02004929
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 if (wp->w_next != NULL)
4931 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004932 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004933 lastwin = curtab->tp_lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004934 else
4935 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936}
4937
4938/*
4939 * Append frame "frp" in a frame list after frame "after".
4940 */
4941 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004942frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943{
4944 frp->fr_next = after->fr_next;
4945 after->fr_next = frp;
4946 if (frp->fr_next != NULL)
4947 frp->fr_next->fr_prev = frp;
4948 frp->fr_prev = after;
4949}
4950
4951/*
4952 * Insert frame "frp" in a frame list before frame "before".
4953 */
4954 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004955frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956{
4957 frp->fr_next = before;
4958 frp->fr_prev = before->fr_prev;
4959 before->fr_prev = frp;
4960 if (frp->fr_prev != NULL)
4961 frp->fr_prev->fr_next = frp;
4962 else
4963 frp->fr_parent->fr_child = frp;
4964}
4965
4966/*
4967 * Remove a frame from a frame list.
4968 */
4969 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004970frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971{
4972 if (frp->fr_prev != NULL)
4973 frp->fr_prev->fr_next = frp->fr_next;
4974 else
Bram Moolenaar6f361c92018-01-31 19:06:50 +01004975 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 frp->fr_parent->fr_child = frp->fr_next;
Bram Moolenaar6f361c92018-01-31 19:06:50 +01004977 /* special case: topframe->fr_child == frp */
4978 if (topframe->fr_child == frp)
4979 topframe->fr_child = frp->fr_next;
4980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 if (frp->fr_next != NULL)
4982 frp->fr_next->fr_prev = frp->fr_prev;
4983}
4984
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985/*
4986 * Allocate w_lines[] for window "wp".
4987 * Return FAIL for failure, OK for success.
4988 */
4989 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004990win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991{
4992 wp->w_lines_valid = 0;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004993 wp->w_lines = (wline_T *)alloc_clear(Rows * sizeof(wline_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 if (wp->w_lines == NULL)
4995 return FAIL;
4996 return OK;
4997}
4998
4999/*
5000 * free lsize arrays for a window
5001 */
5002 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005003win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02005005 /* TODO: why would wp be NULL here? */
5006 if (wp != NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01005007 VIM_CLEAR(wp->w_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008}
5009
5010/*
5011 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00005012 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 */
5014 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005015shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005017 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018
5019 if (firstwin == NULL) /* not initialized yet */
5020 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 if (h < frame_minheight(topframe, NULL))
5022 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005023
5024 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 * that doesn't result in the right height, forget about that option. */
5026 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02005027 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 frame_new_height(topframe, h, FALSE, FALSE);
5029
5030 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 compute_cmdrow();
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005032 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005033
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034#if 0
5035 /* Disabled: don't want making the screen smaller make a window larger. */
5036 if (p_ea)
5037 win_equal(curwin, FALSE, 'v');
5038#endif
5039}
5040
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041/*
5042 * Called from win_new_shellsize() after Columns changed.
5043 */
5044 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005045shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046{
5047 if (firstwin == NULL) /* not initialized yet */
5048 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005049
5050 /* First try setting the widths of windows with 'winfixwidth'. If that
5051 * doesn't result in the right width, forget about that option. */
5052 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02005053 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005054 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
5055
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
5057#if 0
5058 /* Disabled: don't want making the screen smaller make a window larger. */
5059 if (p_ea)
5060 win_equal(curwin, FALSE, 'h');
5061#endif
5062}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063
5064#if defined(FEAT_CMDWIN) || defined(PROTO)
5065/*
5066 * Save the size of all windows in "gap".
5067 */
5068 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005069win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070
5071{
5072 win_T *wp;
5073
5074 ga_init2(gap, (int)sizeof(int), 1);
5075 if (ga_grow(gap, win_count() * 2) == OK)
Bram Moolenaar29323592016-07-24 22:04:11 +02005076 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 {
5078 ((int *)gap->ga_data)[gap->ga_len++] =
5079 wp->w_width + wp->w_vsep_width;
5080 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
5081 }
5082}
5083
5084/*
5085 * Restore window sizes, but only if the number of windows is still the same.
5086 * Does not free the growarray.
5087 */
5088 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005089win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090{
5091 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02005092 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093
5094 if (win_count() * 2 == gap->ga_len)
5095 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02005096 /* The order matters, because frames contain other frames, but it's
5097 * difficult to get right. The easy way out is to do it twice. */
5098 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02005100 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02005101 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb643e772014-07-16 15:18:26 +02005102 {
5103 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
5104 win_setheight_win(((int *)gap->ga_data)[i++], wp);
5105 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 }
5107 /* recompute the window positions */
5108 (void)win_comp_pos();
5109 }
5110}
5111#endif /* FEAT_CMDWIN */
5112
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113/*
5114 * Update the position for all windows, using the width and height of the
5115 * frames.
5116 * Returns the row just after the last window.
5117 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005118 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005119win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005121 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 int col = 0;
5123
5124 frame_comp_pos(topframe, &row, &col);
5125 return row;
5126}
5127
5128/*
5129 * Update the position of the windows in frame "topfrp", using the width and
5130 * height of the frames.
5131 * "*row" and "*col" are the top-left position of the frame. They are updated
5132 * to the bottom-right position plus one.
5133 */
5134 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005135frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136{
5137 win_T *wp;
5138 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 int startcol;
5140 int startrow;
Bram Moolenaar415a6932017-12-05 20:31:07 +01005141 int h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142
5143 wp = topfrp->fr_win;
5144 if (wp != NULL)
5145 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005146 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 {
5148 /* position changed, redraw */
5149 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 redraw_win_later(wp, NOT_VALID);
5152 wp->w_redr_status = TRUE;
5153 }
Bram Moolenaar415a6932017-12-05 20:31:07 +01005154 /* WinBar will not show if the window height is zero */
5155 h = VISIBLE_HEIGHT(wp) + wp->w_status_height;
5156 *row += h > topfrp->fr_height ? topfrp->fr_height : h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 }
5159 else
5160 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 startrow = *row;
5162 startcol = *col;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005163 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 if (topfrp->fr_layout == FR_ROW)
5166 *row = startrow; /* all frames are at the same row */
5167 else
5168 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 frame_comp_pos(frp, row, col);
5170 }
5171 }
5172}
5173
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174/*
5175 * Set current window height and take care of repositioning other windows to
5176 * fit around it.
5177 */
5178 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005179win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180{
5181 win_setheight_win(height, curwin);
5182}
5183
5184/*
5185 * Set the window height of window "win" and take care of repositioning other
5186 * windows to fit around it.
5187 */
5188 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005189win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190{
5191 int row;
5192
5193 if (win == curwin)
5194 {
5195 /* Always keep current window at least one line high, even when
5196 * 'winminheight' is zero. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 if (height < p_wmh)
5198 height = p_wmh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 if (height == 0)
5200 height = 1;
Bram Moolenaar415a6932017-12-05 20:31:07 +01005201 height += WINBAR_HEIGHT(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 }
5203
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 frame_setheight(win->w_frame, height + win->w_status_height);
5205
5206 /* recompute the window positions */
5207 row = win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208
5209 /*
5210 * If there is extra space created between the last window and the command
5211 * line, clear it.
5212 */
5213 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
5214 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5215 cmdline_row = row;
5216 msg_row = row;
5217 msg_col = 0;
5218
5219 redraw_all_later(NOT_VALID);
5220}
5221
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222/*
5223 * Set the height of a frame to "height" and take care that all frames and
5224 * windows inside it are resized. Also resize frames on the left and right if
5225 * the are in the same FR_ROW frame.
5226 *
5227 * Strategy:
5228 * If the frame is part of a FR_COL frame, try fitting the frame in that
5229 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5230 * go to containing frames to resize them and make room.
5231 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5232 * Check for the minimal height of the FR_ROW frame.
5233 * At the top level we can also use change the command line height.
5234 */
5235 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005236frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237{
5238 int room; /* total number of lines available */
5239 int take; /* number of lines taken from other windows */
5240 int room_cmdline; /* lines available from cmdline */
5241 int run;
5242 frame_T *frp;
5243 int h;
5244 int room_reserved;
5245
5246 /* If the height already is the desired value, nothing to do. */
5247 if (curfrp->fr_height == height)
5248 return;
5249
5250 if (curfrp->fr_parent == NULL)
5251 {
5252 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005253 if (height > ROWS_AVAIL)
5254 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 if (height > 0)
5256 frame_new_height(curfrp, height, FALSE, FALSE);
5257 }
5258 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5259 {
5260 /* Row of frames: Also need to resize frames left and right of this
5261 * one. First check for the minimal height of these. */
5262 h = frame_minheight(curfrp->fr_parent, NULL);
5263 if (height < h)
5264 height = h;
5265 frame_setheight(curfrp->fr_parent, height);
5266 }
5267 else
5268 {
5269 /*
5270 * Column of frames: try to change only frames in this column.
5271 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 /*
5273 * Do this twice:
5274 * 1: compute room available, if it's not enough try resizing the
5275 * containing frame.
5276 * 2: compute the room available and adjust the height to it.
5277 * Try not to reduce the height of a window with 'winfixheight' set.
5278 */
5279 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 {
5281 room = 0;
5282 room_reserved = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005283 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 {
5285 if (frp != curfrp
5286 && frp->fr_win != NULL
5287 && frp->fr_win->w_p_wfh)
5288 room_reserved += frp->fr_height;
5289 room += frp->fr_height;
5290 if (frp != curfrp)
5291 room -= frame_minheight(frp, NULL);
5292 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 if (curfrp->fr_width != Columns)
5294 room_cmdline = 0;
5295 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 {
5297 room_cmdline = Rows - p_ch - (lastwin->w_winrow
Bram Moolenaar415a6932017-12-05 20:31:07 +01005298 + VISIBLE_HEIGHT(lastwin)
5299 + lastwin->w_status_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 if (room_cmdline < 0)
5301 room_cmdline = 0;
5302 }
5303
5304 if (height <= room + room_cmdline)
5305 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 if (run == 2 || curfrp->fr_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 {
5308 if (height > room + room_cmdline)
5309 height = room + room_cmdline;
5310 break;
5311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 frame_setheight(curfrp->fr_parent, height
5313 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
5315
5316 /*
5317 * Compute the number of lines we will take from others frames (can be
5318 * negative!).
5319 */
5320 take = height - curfrp->fr_height;
5321
5322 /* If there is not enough room, also reduce the height of a window
5323 * with 'winfixheight' set. */
5324 if (height > room + room_cmdline - room_reserved)
5325 room_reserved = room + room_cmdline - height;
5326 /* If there is only a 'winfixheight' window and making the
5327 * window smaller, need to make the other window taller. */
5328 if (take < 0 && room - curfrp->fr_height < room_reserved)
5329 room_reserved = 0;
5330
5331 if (take > 0 && room_cmdline > 0)
5332 {
5333 /* use lines from cmdline first */
5334 if (take < room_cmdline)
5335 room_cmdline = take;
5336 take -= room_cmdline;
5337 topframe->fr_height += room_cmdline;
5338 }
5339
5340 /*
5341 * set the current frame to the new height
5342 */
5343 frame_new_height(curfrp, height, FALSE, FALSE);
5344
5345 /*
5346 * First take lines from the frames after the current frame. If
5347 * that is not enough, takes lines from frames above the current
5348 * frame.
5349 */
5350 for (run = 0; run < 2; ++run)
5351 {
5352 if (run == 0)
5353 frp = curfrp->fr_next; /* 1st run: start with next window */
5354 else
5355 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5356 while (frp != NULL && take != 0)
5357 {
5358 h = frame_minheight(frp, NULL);
5359 if (room_reserved > 0
5360 && frp->fr_win != NULL
5361 && frp->fr_win->w_p_wfh)
5362 {
5363 if (room_reserved >= frp->fr_height)
5364 room_reserved -= frp->fr_height;
5365 else
5366 {
5367 if (frp->fr_height - room_reserved > take)
5368 room_reserved = frp->fr_height - take;
5369 take -= frp->fr_height - room_reserved;
5370 frame_new_height(frp, room_reserved, FALSE, FALSE);
5371 room_reserved = 0;
5372 }
5373 }
5374 else
5375 {
5376 if (frp->fr_height - take < h)
5377 {
5378 take -= frp->fr_height - h;
5379 frame_new_height(frp, h, FALSE, FALSE);
5380 }
5381 else
5382 {
5383 frame_new_height(frp, frp->fr_height - take,
5384 FALSE, FALSE);
5385 take = 0;
5386 }
5387 }
5388 if (run == 0)
5389 frp = frp->fr_next;
5390 else
5391 frp = frp->fr_prev;
5392 }
5393 }
5394 }
5395}
5396
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397/*
5398 * Set current window width and take care of repositioning other windows to
5399 * fit around it.
5400 */
5401 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005402win_setwidth(int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403{
5404 win_setwidth_win(width, curwin);
5405}
5406
5407 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005408win_setwidth_win(int width, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409{
5410 /* Always keep current window at least one column wide, even when
5411 * 'winminwidth' is zero. */
5412 if (wp == curwin)
5413 {
5414 if (width < p_wmw)
5415 width = p_wmw;
5416 if (width == 0)
5417 width = 1;
5418 }
5419
5420 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5421
5422 /* recompute the window positions */
5423 (void)win_comp_pos();
5424
5425 redraw_all_later(NOT_VALID);
5426}
5427
5428/*
5429 * Set the width of a frame to "width" and take care that all frames and
5430 * windows inside it are resized. Also resize frames above and below if the
5431 * are in the same FR_ROW frame.
5432 *
5433 * Strategy is similar to frame_setheight().
5434 */
5435 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005436frame_setwidth(frame_T *curfrp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437{
5438 int room; /* total number of lines available */
5439 int take; /* number of lines taken from other windows */
5440 int run;
5441 frame_T *frp;
5442 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005443 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444
5445 /* If the width already is the desired value, nothing to do. */
5446 if (curfrp->fr_width == width)
5447 return;
5448
5449 if (curfrp->fr_parent == NULL)
5450 /* topframe: can't change width */
5451 return;
5452
5453 if (curfrp->fr_parent->fr_layout == FR_COL)
5454 {
5455 /* Column of frames: Also need to resize frames above and below of
5456 * this one. First check for the minimal width of these. */
5457 w = frame_minwidth(curfrp->fr_parent, NULL);
5458 if (width < w)
5459 width = w;
5460 frame_setwidth(curfrp->fr_parent, width);
5461 }
5462 else
5463 {
5464 /*
5465 * Row of frames: try to change only frames in this row.
5466 *
5467 * Do this twice:
5468 * 1: compute room available, if it's not enough try resizing the
5469 * containing frame.
5470 * 2: compute the room available and adjust the width to it.
5471 */
5472 for (run = 1; run <= 2; ++run)
5473 {
5474 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005475 room_reserved = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005476 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005478 if (frp != curfrp
5479 && frp->fr_win != NULL
5480 && frp->fr_win->w_p_wfw)
5481 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 room += frp->fr_width;
5483 if (frp != curfrp)
5484 room -= frame_minwidth(frp, NULL);
5485 }
5486
5487 if (width <= room)
5488 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005489 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 {
5491 if (width > room)
5492 width = room;
5493 break;
5494 }
5495 frame_setwidth(curfrp->fr_parent, width
5496 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5497 }
5498
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 /*
5500 * Compute the number of lines we will take from others frames (can be
5501 * negative!).
5502 */
5503 take = width - curfrp->fr_width;
5504
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005505 /* If there is not enough room, also reduce the width of a window
5506 * with 'winfixwidth' set. */
5507 if (width > room - room_reserved)
5508 room_reserved = room - width;
5509 /* If there is only a 'winfixwidth' window and making the
5510 * window smaller, need to make the other window narrower. */
5511 if (take < 0 && room - curfrp->fr_width < room_reserved)
5512 room_reserved = 0;
5513
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 /*
5515 * set the current frame to the new width
5516 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005517 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518
5519 /*
5520 * First take lines from the frames right of the current frame. If
5521 * that is not enough, takes lines from frames left of the current
5522 * frame.
5523 */
5524 for (run = 0; run < 2; ++run)
5525 {
5526 if (run == 0)
5527 frp = curfrp->fr_next; /* 1st run: start with next window */
5528 else
5529 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5530 while (frp != NULL && take != 0)
5531 {
5532 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005533 if (room_reserved > 0
5534 && frp->fr_win != NULL
5535 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005537 if (room_reserved >= frp->fr_width)
5538 room_reserved -= frp->fr_width;
5539 else
5540 {
5541 if (frp->fr_width - room_reserved > take)
5542 room_reserved = frp->fr_width - take;
5543 take -= frp->fr_width - room_reserved;
5544 frame_new_width(frp, room_reserved, FALSE, FALSE);
5545 room_reserved = 0;
5546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 }
5548 else
5549 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005550 if (frp->fr_width - take < w)
5551 {
5552 take -= frp->fr_width - w;
5553 frame_new_width(frp, w, FALSE, FALSE);
5554 }
5555 else
5556 {
5557 frame_new_width(frp, frp->fr_width - take,
5558 FALSE, FALSE);
5559 take = 0;
5560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 }
5562 if (run == 0)
5563 frp = frp->fr_next;
5564 else
5565 frp = frp->fr_prev;
5566 }
5567 }
5568 }
5569}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570
5571/*
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005572 * Check 'winminheight' for a valid value and reduce it if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 */
5574 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005575win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576{
5577 int room;
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005578 int needed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005581 // loop until there is a 'winminheight' that is possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 while (p_wmh > 0)
5583 {
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005584 room = Rows - p_ch;
5585 needed = frame_minheight(topframe, NULL);
5586 if (room >= needed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 break;
5588 --p_wmh;
5589 if (first)
5590 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005591 emsg(_(e_noroom));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 first = FALSE;
5593 }
5594 }
5595}
5596
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005597/*
5598 * Check 'winminwidth' for a valid value and reduce it if needed.
5599 */
5600 void
5601win_setminwidth(void)
5602{
5603 int room;
5604 int needed;
5605 int first = TRUE;
5606
5607 // loop until there is a 'winminheight' that is possible
5608 while (p_wmw > 0)
5609 {
5610 room = Columns;
5611 needed = frame_minwidth(topframe, NULL);
5612 if (room >= needed)
5613 break;
5614 --p_wmw;
5615 if (first)
5616 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005617 emsg(_(e_noroom));
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005618 first = FALSE;
5619 }
5620 }
5621}
5622
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005623#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624
5625/*
5626 * Status line of dragwin is dragged "offset" lines down (negative is up).
5627 */
5628 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005629win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630{
5631 frame_T *curfr;
5632 frame_T *fr;
5633 int room;
5634 int row;
5635 int up; /* if TRUE, drag status line up, otherwise down */
5636 int n;
5637
5638 fr = dragwin->w_frame;
5639 curfr = fr;
5640 if (fr != topframe) /* more than one window */
5641 {
5642 fr = fr->fr_parent;
5643 /* When the parent frame is not a column of frames, its parent should
5644 * be. */
5645 if (fr->fr_layout != FR_COL)
5646 {
5647 curfr = fr;
5648 if (fr != topframe) /* only a row of windows, may drag statusline */
5649 fr = fr->fr_parent;
5650 }
5651 }
5652
5653 /* If this is the last frame in a column, may want to resize the parent
5654 * frame instead (go two up to skip a row of frames). */
5655 while (curfr != topframe && curfr->fr_next == NULL)
5656 {
5657 if (fr != topframe)
5658 fr = fr->fr_parent;
5659 curfr = fr;
5660 if (fr != topframe)
5661 fr = fr->fr_parent;
5662 }
5663
5664 if (offset < 0) /* drag up */
5665 {
5666 up = TRUE;
5667 offset = -offset;
5668 /* sum up the room of the current frame and above it */
5669 if (fr == curfr)
5670 {
5671 /* only one window */
5672 room = fr->fr_height - frame_minheight(fr, NULL);
5673 }
5674 else
5675 {
5676 room = 0;
5677 for (fr = fr->fr_child; ; fr = fr->fr_next)
5678 {
5679 room += fr->fr_height - frame_minheight(fr, NULL);
5680 if (fr == curfr)
5681 break;
5682 }
5683 }
5684 fr = curfr->fr_next; /* put fr at frame that grows */
5685 }
5686 else /* drag down */
5687 {
5688 up = FALSE;
5689 /*
5690 * Only dragging the last status line can reduce p_ch.
5691 */
5692 room = Rows - cmdline_row;
5693 if (curfr->fr_next == NULL)
5694 room -= 1;
5695 else
5696 room -= p_ch;
5697 if (room < 0)
5698 room = 0;
5699 /* sum up the room of frames below of the current one */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005700 FOR_ALL_FRAMES(fr, curfr->fr_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 room += fr->fr_height - frame_minheight(fr, NULL);
5702 fr = curfr; /* put fr at window that grows */
5703 }
5704
5705 if (room < offset) /* Not enough room */
5706 offset = room; /* Move as far as we can */
5707 if (offset <= 0)
5708 return;
5709
5710 /*
5711 * Grow frame fr by "offset" lines.
5712 * Doesn't happen when dragging the last status line up.
5713 */
5714 if (fr != NULL)
5715 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5716
5717 if (up)
5718 fr = curfr; /* current frame gets smaller */
5719 else
5720 fr = curfr->fr_next; /* next frame gets smaller */
5721
5722 /*
5723 * Now make the other frames smaller.
5724 */
5725 while (fr != NULL && offset > 0)
5726 {
5727 n = frame_minheight(fr, NULL);
5728 if (fr->fr_height - offset <= n)
5729 {
5730 offset -= fr->fr_height - n;
5731 frame_new_height(fr, n, !up, FALSE);
5732 }
5733 else
5734 {
5735 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5736 break;
5737 }
5738 if (up)
5739 fr = fr->fr_prev;
5740 else
5741 fr = fr->fr_next;
5742 }
5743 row = win_comp_pos();
5744 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5745 cmdline_row = row;
5746 p_ch = Rows - cmdline_row;
5747 if (p_ch < 1)
5748 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005749 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005750 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 showmode();
5752}
5753
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754/*
5755 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5756 */
5757 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005758win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759{
5760 frame_T *curfr;
5761 frame_T *fr;
5762 int room;
5763 int left; /* if TRUE, drag separator line left, otherwise right */
5764 int n;
5765
5766 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005767 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 return;
5769 curfr = fr;
5770 fr = fr->fr_parent;
5771 /* When the parent frame is not a row of frames, its parent should be. */
5772 if (fr->fr_layout != FR_ROW)
5773 {
5774 if (fr == topframe) /* only a column of windows (cannot happen?) */
5775 return;
5776 curfr = fr;
5777 fr = fr->fr_parent;
5778 }
5779
5780 /* If this is the last frame in a row, may want to resize a parent
5781 * frame instead. */
5782 while (curfr->fr_next == NULL)
5783 {
5784 if (fr == topframe)
5785 break;
5786 curfr = fr;
5787 fr = fr->fr_parent;
5788 if (fr != topframe)
5789 {
5790 curfr = fr;
5791 fr = fr->fr_parent;
5792 }
5793 }
5794
5795 if (offset < 0) /* drag left */
5796 {
5797 left = TRUE;
5798 offset = -offset;
5799 /* sum up the room of the current frame and left of it */
5800 room = 0;
5801 for (fr = fr->fr_child; ; fr = fr->fr_next)
5802 {
5803 room += fr->fr_width - frame_minwidth(fr, NULL);
5804 if (fr == curfr)
5805 break;
5806 }
5807 fr = curfr->fr_next; /* put fr at frame that grows */
5808 }
5809 else /* drag right */
5810 {
5811 left = FALSE;
5812 /* sum up the room of frames right of the current one */
5813 room = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005814 FOR_ALL_FRAMES(fr, curfr->fr_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 room += fr->fr_width - frame_minwidth(fr, NULL);
5816 fr = curfr; /* put fr at window that grows */
5817 }
5818
5819 if (room < offset) /* Not enough room */
5820 offset = room; /* Move as far as we can */
5821 if (offset <= 0) /* No room at all, quit. */
5822 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005823 if (fr == NULL)
5824 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825
5826 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005827 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828
5829 /* shrink other frames: current and at the left or at the right */
5830 if (left)
5831 fr = curfr; /* current frame gets smaller */
5832 else
5833 fr = curfr->fr_next; /* next frame gets smaller */
5834
5835 while (fr != NULL && offset > 0)
5836 {
5837 n = frame_minwidth(fr, NULL);
5838 if (fr->fr_width - offset <= n)
5839 {
5840 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005841 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 }
5843 else
5844 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005845 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 break;
5847 }
5848 if (left)
5849 fr = fr->fr_prev;
5850 else
5851 fr = fr->fr_next;
5852 }
5853 (void)win_comp_pos();
5854 redraw_all_later(NOT_VALID);
5855}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856#endif /* FEAT_MOUSE */
5857
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005858#define FRACTION_MULT 16384L
5859
5860/*
5861 * Set wp->w_fraction for the current w_wrow and w_height.
Bram Moolenaar3679c172017-11-22 22:22:11 +01005862 * Has no effect when the window is less than two lines.
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005863 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005864 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005865set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005866{
Bram Moolenaar3679c172017-11-22 22:22:11 +01005867 if (wp->w_height > 1)
Bram Moolenaar8fcb60f2019-03-04 13:18:30 +01005868 // When cursor is in the first line the percentage is computed as if
5869 // it's halfway that line. Thus with two lines it is 25%, with three
5870 // lines 17%, etc. Similarly for the last line: 75%, 83%, etc.
Bram Moolenaar3679c172017-11-22 22:22:11 +01005871 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar8fcb60f2019-03-04 13:18:30 +01005872 + FRACTION_MULT / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005873}
5874
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875/*
5876 * Set the height of a window.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02005877 * "height" excludes any window toolbar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 * This takes care of the things inside the window, not what happens to the
5879 * window position, the frame or to other windows.
5880 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005881 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005882win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883{
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005884 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885
5886 /* Don't want a negative height. Happens when splitting a tiny window.
5887 * Will equalize heights soon to fix it. */
5888 if (height < 0)
5889 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005890 if (wp->w_height == height)
5891 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005893 if (wp->w_height > 0)
5894 {
5895 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005896 /* w_wrow needs to be valid. When setting 'laststatus' this may
5897 * call win_new_height() recursively. */
5898 validate_cursor();
5899 if (wp->w_height != prev_height)
5900 return; /* Recursive call already changed the size, bail out here
5901 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005902 if (wp->w_wrow != wp->w_prev_fraction_row)
5903 set_fraction(wp);
5904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905
5906 wp->w_height = height;
5907 wp->w_skipcol = 0;
5908
Bram Moolenaar955f1982017-02-05 15:10:51 +01005909 /* There is no point in adjusting the scroll position when exiting. Some
5910 * values might be invalid. */
5911 if (!exiting)
5912 scroll_to_fraction(wp, prev_height);
Bram Moolenaar46328f92016-08-28 15:39:57 +02005913}
5914
5915 void
5916scroll_to_fraction(win_T *wp, int prev_height)
5917{
5918 linenr_T lnum;
5919 int sline, line_size;
5920 int height = wp->w_height;
5921
Bram Moolenaara9b25352019-05-12 14:25:30 +02005922 // Don't change w_topline in any of these cases:
5923 // - window height is 0
5924 // - 'scrollbind' is set and this isn't the current window
Bram Moolenaarbd2d68c2019-05-18 15:36:11 +02005925 // - window height is sufficient to display the whole buffer and first line
5926 // is visible.
Bram Moolenaara9b25352019-05-12 14:25:30 +02005927 if (height > 0
5928 && (!wp->w_p_scb || wp == curwin)
Bram Moolenaarbd2d68c2019-05-18 15:36:11 +02005929 && (height < wp->w_buffer->b_ml.ml_line_count || wp->w_topline > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005931 /*
5932 * Find a value for w_topline that shows the cursor at the same
5933 * relative position in the window as before (more or less).
5934 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935 lnum = wp->w_cursor.lnum;
5936 if (lnum < 1) /* can happen when starting up */
5937 lnum = 1;
Bram Moolenaar8fcb60f2019-03-04 13:18:30 +01005938 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L)
5939 / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5941 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005942
5943 if (sline >= 0)
5944 {
5945 /* Make sure the whole cursor line is visible, if possible. */
5946 int rows = plines_win(wp, lnum, FALSE);
5947
5948 if (sline > wp->w_height - rows)
5949 {
5950 sline = wp->w_height - rows;
5951 wp->w_wrow -= rows - line_size;
5952 }
5953 }
5954
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 if (sline < 0)
5956 {
5957 /*
5958 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005959 * Make cursor line the first line in the window. If not enough
5960 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 */
5962 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005963 if (wp->w_wrow >= wp->w_height
Bram Moolenaar02631462017-09-22 15:20:32 +02005964 && (wp->w_width - win_col_off(wp)) > 0)
Bram Moolenaar26470632006-10-24 19:12:40 +00005965 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005966 wp->w_skipcol += wp->w_width - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00005967 --wp->w_wrow;
5968 while (wp->w_wrow >= wp->w_height)
5969 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005970 wp->w_skipcol += wp->w_width - win_col_off(wp)
Bram Moolenaar26470632006-10-24 19:12:40 +00005971 + win_col_off2(wp);
5972 --wp->w_wrow;
5973 }
5974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005976 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005978 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 {
5980#ifdef FEAT_FOLDING
5981 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5982 if (lnum == 1)
5983 {
5984 /* first line in buffer is folded */
5985 line_size = 1;
5986 --sline;
5987 break;
5988 }
5989#endif
5990 --lnum;
5991#ifdef FEAT_DIFF
5992 if (lnum == wp->w_topline)
5993 line_size = plines_win_nofill(wp, lnum, TRUE)
5994 + wp->w_topfill;
5995 else
5996#endif
5997 line_size = plines_win(wp, lnum, TRUE);
5998 sline -= line_size;
5999 }
Bram Moolenaar34114692005-01-02 11:28:13 +00006000
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 if (sline < 0)
6002 {
6003 /*
6004 * Line we want at top would go off top of screen. Use next
6005 * line instead.
6006 */
6007#ifdef FEAT_FOLDING
6008 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
6009#endif
6010 lnum++;
6011 wp->w_wrow -= line_size + sline;
6012 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02006013 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014 {
Bram Moolenaar8fcb60f2019-03-04 13:18:30 +01006015 // First line of file reached, use that as topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016 lnum = 1;
6017 wp->w_wrow -= sline;
6018 }
6019 }
Bram Moolenaar8fcb60f2019-03-04 13:18:30 +01006020 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 }
6022
6023 if (wp == curwin)
6024 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01006025 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 update_topline();
6027 curs_columns(FALSE); /* validate w_wrow */
6028 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02006029 if (prev_height > 0)
6030 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031
6032 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006033 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034 wp->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 invalidate_botline_win(wp);
6036}
6037
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038/*
6039 * Set the width of a window.
6040 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02006041 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006042win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043{
6044 wp->w_width = width;
6045 wp->w_lines_valid = 0;
6046 changed_line_abv_curs_win(wp);
6047 invalidate_botline_win(wp);
6048 if (wp == curwin)
6049 {
6050 update_topline();
6051 curs_columns(TRUE); /* validate w_wrow */
6052 }
6053 redraw_win_later(wp, NOT_VALID);
6054 wp->w_redr_status = TRUE;
6055}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056
6057 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006058win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059{
6060 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
6061 if (wp->w_p_scr == 0)
6062 wp->w_p_scr = 1;
6063}
6064
6065/*
6066 * command_height: called whenever p_ch has been changed
6067 */
6068 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006069command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 int h;
6072 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00006073 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00006075 /* Use the value of p_ch that we remembered. This is needed for when the
6076 * GUI starts up, we can't be sure in what order things happen. And when
6077 * p_ch was changed in another tab page. */
6078 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006079
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 /* Find bottom frame with width of screen. */
6081 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 while (frp->fr_width != Columns && frp->fr_parent != NULL)
6083 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084
6085 /* Avoid changing the height of a window with 'winfixheight' set. */
6086 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
6087 && frp->fr_win->w_p_wfh)
6088 frp = frp->fr_prev;
6089
6090 if (starting != NO_SCREEN)
6091 {
6092 cmdline_row = Rows - p_ch;
6093
6094 if (p_ch > old_p_ch) /* p_ch got bigger */
6095 {
6096 while (p_ch > old_p_ch)
6097 {
6098 if (frp == NULL)
6099 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006100 emsg(_(e_noroom));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00006102 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 cmdline_row = Rows - p_ch;
6104 break;
6105 }
6106 h = frp->fr_height - frame_minheight(frp, NULL);
6107 if (h > p_ch - old_p_ch)
6108 h = p_ch - old_p_ch;
6109 old_p_ch += h;
6110 frame_add_height(frp, -h);
6111 frp = frp->fr_prev;
6112 }
6113
6114 /* Recompute window positions. */
6115 (void)win_comp_pos();
6116
6117 /* clear the lines added to cmdline */
6118 if (full_screen)
6119 screen_fill((int)(cmdline_row), (int)Rows, 0,
6120 (int)Columns, ' ', ' ', 0);
6121 msg_row = cmdline_row;
6122 redraw_cmdline = TRUE;
6123 return;
6124 }
6125
6126 if (msg_row < cmdline_row)
6127 msg_row = cmdline_row;
6128 redraw_cmdline = TRUE;
6129 }
6130 frame_add_height(frp, (int)(old_p_ch - p_ch));
6131
6132 /* Recompute window positions. */
6133 if (frp != lastwin->w_frame)
6134 (void)win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135}
6136
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137/*
6138 * Resize frame "frp" to be "n" lines higher (negative for less high).
6139 * Also resize the frames it is contained in.
6140 */
6141 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006142frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143{
6144 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
6145 for (;;)
6146 {
6147 frp = frp->fr_parent;
6148 if (frp == NULL)
6149 break;
6150 frp->fr_height += n;
6151 }
6152}
6153
6154/*
6155 * Add or remove a status line for the bottom window(s), according to the
6156 * value of 'laststatus'.
6157 */
6158 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006159last_status(
6160 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161{
6162 /* Don't make a difference between horizontal or vertical split. */
6163 last_status_rec(topframe, (p_ls == 2
Bram Moolenaar459ca562016-11-10 18:16:33 +01006164 || (p_ls == 1 && (morewin || !ONE_WINDOW))));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165}
6166
6167 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006168last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169{
6170 frame_T *fp;
6171 win_T *wp;
6172
6173 if (fr->fr_layout == FR_LEAF)
6174 {
6175 wp = fr->fr_win;
6176 if (wp->w_status_height != 0 && !statusline)
6177 {
6178 /* remove status line */
6179 win_new_height(wp, wp->w_height + 1);
6180 wp->w_status_height = 0;
6181 comp_col();
6182 }
6183 else if (wp->w_status_height == 0 && statusline)
6184 {
6185 /* Find a frame to take a line from. */
6186 fp = fr;
6187 while (fp->fr_height <= frame_minheight(fp, NULL))
6188 {
6189 if (fp == topframe)
6190 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006191 emsg(_(e_noroom));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192 return;
6193 }
6194 /* In a column of frames: go to frame above. If already at
6195 * the top or in a row of frames: go to parent. */
6196 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
6197 fp = fp->fr_prev;
6198 else
6199 fp = fp->fr_parent;
6200 }
6201 wp->w_status_height = 1;
6202 if (fp != fr)
6203 {
6204 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
6205 frame_fix_height(wp);
6206 (void)win_comp_pos();
6207 }
6208 else
6209 win_new_height(wp, wp->w_height - 1);
6210 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006211 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 }
6213 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 else if (fr->fr_layout == FR_ROW)
6215 {
6216 /* vertically split windows, set status line for each one */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01006217 FOR_ALL_FRAMES(fp, fr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 last_status_rec(fp, statusline);
6219 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 else
6221 {
6222 /* horizontally split window, set status line for last one */
6223 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
6224 ;
6225 last_status_rec(fp, statusline);
6226 }
6227}
6228
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006229/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006230 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006231 */
6232 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006233tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006234{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006235#ifdef FEAT_GUI_TABLINE
6236 /* When the GUI has the tabline then this always returns zero. */
6237 if (gui_use_tabline())
6238 return 0;
6239#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006240 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006241 {
6242 case 0: return 0;
6243 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6244 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006245 return 1;
6246}
6247
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248/*
6249 * Return the minimal number of rows that is needed on the screen to display
6250 * the current number of windows.
6251 */
6252 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006253min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254{
6255 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006256 tabpage_T *tp;
6257 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258
6259 if (firstwin == NULL) /* not initialized yet */
6260 return MIN_LINES;
6261
Bram Moolenaarf740b292006-02-16 22:11:02 +00006262 total = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02006263 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006264 {
6265 n = frame_minheight(tp->tp_topframe, NULL);
6266 if (total < n)
6267 total = n;
6268 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006269 total += tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006270 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 return total;
6272}
6273
6274/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006275 * Return TRUE if there is only one window (in the current tab page), not
6276 * counting a help or preview window, unless it is the current window.
Bram Moolenaar4d784b22019-05-25 19:51:39 +02006277 * Does not count unlisted windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 */
6279 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006280only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 int count = 0;
6283 win_T *wp;
6284
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006285 /* If there is another tab page there always is another window. */
6286 if (first_tabpage->tp_next != NULL)
6287 return FALSE;
6288
Bram Moolenaar29323592016-07-24 22:04:11 +02006289 FOR_ALL_WINDOWS(wp)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006290 if (wp->w_buffer != NULL
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006291 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292# ifdef FEAT_QUICKFIX
6293 || wp->w_p_pvw
6294# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006295 ) || wp == curwin) && wp != aucmd_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 ++count;
6297 return (count <= 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298}
6299
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300/*
6301 * Correct the cursor line number in other windows. Used after changing the
6302 * current buffer, and before applying autocommands.
6303 * When "do_curwin" is TRUE, also check current window.
6304 */
6305 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006306check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307{
6308 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006309 tabpage_T *tp;
6310
6311 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 {
Bram Moolenaara68e5952019-04-25 22:22:01 +02006314 // save the original cursor position and topline
6315 wp->w_save_cursor.w_cursor_save = wp->w_cursor;
6316 wp->w_save_cursor.w_topline_save = wp->w_topline;
6317
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6319 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6320 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6321 wp->w_topline = curbuf->b_ml.ml_line_count;
Bram Moolenaara68e5952019-04-25 22:22:01 +02006322
6323 // save the corrected cursor position and topline
6324 wp->w_save_cursor.w_cursor_corr = wp->w_cursor;
6325 wp->w_save_cursor.w_topline_corr = wp->w_topline;
6326 }
6327}
6328
6329/*
6330 * Reset cursor and topline to its stored values from check_lnums().
6331 * check_lnums() must have been called first!
6332 */
6333 void
6334reset_lnums()
6335{
6336 win_T *wp;
6337 tabpage_T *tp;
6338
6339 FOR_ALL_TAB_WINDOWS(tp, wp)
6340 if (wp->w_buffer == curbuf)
6341 {
6342 // Restore the value if the autocommand didn't change it.
6343 if (EQUAL_POS(wp->w_save_cursor.w_cursor_corr, wp->w_cursor))
6344 wp->w_cursor = wp->w_save_cursor.w_cursor_save;
6345 if (wp->w_save_cursor.w_topline_corr == wp->w_topline)
6346 wp->w_topline = wp->w_save_cursor.w_topline_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 }
6348}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349
6350/*
6351 * A snapshot of the window sizes, to restore them after closing the help
6352 * window.
6353 * Only these fields are used:
6354 * fr_layout
6355 * fr_width
6356 * fr_height
6357 * fr_next
6358 * fr_child
6359 * fr_win (only valid for the old curwin, NULL otherwise)
6360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361
6362/*
6363 * Create a snapshot of the current frame sizes.
6364 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006365 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006366make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006368 clear_snapshot(curtab, idx);
6369 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370}
6371
6372 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006373make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374{
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02006375 *frp = (frame_T *)alloc_clear(sizeof(frame_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 if (*frp == NULL)
6377 return;
6378 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380 (*frp)->fr_height = fr->fr_height;
6381 if (fr->fr_next != NULL)
6382 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6383 if (fr->fr_child != NULL)
6384 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6385 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6386 (*frp)->fr_win = curwin;
6387}
6388
6389/*
6390 * Remove any existing snapshot.
6391 */
6392 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006393clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006395 clear_snapshot_rec(tp->tp_snapshot[idx]);
6396 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397}
6398
6399 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006400clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401{
6402 if (fr != NULL)
6403 {
6404 clear_snapshot_rec(fr->fr_next);
6405 clear_snapshot_rec(fr->fr_child);
6406 vim_free(fr);
6407 }
6408}
6409
6410/*
6411 * Restore a previously created snapshot, if there is any.
6412 * This is only done if the screen size didn't change and the window layout is
6413 * still the same.
6414 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006415 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006416restore_snapshot(
6417 int idx,
6418 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419{
6420 win_T *wp;
6421
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006422 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006423 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006424 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6425 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006427 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 win_comp_pos();
6429 if (wp != NULL && close_curwin)
6430 win_goto(wp);
Bram Moolenaarbf3250a2019-01-06 17:25:29 +01006431 redraw_all_later(NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006433 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434}
6435
6436/*
6437 * Check if frames "sn" and "fr" have the same layout, same following frames
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006438 * and same children. And the window pointer is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 */
6440 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006441check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442{
6443 if (sn->fr_layout != fr->fr_layout
6444 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6445 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6446 || (sn->fr_next != NULL
6447 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6448 || (sn->fr_child != NULL
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006449 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL)
Bram Moolenaar2c90d512017-03-18 22:35:30 +01006450 || (sn->fr_win != NULL && !win_valid(sn->fr_win)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 return FAIL;
6452 return OK;
6453}
6454
6455/*
6456 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6457 * following frames and children.
6458 * Returns a pointer to the old current window, or NULL.
6459 */
6460 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006461restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462{
6463 win_T *wp = NULL;
6464 win_T *wp2;
6465
6466 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468 if (fr->fr_layout == FR_LEAF)
6469 {
6470 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006471 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 wp = sn->fr_win;
6473 }
6474 if (sn->fr_next != NULL)
6475 {
6476 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6477 if (wp2 != NULL)
6478 wp = wp2;
6479 }
6480 if (sn->fr_child != NULL)
6481 {
6482 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6483 if (wp2 != NULL)
6484 wp = wp2;
6485 }
6486 return wp;
6487}
6488
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006489#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6490 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006491/*
6492 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006493 * restore_win() MUST be called to undo, also when FAIL is returned.
6494 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006495 * When "no_display" is TRUE the display won't be affected, no redraw is
6496 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006497 * Returns FAIL if switching to "win" failed.
6498 */
6499 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006500switch_win(
Bram Moolenaar816968d2017-09-29 21:29:18 +02006501 win_T **save_curwin,
6502 tabpage_T **save_curtab,
6503 win_T *win,
6504 tabpage_T *tp,
6505 int no_display)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006506{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006507 block_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006508 *save_curwin = curwin;
6509 if (tp != NULL)
6510 {
6511 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006512 if (no_display)
6513 {
6514 curtab->tp_firstwin = firstwin;
6515 curtab->tp_lastwin = lastwin;
Bram Moolenaarec583842019-05-26 14:11:23 +02006516#ifdef FEAT_TEXT_PROP
6517 curtab->tp_first_popupwin = first_tab_popupwin ;
6518#endif
Bram Moolenaard6949742013-06-16 14:18:28 +02006519 curtab = tp;
6520 firstwin = curtab->tp_firstwin;
6521 lastwin = curtab->tp_lastwin;
Bram Moolenaarec583842019-05-26 14:11:23 +02006522#ifdef FEAT_TEXT_PROP
6523 first_tab_popupwin = curtab->tp_first_popupwin;
6524#endif
Bram Moolenaard6949742013-06-16 14:18:28 +02006525 }
6526 else
6527 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006528 }
6529 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006530 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006531 curwin = win;
6532 curbuf = curwin->w_buffer;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006533 return OK;
6534}
6535
6536/*
6537 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006538 * When "no_display" is TRUE the display won't be affected, no redraw is
6539 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006540 */
6541 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006542restore_win(
6543 win_T *save_curwin UNUSED,
6544 tabpage_T *save_curtab UNUSED,
6545 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006546{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006547 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006548 {
6549 if (no_display)
6550 {
6551 curtab->tp_firstwin = firstwin;
6552 curtab->tp_lastwin = lastwin;
Bram Moolenaarec583842019-05-26 14:11:23 +02006553#ifdef FEAT_TEXT_PROP
6554 curtab->tp_first_popupwin = first_tab_popupwin ;
6555#endif
Bram Moolenaard6949742013-06-16 14:18:28 +02006556 curtab = save_curtab;
6557 firstwin = curtab->tp_firstwin;
6558 lastwin = curtab->tp_lastwin;
Bram Moolenaarec583842019-05-26 14:11:23 +02006559#ifdef FEAT_TEXT_PROP
6560 first_tab_popupwin = curtab->tp_first_popupwin;
6561#endif
Bram Moolenaard6949742013-06-16 14:18:28 +02006562 }
6563 else
6564 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6565 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006566 if (win_valid(save_curwin))
6567 {
6568 curwin = save_curwin;
6569 curbuf = curwin->w_buffer;
6570 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006571 unblock_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006572}
6573
6574/*
6575 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6576 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6577 */
6578 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006579switch_buffer(bufref_T *save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006580{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006581 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006582 set_bufref(save_curbuf, curbuf);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006583 --curbuf->b_nwindows;
6584 curbuf = buf;
6585 curwin->w_buffer = buf;
6586 ++curbuf->b_nwindows;
6587}
6588
6589/*
6590 * Restore the current buffer after using switch_buffer().
6591 */
6592 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006593restore_buffer(bufref_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006594{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006595 unblock_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006596 /* Check for valid buffer, just in case. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006597 if (bufref_valid(save_curbuf))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006598 {
6599 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006600 curwin->w_buffer = save_curbuf->br_buf;
6601 curbuf = save_curbuf->br_buf;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006602 ++curbuf->b_nwindows;
6603 }
6604}
6605#endif
6606
Bram Moolenaar4033c552017-09-16 20:54:51 +02006607#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608/*
6609 * Return TRUE if there is any vertically split window.
6610 */
6611 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006612win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613{
6614 frame_T *fr;
6615
6616 if (topframe->fr_layout == FR_ROW)
6617 return TRUE;
6618
6619 if (topframe->fr_layout == FR_COL)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01006620 FOR_ALL_FRAMES(fr, topframe->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 if (fr->fr_layout == FR_ROW)
6622 return TRUE;
6623
6624 return FALSE;
6625}
6626#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006627
6628#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6629/*
6630 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006631 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006632 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6633 * If no particular ID is desired, -1 must be specified for 'id'.
6634 * Return ID of added match, -1 on failure.
6635 */
6636 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006637match_add(
6638 win_T *wp,
6639 char_u *grp,
6640 char_u *pat,
6641 int prio,
6642 int id,
6643 list_T *pos_list,
6644 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006645{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006646 matchitem_T *cur;
6647 matchitem_T *prev;
6648 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006649 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006650 regprog_T *regprog = NULL;
6651 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006652
Bram Moolenaarb3414592014-06-17 17:48:32 +02006653 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006654 return -1;
6655 if (id < -1 || id == 0)
6656 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006657 semsg(_("E799: Invalid ID: %d (must be greater than or equal to 1)"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006658 return -1;
6659 }
6660 if (id != -1)
6661 {
6662 cur = wp->w_match_head;
6663 while (cur != NULL)
6664 {
6665 if (cur->id == id)
6666 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006667 semsg(_("E801: ID already taken: %d"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006668 return -1;
6669 }
6670 cur = cur->next;
6671 }
6672 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006673 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006674 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006675 semsg(_(e_nogroup), grp);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006676 return -1;
6677 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006678 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006679 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006680 semsg(_(e_invarg2), pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006681 return -1;
6682 }
6683
6684 /* Find available match ID. */
6685 while (id == -1)
6686 {
6687 cur = wp->w_match_head;
6688 while (cur != NULL && cur->id != wp->w_next_match_id)
6689 cur = cur->next;
6690 if (cur == NULL)
6691 id = wp->w_next_match_id;
6692 wp->w_next_match_id++;
6693 }
6694
6695 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006696 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006697 m->id = id;
6698 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006699 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006700 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006701 m->match.regprog = regprog;
6702 m->match.rmm_ic = FALSE;
6703 m->match.rmm_maxcol = 0;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01006704# if defined(FEAT_CONCEAL)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006705 m->conceal_char = 0;
6706 if (conceal_char != NULL)
6707 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006708# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006709
Bram Moolenaarb3414592014-06-17 17:48:32 +02006710 /* Set up position matches */
6711 if (pos_list != NULL)
6712 {
6713 linenr_T toplnum = 0;
6714 linenr_T botlnum = 0;
6715 listitem_T *li;
6716 int i;
6717
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006718 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006719 i++, li = li->li_next)
6720 {
6721 linenr_T lnum = 0;
6722 colnr_T col = 0;
6723 int len = 1;
6724 list_T *subl;
6725 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006726 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006727
Bram Moolenaarb3414592014-06-17 17:48:32 +02006728 if (li->li_tv.v_type == VAR_LIST)
6729 {
6730 subl = li->li_tv.vval.v_list;
6731 if (subl == NULL)
6732 goto fail;
6733 subli = subl->lv_first;
6734 if (subli == NULL)
6735 goto fail;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01006736 lnum = tv_get_number_chk(&subli->li_tv, &error);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006737 if (error == TRUE)
6738 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006739 if (lnum == 0)
6740 {
6741 --i;
6742 continue;
6743 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006744 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006745 subli = subli->li_next;
6746 if (subli != NULL)
6747 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01006748 col = tv_get_number_chk(&subli->li_tv, &error);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006749 if (error == TRUE)
6750 goto fail;
6751 subli = subli->li_next;
6752 if (subli != NULL)
6753 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01006754 len = tv_get_number_chk(&subli->li_tv, &error);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006755 if (error == TRUE)
6756 goto fail;
6757 }
6758 }
6759 m->pos.pos[i].col = col;
6760 m->pos.pos[i].len = len;
6761 }
6762 else if (li->li_tv.v_type == VAR_NUMBER)
6763 {
6764 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006765 {
6766 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006767 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006768 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006769 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6770 m->pos.pos[i].col = 0;
6771 m->pos.pos[i].len = 0;
6772 }
6773 else
6774 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006775 emsg(_("List or number required"));
Bram Moolenaarb3414592014-06-17 17:48:32 +02006776 goto fail;
6777 }
6778 if (toplnum == 0 || lnum < toplnum)
6779 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006780 if (botlnum == 0 || lnum >= botlnum)
6781 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006782 }
6783
6784 /* Calculate top and bottom lines for redrawing area */
6785 if (toplnum != 0)
6786 {
6787 if (wp->w_buffer->b_mod_set)
6788 {
6789 if (wp->w_buffer->b_mod_top > toplnum)
6790 wp->w_buffer->b_mod_top = toplnum;
6791 if (wp->w_buffer->b_mod_bot < botlnum)
6792 wp->w_buffer->b_mod_bot = botlnum;
6793 }
6794 else
6795 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006796 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006797 wp->w_buffer->b_mod_top = toplnum;
6798 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006799 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006800 }
6801 m->pos.toplnum = toplnum;
6802 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006803 rtype = VALID;
6804 }
6805 }
6806
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006807 /* Insert new match. The match list is in ascending order with regard to
6808 * the match priorities. */
6809 cur = wp->w_match_head;
6810 prev = cur;
6811 while (cur != NULL && prio >= cur->priority)
6812 {
6813 prev = cur;
6814 cur = cur->next;
6815 }
6816 if (cur == prev)
6817 wp->w_match_head = m;
6818 else
6819 prev->next = m;
6820 m->next = cur;
6821
Bram Moolenaarb3414592014-06-17 17:48:32 +02006822 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006823 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006824
6825fail:
6826 vim_free(m);
6827 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006828}
6829
6830/*
6831 * Delete match with ID 'id' in the match list of window 'wp'.
6832 * Print error messages if 'perr' is TRUE.
6833 */
6834 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006835match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006836{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006837 matchitem_T *cur = wp->w_match_head;
6838 matchitem_T *prev = cur;
6839 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006840
6841 if (id < 1)
6842 {
6843 if (perr == TRUE)
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006844 semsg(_("E802: Invalid ID: %d (must be greater than or equal to 1)"),
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006845 id);
6846 return -1;
6847 }
6848 while (cur != NULL && cur->id != id)
6849 {
6850 prev = cur;
6851 cur = cur->next;
6852 }
6853 if (cur == NULL)
6854 {
6855 if (perr == TRUE)
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006856 semsg(_("E803: ID not found: %d"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006857 return -1;
6858 }
6859 if (cur == prev)
6860 wp->w_match_head = cur->next;
6861 else
6862 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006863 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006864 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006865 if (cur->pos.toplnum != 0)
6866 {
6867 if (wp->w_buffer->b_mod_set)
6868 {
6869 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6870 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6871 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
6872 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
6873 }
6874 else
6875 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006876 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006877 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6878 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006879 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006880 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006881 rtype = VALID;
6882 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006883 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006884 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006885 return 0;
6886}
6887
6888/*
6889 * Delete all matches in the match list of window 'wp'.
6890 */
6891 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006892clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006893{
6894 matchitem_T *m;
6895
6896 while (wp->w_match_head != NULL)
6897 {
6898 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006899 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006900 vim_free(wp->w_match_head->pattern);
6901 vim_free(wp->w_match_head);
6902 wp->w_match_head = m;
6903 }
6904 redraw_later(SOME_VALID);
6905}
6906
6907/*
6908 * Get match from ID 'id' in window 'wp'.
6909 * Return NULL if match not found.
6910 */
6911 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006912get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006913{
6914 matchitem_T *cur = wp->w_match_head;
6915
6916 while (cur != NULL && cur->id != id)
6917 cur = cur->next;
6918 return cur;
6919}
6920#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02006921
6922#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
6923 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006924get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02006925{
6926 int i = 1;
6927 win_T *w;
6928
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006929 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02006930 ++i;
6931
6932 if (w == NULL)
6933 return 0;
6934 else
6935 return i;
6936}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006937
6938 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02006939get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006940{
6941 int i = 1;
6942 tabpage_T *t;
6943
6944 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
6945 ++i;
6946
6947 if (t == NULL)
6948 return 0;
6949 else
6950 return i;
6951}
Bram Moolenaar6d216452013-05-12 19:00:41 +02006952#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006953
6954/*
6955 * Return TRUE if "topfrp" and its children are at the right height.
6956 */
6957 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006958frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006959{
6960 frame_T *frp;
6961
6962 if (topfrp->fr_height != height)
6963 return FALSE;
6964
6965 if (topfrp->fr_layout == FR_ROW)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01006966 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006967 if (frp->fr_height != height)
6968 return FALSE;
6969
6970 return TRUE;
6971}
6972
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006973/*
6974 * Return TRUE if "topfrp" and its children are at the right width.
6975 */
6976 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006977frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006978{
6979 frame_T *frp;
6980
6981 if (topfrp->fr_width != width)
6982 return FALSE;
6983
6984 if (topfrp->fr_layout == FR_COL)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01006985 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006986 if (frp->fr_width != width)
6987 return FALSE;
6988
6989 return TRUE;
6990}
Bram Moolenaarb893ac22013-06-26 14:04:47 +02006991
Bram Moolenaar86edef62016-03-13 18:07:30 +01006992#if defined(FEAT_EVAL) || defined(PROTO)
6993 int
6994win_getid(typval_T *argvars)
6995{
6996 int winnr;
6997 win_T *wp;
6998
6999 if (argvars[0].v_type == VAR_UNKNOWN)
7000 return curwin->w_id;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007001 winnr = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007002 if (winnr > 0)
7003 {
7004 if (argvars[1].v_type == VAR_UNKNOWN)
7005 wp = firstwin;
7006 else
7007 {
7008 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007009 int tabnr = tv_get_number(&argvars[1]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007010
Bram Moolenaar29323592016-07-24 22:04:11 +02007011 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007012 if (--tabnr == 0)
7013 break;
7014 if (tp == NULL)
7015 return -1;
Bram Moolenaar8e639052016-11-13 14:31:40 +01007016 if (tp == curtab)
7017 wp = firstwin;
7018 else
7019 wp = tp->tp_firstwin;
Bram Moolenaar86edef62016-03-13 18:07:30 +01007020 }
7021 for ( ; wp != NULL; wp = wp->w_next)
7022 if (--winnr == 0)
7023 return wp->w_id;
7024 }
7025 return 0;
7026}
7027
7028 int
7029win_gotoid(typval_T *argvars)
7030{
7031 win_T *wp;
7032 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007033 int id = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007034
Bram Moolenaar29323592016-07-24 22:04:11 +02007035 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007036 if (wp->w_id == id)
7037 {
7038 goto_tabpage_win(tp, wp);
7039 return 1;
7040 }
7041 return 0;
7042}
7043
7044 void
7045win_id2tabwin(typval_T *argvars, list_T *list)
7046{
7047 win_T *wp;
7048 tabpage_T *tp;
7049 int winnr = 1;
7050 int tabnr = 1;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007051 int id = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007052
Bram Moolenaar29323592016-07-24 22:04:11 +02007053 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007054 {
Bram Moolenaar29323592016-07-24 22:04:11 +02007055 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007056 {
7057 if (wp->w_id == id)
7058 {
7059 list_append_number(list, tabnr);
7060 list_append_number(list, winnr);
7061 return;
7062 }
7063 ++winnr;
7064 }
7065 ++tabnr;
7066 winnr = 1;
7067 }
7068 list_append_number(list, 0);
7069 list_append_number(list, 0);
7070}
7071
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007072 win_T *
Bram Moolenaareeb1b9c2019-02-10 22:59:04 +01007073win_id2wp(int id)
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007074{
7075 win_T *wp;
7076 tabpage_T *tp;
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007077
7078 FOR_ALL_TAB_WINDOWS(tp, wp)
7079 if (wp->w_id == id)
7080 return wp;
Bram Moolenaar4d784b22019-05-25 19:51:39 +02007081#ifdef FEAT_TEXT_PROP
7082 // popup windows are in a separate list
7083 FOR_ALL_TABPAGES(tp)
7084 for (wp = tp->tp_first_popupwin; wp != NULL; wp = wp->w_next)
7085 if (wp->w_id == id)
7086 return wp;
7087 for (wp = first_popupwin; wp != NULL; wp = wp->w_next)
7088 if (wp->w_id == id)
7089 return wp;
7090#endif
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007091
7092 return NULL;
7093}
7094
Bram Moolenaar86edef62016-03-13 18:07:30 +01007095 int
7096win_id2win(typval_T *argvars)
7097{
7098 win_T *wp;
7099 int nr = 1;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007100 int id = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007101
Bram Moolenaar29323592016-07-24 22:04:11 +02007102 FOR_ALL_WINDOWS(wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007103 {
7104 if (wp->w_id == id)
7105 return nr;
7106 ++nr;
7107 }
7108 return 0;
7109}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007110
7111 void
7112win_findbuf(typval_T *argvars, list_T *list)
7113{
7114 win_T *wp;
7115 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007116 int bufnr = tv_get_number(&argvars[0]);
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007117
Bram Moolenaar29323592016-07-24 22:04:11 +02007118 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007119 if (wp->w_buffer->b_fnum == bufnr)
7120 list_append_number(list, wp->w_id);
7121}
7122
Bram Moolenaar0f6b4f02018-08-21 16:56:34 +02007123/*
7124 * Get the layout of the given tab page for winlayout().
7125 */
7126 void
7127get_framelayout(frame_T *fr, list_T *l, int outer)
7128{
7129 frame_T *child;
7130 list_T *fr_list;
7131 list_T *win_list;
7132
7133 if (fr == NULL)
7134 return;
7135
7136 if (outer)
7137 // outermost call from f_winlayout()
7138 fr_list = l;
7139 else
7140 {
7141 fr_list = list_alloc();
7142 if (fr_list == NULL)
7143 return;
7144 list_append_list(l, fr_list);
7145 }
7146
7147 if (fr->fr_layout == FR_LEAF)
7148 {
7149 if (fr->fr_win != NULL)
7150 {
7151 list_append_string(fr_list, (char_u *)"leaf", -1);
7152 list_append_number(fr_list, fr->fr_win->w_id);
7153 }
7154 }
7155 else
7156 {
7157 list_append_string(fr_list,
7158 fr->fr_layout == FR_ROW ? (char_u *)"row" : (char_u *)"col", -1);
7159
7160 win_list = list_alloc();
7161 if (win_list == NULL)
7162 return;
7163 list_append_list(fr_list, win_list);
7164 child = fr->fr_child;
7165 while (child != NULL)
7166 {
7167 get_framelayout(child, win_list, FALSE);
7168 child = child->fr_next;
7169 }
7170 }
7171}
Bram Moolenaar86edef62016-03-13 18:07:30 +01007172#endif