blob: b9617f0371fa7a08c73953b5d207ea8e038cc44a [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read a list of people who contributed.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010012static int path_is_url(char_u *p);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010013static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum);
14static void win_init(win_T *newp, win_T *oldp, int flags);
15static void win_init_some(win_T *newp, win_T *oldp);
16static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
17static void frame_setheight(frame_T *curfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010018static void frame_setwidth(frame_T *curfrp, int width);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static void win_exchange(long);
20static void win_rotate(int, int);
21static void win_totop(int size, int flags);
22static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010023static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
24static frame_T *win_altframe(win_T *win, tabpage_T *tp);
25static tabpage_T *alt_tabpage(void);
26static win_T *frame2win(frame_T *frp);
27static int frame_has_win(frame_T *frp, win_T *wp);
28static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
29static int frame_fixed_height(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010030static int frame_fixed_width(frame_T *frp);
31static void frame_add_statusline(frame_T *frp);
32static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
33static void frame_add_vsep(frame_T *frp);
34static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
35static void frame_fix_width(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010036static int win_alloc_firstwin(win_T *oldwin);
37static void new_frame(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010038static tabpage_T *alloc_tabpage(void);
39static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds);
40static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds);
41static void frame_fix_height(win_T *wp);
42static int frame_minheight(frame_T *topfrp, win_T *next_curwin);
Bram Moolenaarc917da42016-07-19 22:31:36 +020043static 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 +010044static void win_free(win_T *wp, tabpage_T *tp);
45static void frame_append(frame_T *after, frame_T *frp);
46static void frame_insert(frame_T *before, frame_T *frp);
47static void frame_remove(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010048static void win_goto_ver(int up, long count);
49static void win_goto_hor(int left, long count);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010050static void frame_add_height(frame_T *frp, int n);
51static void last_status_rec(frame_T *fr, int statusline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010053static void make_snapshot_rec(frame_T *fr, frame_T **frp);
54static void clear_snapshot(tabpage_T *tp, int idx);
55static void clear_snapshot_rec(frame_T *fr);
56static int check_snapshot_rec(frame_T *sn, frame_T *fr);
57static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000058
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010059static int frame_check_height(frame_T *topfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010060static int frame_check_width(frame_T *topfrp, int width);
Bram Moolenaarb893ac22013-06-26 14:04:47 +020061
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010062static win_T *win_alloc(win_T *after, int hidden);
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
64#define URL_SLASH 1 /* path_is_url() has found "://" */
65#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
66
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000067#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000068
Bram Moolenaar4033c552017-09-16 20:54:51 +020069#define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000070
71static char *m_onlyone = N_("Already only one window");
72
Bram Moolenaar071d4272004-06-13 20:20:40 +000073/*
74 * all CTRL-W window commands are handled here, called from normal_cmd().
75 */
76 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010077do_window(
78 int nchar,
79 long Prenum,
80 int xchar) /* extra char from ":wincmd gx" or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000081{
82 long Prenum1;
83 win_T *wp;
84#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
85 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +000086 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000087#endif
88#ifdef FEAT_FIND_ID
89 int type = FIND_DEFINE;
90 int len;
91#endif
92 char_u cbuf[40];
93
94 if (Prenum == 0)
95 Prenum1 = 1;
96 else
97 Prenum1 = Prenum;
98
99#ifdef FEAT_CMDWIN
Bram Moolenaar6f470022018-04-10 18:47:20 +0200100# define CHECK_CMDWIN \
101 do { \
102 if (cmdwin_type != 0) \
103 { \
104 EMSG(_(e_cmdwin)); \
105 return; \
106 } \
107 } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#else
Bram Moolenaar6f470022018-04-10 18:47:20 +0200109# define CHECK_CMDWIN do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110#endif
111
112 switch (nchar)
113 {
114/* split current window in two parts, horizontally */
115 case 'S':
116 case Ctrl_S:
117 case 's':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200118 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000120#ifdef FEAT_QUICKFIX
121 /* When splitting the quickfix window open a new buffer in it,
122 * don't replicate the quickfix buffer. */
123 if (bt_quickfix(curbuf))
124 goto newwindow;
125#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#ifdef FEAT_GUI
127 need_mouse_correct = TRUE;
128#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200129 (void)win_split((int)Prenum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 break;
131
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132/* split current window in two parts, vertically */
133 case Ctrl_V:
134 case 'v':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200135 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100137#ifdef FEAT_QUICKFIX
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000138 /* When splitting the quickfix window open a new buffer in it,
139 * don't replicate the quickfix buffer. */
140 if (bt_quickfix(curbuf))
141 goto newwindow;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100142#endif
143#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100145#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200146 (void)win_split((int)Prenum, WSP_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148
149/* split current window and edit alternate file */
150 case Ctrl_HAT:
151 case '^':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200152 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar1bbb6192018-11-10 16:02:01 +0100154
155 if (buflist_findnr(Prenum == 0
156 ? curwin->w_alt_fnum : Prenum) == NULL)
157 {
158 if (Prenum == 0)
159 EMSG(_(e_noalt));
160 else
161 EMSGN(_("E92: Buffer %ld not found"), Prenum);
162 break;
163 }
164
165 if (!curbuf_locked() && win_split(0, 0) == OK)
166 (void)buflist_getfile(
167 Prenum == 0 ? curwin->w_alt_fnum : Prenum,
168 (linenr_T)0, GETF_ALT, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 break;
170
171/* open new window */
172 case Ctrl_N:
173 case 'n':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200174 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000176#ifdef FEAT_QUICKFIX
177newwindow:
178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000180 /* window height */
181 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 else
183 cbuf[0] = NUL;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100184#if defined(FEAT_QUICKFIX)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000185 if (nchar == 'v' || nchar == Ctrl_V)
186 STRCAT(cbuf, "v");
187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 STRCAT(cbuf, "new");
189 do_cmdline_cmd(cbuf);
190 break;
191
192/* quit current window */
193 case Ctrl_Q:
194 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100196 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100197 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 break;
199
200/* close current window */
201 case Ctrl_C:
202 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100204 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100205 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 break;
207
Bram Moolenaar4033c552017-09-16 20:54:51 +0200208#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209/* close preview window */
210 case Ctrl_Z:
211 case 'z':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200212 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 do_cmdline_cmd((char_u *)"pclose");
215 break;
216
217/* cursor to preview window */
218 case 'P':
Bram Moolenaar29323592016-07-24 22:04:11 +0200219 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 if (wp->w_p_pvw)
221 break;
222 if (wp == NULL)
223 EMSG(_("E441: There is no preview window"));
224 else
225 win_goto(wp);
226 break;
227#endif
228
229/* close all but current window */
230 case Ctrl_O:
231 case 'o':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200232 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100234 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100235 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 break;
237
238/* cursor to next window with wrap around */
239 case Ctrl_W:
240 case 'w':
241/* cursor to previous window with wrap around */
242 case 'W':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200243 CHECK_CMDWIN;
Bram Moolenaara1f4cb92016-11-06 15:25:42 +0100244 if (ONE_WINDOW && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 beep_flush();
246 else
247 {
248 if (Prenum) /* go to specified window */
249 {
250 for (wp = firstwin; --Prenum > 0; )
251 {
252 if (wp->w_next == NULL)
253 break;
254 else
255 wp = wp->w_next;
256 }
257 }
258 else
259 {
260 if (nchar == 'W') /* go to previous window */
261 {
262 wp = curwin->w_prev;
263 if (wp == NULL)
264 wp = lastwin; /* wrap around */
265 }
266 else /* go to next window */
267 {
268 wp = curwin->w_next;
269 if (wp == NULL)
270 wp = firstwin; /* wrap around */
271 }
272 }
273 win_goto(wp);
274 }
275 break;
276
277/* cursor to window below */
278 case 'j':
279 case K_DOWN:
280 case Ctrl_J:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200281 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 win_goto_ver(FALSE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 break;
284
285/* cursor to window above */
286 case 'k':
287 case K_UP:
288 case Ctrl_K:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200289 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 win_goto_ver(TRUE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 break;
292
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293/* cursor to left window */
294 case 'h':
295 case K_LEFT:
296 case Ctrl_H:
297 case K_BS:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200298 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299 win_goto_hor(TRUE, Prenum1);
300 break;
301
302/* cursor to right window */
303 case 'l':
304 case K_RIGHT:
305 case Ctrl_L:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200306 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 win_goto_hor(FALSE, Prenum1);
308 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000310/* move window to new tab page */
311 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000312 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000313 MSG(_(m_onlyone));
314 else
315 {
316 tabpage_T *oldtab = curtab;
317 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000318
319 /* First create a new tab with the window, then go back to
320 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000321 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000322 if (win_new_tabpage((int)Prenum) == OK
323 && valid_tabpage(oldtab))
324 {
325 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200326 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000327 if (curwin == wp)
328 win_close(curwin, FALSE);
329 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200330 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000331 }
332 }
333 break;
334
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335/* cursor to top-left window */
336 case 't':
337 case Ctrl_T:
338 win_goto(firstwin);
339 break;
340
341/* cursor to bottom-right window */
342 case 'b':
343 case Ctrl_B:
344 win_goto(lastwin);
345 break;
346
347/* cursor to last accessed (previous) window */
348 case 'p':
349 case Ctrl_P:
Bram Moolenaar3dda7db2016-04-03 21:22:58 +0200350 if (!win_valid(prevwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 beep_flush();
352 else
353 win_goto(prevwin);
354 break;
355
356/* exchange current and next window */
357 case 'x':
358 case Ctrl_X:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200359 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 win_exchange(Prenum);
361 break;
362
363/* rotate windows downwards */
364 case Ctrl_R:
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(FALSE, (int)Prenum1); /* downwards */
369 break;
370
371/* rotate windows upwards */
372 case 'R':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200373 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 win_rotate(TRUE, (int)Prenum1); /* upwards */
376 break;
377
378/* move window to the very top/bottom/left/right */
379 case 'K':
380 case 'J':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 case 'H':
382 case 'L':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200383 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 win_totop((int)Prenum,
385 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
386 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
387 break;
388
389/* make all windows the same height */
390 case '=':
391#ifdef FEAT_GUI
392 need_mouse_correct = TRUE;
393#endif
394 win_equal(NULL, FALSE, 'b');
395 break;
396
397/* increase current window height */
398 case '+':
399#ifdef FEAT_GUI
400 need_mouse_correct = TRUE;
401#endif
402 win_setheight(curwin->w_height + (int)Prenum1);
403 break;
404
405/* decrease current window height */
406 case '-':
407#ifdef FEAT_GUI
408 need_mouse_correct = TRUE;
409#endif
410 win_setheight(curwin->w_height - (int)Prenum1);
411 break;
412
413/* set current window height */
414 case Ctrl__:
415 case '_':
416#ifdef FEAT_GUI
417 need_mouse_correct = TRUE;
418#endif
419 win_setheight(Prenum ? (int)Prenum : 9999);
420 break;
421
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422/* increase current window width */
423 case '>':
424#ifdef FEAT_GUI
425 need_mouse_correct = TRUE;
426#endif
427 win_setwidth(curwin->w_width + (int)Prenum1);
428 break;
429
430/* decrease current window width */
431 case '<':
432#ifdef FEAT_GUI
433 need_mouse_correct = TRUE;
434#endif
435 win_setwidth(curwin->w_width - (int)Prenum1);
436 break;
437
438/* set current window width */
439 case '|':
440#ifdef FEAT_GUI
441 need_mouse_correct = TRUE;
442#endif
443 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
444 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445
446/* jump to tag and split window if tag exists (in preview window) */
447#if defined(FEAT_QUICKFIX)
448 case '}':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200449 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 if (Prenum)
451 g_do_tagpreview = Prenum;
452 else
453 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200455 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 case ']':
457 case Ctrl_RSB:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200458 CHECK_CMDWIN;
Bram Moolenaard355c502014-09-23 13:48:43 +0200459 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 if (Prenum)
461 postponed_split = Prenum;
462 else
463 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200464#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200465 if (nchar != '}')
466 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200467#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468
Bram Moolenaard355c502014-09-23 13:48:43 +0200469 /* Execute the command right here, required when "wincmd ]"
470 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 do_nv_ident(Ctrl_RSB, NUL);
472 break;
473
474#ifdef FEAT_SEARCHPATH
475/* edit file name under cursor in a new window */
476 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000477 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000479wingotofile:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200480 CHECK_CMDWIN;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000481
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000482 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 if (ptr != NULL)
484 {
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200485 tabpage_T *oldtab = curtab;
486 win_T *oldwin = curwin;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000487# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000489# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 setpcmark();
491 if (win_split(0, 0) == OK)
492 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200493 RESET_BINDING(curwin);
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200494 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
495 ECMD_HIDE, NULL) == FAIL)
496 {
497 /* Failed to open the file, close the window
498 * opened for it. */
499 win_close(curwin, FALSE);
500 goto_tabpage_win(oldtab, oldwin);
501 }
502 else if (nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000503 {
504 curwin->w_cursor.lnum = lnum;
505 check_cursor_lnum();
506 beginline(BL_SOL | BL_FIX);
507 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 }
509 vim_free(ptr);
510 }
511 break;
512#endif
513
514#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000515/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 * new window -- webb
517 */
518 case 'i': /* Go to any match */
519 case Ctrl_I:
520 type = FIND_ANY;
521 /* FALLTHROUGH */
522 case 'd': /* Go to definition, using 'define' */
523 case Ctrl_D:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200524 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
526 break;
527 find_pattern_in_path(ptr, 0, len, TRUE,
528 Prenum == 0 ? TRUE : FALSE, type,
529 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
530 curwin->w_set_curswant = TRUE;
531 break;
532#endif
533
Bram Moolenaar0a08c632018-07-25 22:36:52 +0200534/* Quickfix window only: view the result under the cursor in a new split. */
535#if defined(FEAT_QUICKFIX)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000536 case K_KENTER:
537 case CAR:
Bram Moolenaar05159a02005-02-26 23:04:13 +0000538 if (bt_quickfix(curbuf))
Bram Moolenaar0a08c632018-07-25 22:36:52 +0200539 qf_view_result(TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000540 break;
Bram Moolenaar0a08c632018-07-25 22:36:52 +0200541#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000542
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543/* CTRL-W g extended commands */
544 case 'g':
545 case Ctrl_G:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200546 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547#ifdef USE_ON_FLY_SCROLL
548 dont_scroll = TRUE; /* disallow scrolling here */
549#endif
550 ++no_mapping;
551 ++allow_keys; /* no mapping for xchar, but allow key codes */
552 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000553 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 --no_mapping;
556 --allow_keys;
557#ifdef FEAT_CMDL_INFO
558 (void)add_to_showcmd(xchar);
559#endif
560 switch (xchar)
561 {
562#if defined(FEAT_QUICKFIX)
563 case '}':
564 xchar = Ctrl_RSB;
565 if (Prenum)
566 g_do_tagpreview = Prenum;
567 else
568 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200570 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 case ']':
572 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200573 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 if (Prenum)
575 postponed_split = Prenum;
576 else
577 postponed_split = -1;
578
579 /* Execute the command right here, required when
580 * "wincmd g}" was used in a function. */
581 do_nv_ident('g', xchar);
582 break;
583
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000584#ifdef FEAT_SEARCHPATH
585 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000586 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100587 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000588 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000589 goto wingotofile;
590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 default:
592 beep_flush();
593 break;
594 }
595 break;
596
597 default: beep_flush();
598 break;
599 }
600}
601
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100602/*
603 * Figure out the address type for ":wnncmd".
604 */
605 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100606get_wincmd_addr_type(char_u *arg, exarg_T *eap)
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100607{
608 switch (*arg)
609 {
610 case 'S':
611 case Ctrl_S:
612 case 's':
613 case Ctrl_N:
614 case 'n':
615 case 'j':
616 case Ctrl_J:
617 case 'k':
618 case Ctrl_K:
619 case 'T':
620 case Ctrl_R:
621 case 'r':
622 case 'R':
623 case 'K':
624 case 'J':
625 case '+':
626 case '-':
627 case Ctrl__:
628 case '_':
629 case '|':
630 case ']':
631 case Ctrl_RSB:
632 case 'g':
633 case Ctrl_G:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100634 case Ctrl_V:
635 case 'v':
636 case 'h':
637 case Ctrl_H:
638 case 'l':
639 case Ctrl_L:
640 case 'H':
641 case 'L':
642 case '>':
643 case '<':
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100644#if defined(FEAT_QUICKFIX)
645 case '}':
646#endif
647#ifdef FEAT_SEARCHPATH
648 case 'f':
649 case 'F':
650 case Ctrl_F:
651#endif
652#ifdef FEAT_FIND_ID
653 case 'i':
654 case Ctrl_I:
655 case 'd':
656 case Ctrl_D:
657#endif
658 /* window size or any count */
659 eap->addr_type = ADDR_LINES;
660 break;
661
662 case Ctrl_HAT:
663 case '^':
664 /* buffer number */
665 eap->addr_type = ADDR_BUFFERS;
666 break;
667
668 case Ctrl_Q:
669 case 'q':
670 case Ctrl_C:
671 case 'c':
672 case Ctrl_O:
673 case 'o':
674 case Ctrl_W:
675 case 'w':
676 case 'W':
677 case 'x':
678 case Ctrl_X:
679 /* window number */
680 eap->addr_type = ADDR_WINDOWS;
681 break;
682
683#if defined(FEAT_QUICKFIX)
684 case Ctrl_Z:
685 case 'z':
686 case 'P':
687#endif
688 case 't':
689 case Ctrl_T:
690 case 'b':
691 case Ctrl_B:
692 case 'p':
693 case Ctrl_P:
694 case '=':
695 case CAR:
696 /* no count */
697 eap->addr_type = 0;
698 break;
699 }
700}
701
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100702 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100703cmd_with_count(
704 char *cmd,
705 char_u *bufp,
706 size_t bufsize,
707 long Prenum)
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100708{
709 size_t len = STRLEN(cmd);
710
711 STRCPY(bufp, cmd);
712 if (Prenum > 0)
713 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum);
714}
715
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716/*
717 * split the current window, implements CTRL-W s and :split
718 *
719 * "size" is the height or width for the new window, 0 to use half of current
720 * height or width.
721 *
722 * "flags":
723 * WSP_ROOM: require enough room for new window
724 * WSP_VERT: vertical split.
725 * WSP_TOP: open window at the top-left of the shell (help window).
726 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
727 * WSP_HELP: creating the help window, keep layout snapshot
728 *
729 * return FAIL for failure, OK otherwise
730 */
731 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100732win_split(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000734 /* When the ":tab" modifier was used open a new tab page instead. */
735 if (may_open_tabpage() == OK)
736 return OK;
737
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 /* Add flags from ":vertical", ":topleft" and ":botright". */
739 flags |= cmdmod.split;
740 if ((flags & WSP_TOP) && (flags & WSP_BOT))
741 {
742 EMSG(_("E442: Can't split topleft and botright at the same time"));
743 return FAIL;
744 }
745
746 /* When creating the help window make a snapshot of the window layout.
747 * Otherwise clear the snapshot, it's now invalid. */
748 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000749 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000751 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752
753 return win_split_ins(size, flags, NULL, 0);
754}
755
756/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100757 * When "new_wp" is NULL: split the current window in two.
758 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 * top/left/right/bottom.
760 * return FAIL for failure, OK otherwise
761 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000762 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100763win_split_ins(
764 int size,
765 int flags,
766 win_T *new_wp,
767 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100769 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 win_T *oldwin;
771 int new_size = size;
772 int i;
773 int need_status = 0;
774 int do_equal = FALSE;
775 int needed;
776 int available;
777 int oldwin_height = 0;
778 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200779 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200781 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200782 int wmh1;
Bram Moolenaar98da6ec2018-04-13 22:15:46 +0200783 int did_set_fraction = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784
785 if (flags & WSP_TOP)
786 oldwin = firstwin;
787 else if (flags & WSP_BOT)
788 oldwin = lastwin;
789 else
790 oldwin = curwin;
791
792 /* add a status line when p_ls == 1 and splitting the first window */
Bram Moolenaar459ca562016-11-10 18:16:33 +0100793 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 {
Bram Moolenaar415a6932017-12-05 20:31:07 +0100795 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 {
797 EMSG(_(e_noroom));
798 return FAIL;
799 }
800 need_status = STATUS_HEIGHT;
801 }
802
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000803#ifdef FEAT_GUI
804 /* May be needed for the scrollbars that are going to change. */
805 if (gui.in_use)
806 out_flush();
807#endif
808
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 if (flags & WSP_VERT)
810 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200811 int wmw1;
812 int minwidth;
813
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815
816 /*
817 * Check if we are able to split the current window and compute its
818 * width.
819 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200820 /* Current window requires at least 1 space. */
821 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
822 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200824 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200825 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200827 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200829 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200831 else if (p_ea)
832 {
833 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
834 prevfrp = oldwin->w_frame;
835 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
836 frp = frp->fr_parent)
837 {
838 if (frp->fr_layout == FR_ROW)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +0100839 FOR_ALL_FRAMES(frp2, frp->fr_child)
Bram Moolenaar54368f22014-07-23 15:21:20 +0200840 if (frp2 != prevfrp)
841 minwidth += frame_minwidth(frp2, NOWIN);
842 prevfrp = frp;
843 }
844 available = topframe->fr_width;
845 needed += minwidth;
846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200848 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200849 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
850 available = oldwin->w_frame->fr_width;
851 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200852 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100853 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 {
855 EMSG(_(e_noroom));
856 return FAIL;
857 }
858 if (new_size == 0)
859 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200860 if (new_size > available - minwidth - 1)
861 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200862 if (new_size < wmw1)
863 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864
865 /* if it doesn't fit in the current window, need win_equal() */
866 if (oldwin->w_width - new_size - 1 < p_wmw)
867 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000868
869 /* We don't like to take lines for the new window from a
870 * 'winfixwidth' window. Take them from a window to the left or right
Bram Moolenaar38e34832017-03-19 20:22:36 +0100871 * instead, if possible. Add one for the separator. */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000872 if (oldwin->w_p_wfw)
Bram Moolenaar38e34832017-03-19 20:22:36 +0100873 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000874
875 /* Only make all windows the same width if one of them (except oldwin)
876 * is wider than one of the split windows. */
877 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
878 && oldwin->w_frame->fr_parent != NULL)
879 {
880 frp = oldwin->w_frame->fr_parent->fr_child;
881 while (frp != NULL)
882 {
883 if (frp->fr_win != oldwin && frp->fr_win != NULL
884 && (frp->fr_win->w_width > new_size
885 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100886 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000887 {
888 do_equal = TRUE;
889 break;
890 }
891 frp = frp->fr_next;
892 }
893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 }
895 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 {
897 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898
899 /*
900 * Check if we are able to split the current window and compute its
901 * height.
902 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200903 /* Current window requires at least 1 space. */
Bram Moolenaar415a6932017-12-05 20:31:07 +0100904 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin);
Bram Moolenaar1f538352014-07-16 18:19:27 +0200905 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200907 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200908 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200910 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200912 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200914 else if (p_ea)
915 {
916 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
917 prevfrp = oldwin->w_frame;
918 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
919 frp = frp->fr_parent)
920 {
921 if (frp->fr_layout == FR_COL)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +0100922 FOR_ALL_FRAMES(frp2, frp->fr_child)
Bram Moolenaar54368f22014-07-23 15:21:20 +0200923 if (frp2 != prevfrp)
924 minheight += frame_minheight(frp2, NOWIN);
925 prevfrp = frp;
926 }
927 available = topframe->fr_height;
928 needed += minheight;
929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 else
931 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200932 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
933 available = oldwin->w_frame->fr_height;
934 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100936 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 {
938 EMSG(_(e_noroom));
939 return FAIL;
940 }
941 oldwin_height = oldwin->w_height;
942 if (need_status)
943 {
944 oldwin->w_status_height = STATUS_HEIGHT;
945 oldwin_height -= STATUS_HEIGHT;
946 }
947 if (new_size == 0)
948 new_size = oldwin_height / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200949 if (new_size > available - minheight - STATUS_HEIGHT)
950 new_size = available - minheight - STATUS_HEIGHT;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200951 if (new_size < wmh1)
952 new_size = wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953
954 /* if it doesn't fit in the current window, need win_equal() */
955 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
956 do_equal = TRUE;
957
958 /* We don't like to take lines for the new window from a
959 * 'winfixheight' window. Take them from a window above or below
960 * instead, if possible. */
961 if (oldwin->w_p_wfh)
962 {
Bram Moolenaar98da6ec2018-04-13 22:15:46 +0200963 /* Set w_fraction now so that the cursor keeps the same relative
964 * vertical position using the old height. */
965 set_fraction(oldwin);
966 did_set_fraction = TRUE;
967
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
969 oldwin);
970 oldwin_height = oldwin->w_height;
971 if (need_status)
972 oldwin_height -= STATUS_HEIGHT;
973 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000974
975 /* Only make all windows the same height if one of them (except oldwin)
976 * is higher than one of the split windows. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100977 if (!do_equal && p_ea && size == 0 && *p_ead != 'h'
Bram Moolenaar67f71312007-08-12 14:55:56 +0000978 && oldwin->w_frame->fr_parent != NULL)
979 {
980 frp = oldwin->w_frame->fr_parent->fr_child;
981 while (frp != NULL)
982 {
983 if (frp->fr_win != oldwin && frp->fr_win != NULL
984 && (frp->fr_win->w_height > new_size
985 || frp->fr_win->w_height > oldwin_height - new_size
986 - STATUS_HEIGHT))
987 {
988 do_equal = TRUE;
989 break;
990 }
991 frp = frp->fr_next;
992 }
993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 }
995
996 /*
997 * allocate new window structure and link it in the window list
998 */
999 if ((flags & WSP_TOP) == 0
1000 && ((flags & WSP_BOT)
1001 || (flags & WSP_BELOW)
1002 || (!(flags & WSP_ABOVE)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001003 && ( (flags & WSP_VERT) ? p_spr : p_sb))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 {
1005 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001006 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001007 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 else
1009 win_append(oldwin, wp);
1010 }
1011 else
1012 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001013 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001014 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 else
1016 win_append(oldwin->w_prev, wp);
1017 }
1018
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001019 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 {
1021 if (wp == NULL)
1022 return FAIL;
1023
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001024 new_frame(wp);
1025 if (wp->w_frame == NULL)
1026 {
1027 win_free(wp, NULL);
1028 return FAIL;
1029 }
1030
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001031 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001032 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 }
1034
1035 /*
1036 * Reorganise the tree of frames to insert the new window.
1037 */
1038 if (flags & (WSP_TOP | WSP_BOT))
1039 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
1041 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 {
1043 curfrp = topframe->fr_child;
1044 if (flags & WSP_BOT)
1045 while (curfrp->fr_next != NULL)
1046 curfrp = curfrp->fr_next;
1047 }
1048 else
1049 curfrp = topframe;
1050 before = (flags & WSP_TOP);
1051 }
1052 else
1053 {
1054 curfrp = oldwin->w_frame;
1055 if (flags & WSP_BELOW)
1056 before = FALSE;
1057 else if (flags & WSP_ABOVE)
1058 before = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001059 else if (flags & WSP_VERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 before = !p_spr;
1061 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 before = !p_sb;
1063 }
1064 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
1065 {
1066 /* Need to create a new frame in the tree to make a branch. */
1067 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
1068 *frp = *curfrp;
1069 curfrp->fr_layout = layout;
1070 frp->fr_parent = curfrp;
1071 frp->fr_next = NULL;
1072 frp->fr_prev = NULL;
1073 curfrp->fr_child = frp;
1074 curfrp->fr_win = NULL;
1075 curfrp = frp;
1076 if (frp->fr_win != NULL)
1077 oldwin->w_frame = frp;
1078 else
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001079 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 frp->fr_parent = curfrp;
1081 }
1082
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001083 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001084 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001086 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 frp->fr_parent = curfrp->fr_parent;
1088
1089 /* Insert the new frame at the right place in the frame list. */
1090 if (before)
1091 frame_insert(curfrp, frp);
1092 else
1093 frame_append(curfrp, frp);
1094
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001095 /* Set w_fraction now so that the cursor keeps the same relative
1096 * vertical position. */
Bram Moolenaar98da6ec2018-04-13 22:15:46 +02001097 if (!did_set_fraction)
1098 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001099 wp->w_fraction = oldwin->w_fraction;
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 if (flags & WSP_VERT)
1102 {
1103 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001104
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 if (need_status)
1106 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001107 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 oldwin->w_status_height = need_status;
1109 }
1110 if (flags & (WSP_TOP | WSP_BOT))
1111 {
1112 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001113 wp->w_winrow = tabline_height();
Bram Moolenaard326ad62017-09-18 20:31:41 +02001114 win_new_height(wp, curfrp->fr_height - (p_ls > 0)
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01001115 - WINBAR_HEIGHT(wp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 wp->w_status_height = (p_ls > 0);
1117 }
1118 else
1119 {
1120 /* height and row of new window is same as current window */
1121 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar415a6932017-12-05 20:31:07 +01001122 win_new_height(wp, VISIBLE_HEIGHT(oldwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 wp->w_status_height = oldwin->w_status_height;
1124 }
1125 frp->fr_height = curfrp->fr_height;
1126
1127 /* "new_size" of the current window goes to the new window, use
1128 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001129 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 if (before)
1131 wp->w_vsep_width = 1;
1132 else
1133 {
1134 wp->w_vsep_width = oldwin->w_vsep_width;
1135 oldwin->w_vsep_width = 1;
1136 }
1137 if (flags & (WSP_TOP | WSP_BOT))
1138 {
1139 if (flags & WSP_BOT)
1140 frame_add_vsep(curfrp);
1141 /* Set width of neighbor frame */
1142 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001143 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1144 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 }
1146 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001147 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 if (before) /* new window left of current one */
1149 {
1150 wp->w_wincol = oldwin->w_wincol;
1151 oldwin->w_wincol += new_size + 1;
1152 }
1153 else /* new window right of current one */
1154 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1155 frame_fix_width(oldwin);
1156 frame_fix_width(wp);
1157 }
1158 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 {
1160 /* width and column of new window is same as current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 if (flags & (WSP_TOP | WSP_BOT))
1162 {
1163 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001164 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 wp->w_vsep_width = 0;
1166 }
1167 else
1168 {
1169 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001170 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 wp->w_vsep_width = oldwin->w_vsep_width;
1172 }
1173 frp->fr_width = curfrp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
1175 /* "new_size" of the current window goes to the new window, use
1176 * one row for the status line */
1177 win_new_height(wp, new_size);
1178 if (flags & (WSP_TOP | WSP_BOT))
Bram Moolenaar991dea32016-05-24 11:31:32 +02001179 {
Bram Moolenaard326ad62017-09-18 20:31:41 +02001180 int new_fr_height = curfrp->fr_height - new_size
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01001181 + WINBAR_HEIGHT(wp) ;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001182
1183 if (!((flags & WSP_BOT) && p_ls == 0))
1184 new_fr_height -= STATUS_HEIGHT;
1185 frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, FALSE);
1186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 else
1188 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1189 if (before) /* new window above current one */
1190 {
1191 wp->w_winrow = oldwin->w_winrow;
1192 wp->w_status_height = STATUS_HEIGHT;
1193 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1194 }
1195 else /* new window below current one */
1196 {
Bram Moolenaar415a6932017-12-05 20:31:07 +01001197 wp->w_winrow = oldwin->w_winrow + VISIBLE_HEIGHT(oldwin)
1198 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 wp->w_status_height = oldwin->w_status_height;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001200 if (!(flags & WSP_BOT))
1201 oldwin->w_status_height = STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 if (flags & WSP_BOT)
1204 frame_add_statusline(curfrp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 frame_fix_height(wp);
1206 frame_fix_height(oldwin);
1207 }
1208
1209 if (flags & (WSP_TOP | WSP_BOT))
1210 (void)win_comp_pos();
1211
1212 /*
1213 * Both windows need redrawing
1214 */
1215 redraw_win_later(wp, NOT_VALID);
1216 wp->w_redr_status = TRUE;
1217 redraw_win_later(oldwin, NOT_VALID);
1218 oldwin->w_redr_status = TRUE;
1219
1220 if (need_status)
1221 {
1222 msg_row = Rows - 1;
1223 msg_col = sc_col;
1224 msg_clr_eos_force(); /* Old command/ruler may still be there */
1225 comp_col();
1226 msg_row = Rows - 1;
1227 msg_col = 0; /* put position back at start of line */
1228 }
1229
1230 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001231 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 */
1233 if (do_equal || dir != 0)
1234 win_equal(wp, TRUE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001236 : dir == 'h' ? 'b' : 'v');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
1238 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1239 * size was given. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (flags & WSP_VERT)
1241 {
1242 i = p_wiw;
1243 if (size != 0)
1244 p_wiw = size;
1245
1246# ifdef FEAT_GUI
1247 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1248 if (gui.in_use)
1249 gui_init_which_components(NULL);
1250# endif
1251 }
1252 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 {
1254 i = p_wh;
1255 if (size != 0)
1256 p_wh = size;
1257 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001258
Bram Moolenaar23fb7a92014-07-30 14:05:00 +02001259#ifdef FEAT_JUMPLIST
1260 /* Keep same changelist position in new window. */
1261 wp->w_changelistidx = oldwin->w_changelistidx;
1262#endif
1263
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001264 /*
1265 * make the new window the current window
1266 */
Bram Moolenaarc917da42016-07-19 22:31:36 +02001267 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (flags & WSP_VERT)
1269 p_wiw = i;
1270 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 p_wh = i;
1272
1273 return OK;
1274}
1275
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001276
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001277/*
1278 * Initialize window "newp" from window "oldp".
1279 * Used when splitting a window and when creating a new tab page.
1280 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001281 * WSP_NEWLOC may be specified in flags to prevent the location list from
1282 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001283 */
1284 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001285win_init(win_T *newp, win_T *oldp, int flags UNUSED)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001286{
1287 int i;
1288
1289 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001290#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001291 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001292#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001293 oldp->w_buffer->b_nwindows++;
1294 newp->w_cursor = oldp->w_cursor;
1295 newp->w_valid = 0;
1296 newp->w_curswant = oldp->w_curswant;
1297 newp->w_set_curswant = oldp->w_set_curswant;
1298 newp->w_topline = oldp->w_topline;
1299#ifdef FEAT_DIFF
1300 newp->w_topfill = oldp->w_topfill;
1301#endif
1302 newp->w_leftcol = oldp->w_leftcol;
1303 newp->w_pcmark = oldp->w_pcmark;
1304 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1305 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001306 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001307 newp->w_fraction = oldp->w_fraction;
1308 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1309#ifdef FEAT_JUMPLIST
1310 copy_jumplist(oldp, newp);
1311#endif
1312#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001313 if (flags & WSP_NEWLOC)
1314 {
1315 /* Don't copy the location list. */
1316 newp->w_llist = NULL;
1317 newp->w_llist_ref = NULL;
1318 }
1319 else
Bram Moolenaar09037502018-09-25 22:08:14 +02001320 copy_loclist_stack(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001321#endif
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01001322 newp->w_localdir = (oldp->w_localdir == NULL)
1323 ? NULL : vim_strsave(oldp->w_localdir);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001324
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001325 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001326 for (i = 0; i < oldp->w_tagstacklen; i++)
1327 {
1328 newp->w_tagstack[i] = oldp->w_tagstack[i];
1329 if (newp->w_tagstack[i].tagname != NULL)
1330 newp->w_tagstack[i].tagname =
1331 vim_strsave(newp->w_tagstack[i].tagname);
1332 }
1333 newp->w_tagstackidx = oldp->w_tagstackidx;
1334 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001335#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001336 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001337#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001338
1339 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001340
Bram Moolenaara971b822011-09-14 14:43:25 +02001341#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001342 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001343#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001344}
1345
1346/*
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001347 * Initialize window "newp" from window "old".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001348 * Only the essential things are copied.
1349 */
1350 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001351win_init_some(win_T *newp, win_T *oldp)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001352{
1353 /* Use the same argument list. */
1354 newp->w_alist = oldp->w_alist;
1355 ++newp->w_alist->al_refcount;
1356 newp->w_arg_idx = oldp->w_arg_idx;
1357
1358 /* copy options from existing window */
1359 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001360}
1361
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363/*
Bram Moolenaare59215c2016-08-14 19:08:45 +02001364 * Check if "win" is a pointer to an existing window in the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 */
1366 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001367win_valid(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368{
1369 win_T *wp;
1370
1371 if (win == NULL)
1372 return FALSE;
Bram Moolenaar29323592016-07-24 22:04:11 +02001373 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 if (wp == win)
1375 return TRUE;
1376 return FALSE;
1377}
1378
1379/*
Bram Moolenaare59215c2016-08-14 19:08:45 +02001380 * Check if "win" is a pointer to an existing window in any tab page.
1381 */
1382 int
1383win_valid_any_tab(win_T *win)
1384{
1385 win_T *wp;
1386 tabpage_T *tp;
1387
1388 if (win == NULL)
1389 return FALSE;
1390 FOR_ALL_TABPAGES(tp)
1391 {
1392 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
1393 {
1394 if (wp == win)
1395 return TRUE;
1396 }
1397 }
1398 return FALSE;
1399}
1400
1401/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 * Return the number of windows.
1403 */
1404 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001405win_count(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406{
1407 win_T *wp;
1408 int count = 0;
1409
Bram Moolenaar29323592016-07-24 22:04:11 +02001410 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 ++count;
1412 return count;
1413}
1414
1415/*
1416 * Make "count" windows on the screen.
1417 * Return actual number of windows on the screen.
1418 * Must be called when there is just one window, filling the whole screen
1419 * (excluding the command line).
1420 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001422make_windows(
1423 int count,
1424 int vertical UNUSED) /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425{
1426 int maxcount;
1427 int todo;
1428
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 if (vertical)
1430 {
1431 /* Each windows needs at least 'winminwidth' lines and a separator
1432 * column. */
1433 maxcount = (curwin->w_width + curwin->w_vsep_width
1434 - (p_wiw - p_wmw)) / (p_wmw + 1);
1435 }
1436 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 {
1438 /* Each window needs at least 'winminheight' lines and a status line. */
Bram Moolenaar415a6932017-12-05 20:31:07 +01001439 maxcount = (VISIBLE_HEIGHT(curwin) + curwin->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1441 }
1442
1443 if (maxcount < 2)
1444 maxcount = 2;
1445 if (count > maxcount)
1446 count = maxcount;
1447
1448 /*
1449 * add status line now, otherwise first window will be too big
1450 */
1451 if (count > 1)
1452 last_status(TRUE);
1453
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 /*
1455 * Don't execute autocommands while creating the windows. Must do that
1456 * when putting the buffers in the windows.
1457 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001458 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
1460 /* todo is number of windows left to create */
1461 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 if (vertical)
1463 {
1464 if (win_split(curwin->w_width - (curwin->w_width - todo)
1465 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1466 break;
1467 }
1468 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 {
1470 if (win_split(curwin->w_height - (curwin->w_height - todo
1471 * STATUS_HEIGHT) / (todo + 1)
1472 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1473 break;
1474 }
1475
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001476 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477
1478 /* return actual number of windows */
1479 return (count - todo);
1480}
1481
1482/*
1483 * Exchange current and next window
1484 */
1485 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001486win_exchange(long Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487{
1488 frame_T *frp;
1489 frame_T *frp2;
1490 win_T *wp;
1491 win_T *wp2;
1492 int temp;
1493
Bram Moolenaar459ca562016-11-10 18:16:33 +01001494 if (ONE_WINDOW) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 {
1496 beep_flush();
1497 return;
1498 }
1499
1500#ifdef FEAT_GUI
1501 need_mouse_correct = TRUE;
1502#endif
1503
1504 /*
1505 * find window to exchange with
1506 */
1507 if (Prenum)
1508 {
1509 frp = curwin->w_frame->fr_parent->fr_child;
1510 while (frp != NULL && --Prenum > 0)
1511 frp = frp->fr_next;
1512 }
1513 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1514 frp = curwin->w_frame->fr_next;
1515 else /* Swap last window in row/col with previous */
1516 frp = curwin->w_frame->fr_prev;
1517
1518 /* We can only exchange a window with another window, not with a frame
1519 * containing windows. */
1520 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1521 return;
1522 wp = frp->fr_win;
1523
1524/*
1525 * 1. remove curwin from the list. Remember after which window it was in wp2
1526 * 2. insert curwin before wp in the list
1527 * if wp != wp2
1528 * 3. remove wp from the list
1529 * 4. insert wp after wp2
1530 * 5. exchange the status line height and vsep width.
1531 */
1532 wp2 = curwin->w_prev;
1533 frp2 = curwin->w_frame->fr_prev;
1534 if (wp->w_prev != curwin)
1535 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001536 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 frame_remove(curwin->w_frame);
1538 win_append(wp->w_prev, curwin);
1539 frame_insert(frp, curwin->w_frame);
1540 }
1541 if (wp != wp2)
1542 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001543 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 frame_remove(wp->w_frame);
1545 win_append(wp2, wp);
1546 if (frp2 == NULL)
1547 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1548 else
1549 frame_append(frp2, wp->w_frame);
1550 }
1551 temp = curwin->w_status_height;
1552 curwin->w_status_height = wp->w_status_height;
1553 wp->w_status_height = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 temp = curwin->w_vsep_width;
1555 curwin->w_vsep_width = wp->w_vsep_width;
1556 wp->w_vsep_width = temp;
1557
1558 /* If the windows are not in the same frame, exchange the sizes to avoid
1559 * messing up the window layout. Otherwise fix the frame sizes. */
1560 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1561 {
1562 temp = curwin->w_height;
1563 curwin->w_height = wp->w_height;
1564 wp->w_height = temp;
1565 temp = curwin->w_width;
1566 curwin->w_width = wp->w_width;
1567 wp->w_width = temp;
1568 }
1569 else
1570 {
1571 frame_fix_height(curwin);
1572 frame_fix_height(wp);
1573 frame_fix_width(curwin);
1574 frame_fix_width(wp);
1575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576
1577 (void)win_comp_pos(); /* recompute window positions */
1578
1579 win_enter(wp, TRUE);
1580 redraw_later(CLEAR);
1581}
1582
1583/*
1584 * rotate windows: if upwards TRUE the second window becomes the first one
1585 * if upwards FALSE the first window becomes the second one
1586 */
1587 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001588win_rotate(int upwards, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589{
1590 win_T *wp1;
1591 win_T *wp2;
1592 frame_T *frp;
1593 int n;
1594
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01001595 if (ONE_WINDOW) /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 {
1597 beep_flush();
1598 return;
1599 }
1600
1601#ifdef FEAT_GUI
1602 need_mouse_correct = TRUE;
1603#endif
1604
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 /* Check if all frames in this row/col have one window. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001606 FOR_ALL_FRAMES(frp, curwin->w_frame->fr_parent->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 if (frp->fr_win == NULL)
1608 {
1609 EMSG(_("E443: Cannot rotate when another window is split"));
1610 return;
1611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
1613 while (count--)
1614 {
1615 if (upwards) /* first window becomes last window */
1616 {
1617 /* remove first window/frame from the list */
1618 frp = curwin->w_frame->fr_parent->fr_child;
1619 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001620 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 frame_remove(frp);
1622
1623 /* find last frame and append removed window/frame after it */
1624 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1625 ;
1626 win_append(frp->fr_win, wp1);
1627 frame_append(frp, wp1->w_frame);
1628
1629 wp2 = frp->fr_win; /* previously last window */
1630 }
1631 else /* last window becomes first window */
1632 {
1633 /* find last window/frame in the list and remove it */
1634 for (frp = curwin->w_frame; frp->fr_next != NULL;
1635 frp = frp->fr_next)
1636 ;
1637 wp1 = frp->fr_win;
1638 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001639 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 frame_remove(frp);
1641
1642 /* append the removed window/frame before the first in the list */
1643 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1644 frame_insert(frp->fr_parent->fr_child, frp);
1645 }
1646
1647 /* exchange status height and vsep width of old and new last window */
1648 n = wp2->w_status_height;
1649 wp2->w_status_height = wp1->w_status_height;
1650 wp1->w_status_height = n;
1651 frame_fix_height(wp1);
1652 frame_fix_height(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 n = wp2->w_vsep_width;
1654 wp2->w_vsep_width = wp1->w_vsep_width;
1655 wp1->w_vsep_width = n;
1656 frame_fix_width(wp1);
1657 frame_fix_width(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001659 /* recompute w_winrow and w_wincol for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 (void)win_comp_pos();
1661 }
1662
1663 redraw_later(CLEAR);
1664}
1665
1666/*
1667 * Move the current window to the very top/bottom/left/right of the screen.
1668 */
1669 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001670win_totop(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671{
1672 int dir;
1673 int height = curwin->w_height;
1674
Bram Moolenaar459ca562016-11-10 18:16:33 +01001675 if (ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 {
1677 beep_flush();
1678 return;
1679 }
1680
1681 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001682 (void)winframe_remove(curwin, &dir, NULL);
1683 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 last_status(FALSE); /* may need to remove last status line */
1685 (void)win_comp_pos(); /* recompute window positions */
1686
1687 /* Split a window on the desired side and put the window there. */
1688 (void)win_split_ins(size, flags, curwin, dir);
1689 if (!(flags & WSP_VERT))
1690 {
1691 win_setheight(height);
1692 if (p_ea)
1693 win_equal(curwin, TRUE, 'v');
1694 }
1695
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001696#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1698 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001699 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701}
1702
1703/*
1704 * Move window "win1" to below/right of "win2" and make "win1" the current
1705 * window. Only works within the same frame!
1706 */
1707 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001708win_move_after(win_T *win1, win_T *win2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709{
1710 int height;
1711
1712 /* check if the arguments are reasonable */
1713 if (win1 == win2)
1714 return;
1715
1716 /* check if there is something to do */
1717 if (win2->w_next != win1)
1718 {
1719 /* may need move the status line/vertical separator of the last window
1720 * */
1721 if (win1 == lastwin)
1722 {
1723 height = win1->w_prev->w_status_height;
1724 win1->w_prev->w_status_height = win1->w_status_height;
1725 win1->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001726 if (win1->w_prev->w_vsep_width == 1)
1727 {
1728 /* Remove the vertical separator from the last-but-one window,
1729 * add it to the last window. Adjust the frame widths. */
1730 win1->w_prev->w_vsep_width = 0;
1731 win1->w_prev->w_frame->fr_width -= 1;
1732 win1->w_vsep_width = 1;
1733 win1->w_frame->fr_width += 1;
1734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 }
1736 else if (win2 == lastwin)
1737 {
1738 height = win1->w_status_height;
1739 win1->w_status_height = win2->w_status_height;
1740 win2->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001741 if (win1->w_vsep_width == 1)
1742 {
1743 /* Remove the vertical separator from win1, add it to the last
1744 * window, win2. Adjust the frame widths. */
1745 win2->w_vsep_width = 1;
1746 win2->w_frame->fr_width += 1;
1747 win1->w_vsep_width = 0;
1748 win1->w_frame->fr_width -= 1;
1749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001751 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 frame_remove(win1->w_frame);
1753 win_append(win2, win1);
1754 frame_append(win2->w_frame, win1->w_frame);
1755
1756 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1757 redraw_later(NOT_VALID);
1758 }
1759 win_enter(win1, FALSE);
1760}
1761
1762/*
1763 * Make all windows the same height.
1764 * 'next_curwin' will soon be the current window, make sure it has enough
1765 * rows.
1766 */
1767 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001768win_equal(
1769 win_T *next_curwin, /* pointer to current window to be or NULL */
1770 int current, /* do only frame with current window */
1771 int dir) /* 'v' for vertically, 'h' for horizontally,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 'b' for both, 0 for using p_ead */
1773{
1774 if (dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 dir = *p_ead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001777 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001778 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779}
1780
1781/*
1782 * Set a frame to a new position and height, spreading the available room
1783 * equally over contained frames.
1784 * The window "next_curwin" (if not NULL) should at least get the size from
1785 * 'winheight' and 'winwidth' if possible.
1786 */
1787 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001788win_equal_rec(
1789 win_T *next_curwin, /* pointer to current window to be or NULL */
1790 int current, /* do only frame with current window */
1791 frame_T *topfr, /* frame to set size off */
1792 int dir, /* 'v', 'h' or 'b', see win_equal() */
1793 int col, /* horizontal position for frame */
1794 int row, /* vertical position for frame */
1795 int width, /* new width of frame */
1796 int height) /* new height of frame */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797{
1798 int n, m;
1799 int extra_sep = 0;
1800 int wincount, totwincount = 0;
1801 frame_T *fr;
1802 int next_curwin_size = 0;
1803 int room = 0;
1804 int new_size;
1805 int has_next_curwin = 0;
1806 int hnc;
1807
1808 if (topfr->fr_layout == FR_LEAF)
1809 {
1810 /* Set the width/height of this frame.
1811 * Redraw when size or position changes */
1812 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 )
1815 {
1816 topfr->fr_win->w_winrow = row;
1817 frame_new_height(topfr, height, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001819 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 redraw_all_later(CLEAR);
1821 }
1822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 else if (topfr->fr_layout == FR_ROW)
1824 {
1825 topfr->fr_width = width;
1826 topfr->fr_height = height;
1827
1828 if (dir != 'v') /* equalize frame widths */
1829 {
1830 /* Compute the maximum number of windows horizontally in this
1831 * frame. */
1832 n = frame_minwidth(topfr, NOWIN);
1833 /* add one for the rightmost window, it doesn't have a separator */
1834 if (col + width == Columns)
1835 extra_sep = 1;
1836 else
1837 extra_sep = 0;
1838 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001839 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001841 /*
1842 * Compute width for "next_curwin" window and room available for
1843 * other windows.
1844 * "m" is the minimal width when counting p_wiw for "next_curwin".
1845 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 m = frame_minwidth(topfr, next_curwin);
1847 room = width - m;
1848 if (room < 0)
1849 {
1850 next_curwin_size = p_wiw + room;
1851 room = 0;
1852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 else
1854 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001855 next_curwin_size = -1;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001856 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001857 {
1858 /* If 'winfixwidth' set keep the window width if
1859 * possible.
1860 * Watch out for this window being the next_curwin. */
1861 if (frame_fixed_width(fr))
1862 {
1863 n = frame_minwidth(fr, NOWIN);
1864 new_size = fr->fr_width;
1865 if (frame_has_win(fr, next_curwin))
1866 {
1867 room += p_wiw - p_wmw;
1868 next_curwin_size = 0;
1869 if (new_size < p_wiw)
1870 new_size = p_wiw;
1871 }
1872 else
1873 /* These windows don't use up room. */
1874 totwincount -= (n + (fr->fr_next == NULL
1875 ? extra_sep : 0)) / (p_wmw + 1);
1876 room -= new_size - n;
1877 if (room < 0)
1878 {
1879 new_size += room;
1880 room = 0;
1881 }
1882 fr->fr_newwidth = new_size;
1883 }
1884 }
1885 if (next_curwin_size == -1)
1886 {
1887 if (!has_next_curwin)
1888 next_curwin_size = 0;
1889 else if (totwincount > 1
1890 && (room + (totwincount - 2))
1891 / (totwincount - 1) > p_wiw)
1892 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001893 /* Can make all windows wider than 'winwidth', spread
1894 * the room equally. */
1895 next_curwin_size = (room + p_wiw
1896 + (totwincount - 1) * p_wmw
1897 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001898 room -= next_curwin_size - p_wiw;
1899 }
1900 else
1901 next_curwin_size = p_wiw;
1902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001904
1905 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 --totwincount; /* don't count curwin */
1907 }
1908
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001909 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 wincount = 1;
1912 if (fr->fr_next == NULL)
1913 /* last frame gets all that remains (avoid roundoff error) */
1914 new_size = width;
1915 else if (dir == 'v')
1916 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001917 else if (frame_fixed_width(fr))
1918 {
1919 new_size = fr->fr_newwidth;
1920 wincount = 0; /* doesn't count as a sizeable window */
1921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 else
1923 {
1924 /* Compute the maximum number of windows horiz. in "fr". */
1925 n = frame_minwidth(fr, NOWIN);
1926 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1927 / (p_wmw + 1);
1928 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001929 if (has_next_curwin)
1930 hnc = frame_has_win(fr, next_curwin);
1931 else
1932 hnc = FALSE;
1933 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001935 if (totwincount == 0)
1936 new_size = room;
1937 else
1938 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001940 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 {
1942 next_curwin_size -= p_wiw - (m - n);
1943 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001944 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001946 else
1947 room -= new_size;
1948 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 }
1950
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001951 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 * window, unless equalizing all frames. */
1953 if (!current || dir != 'v' || topfr->fr_parent != NULL
1954 || (new_size != fr->fr_width)
1955 || frame_has_win(fr, next_curwin))
1956 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001957 new_size, height);
1958 col += new_size;
1959 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 totwincount -= wincount;
1961 }
1962 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 else /* topfr->fr_layout == FR_COL */
1964 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 topfr->fr_width = width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 topfr->fr_height = height;
1967
1968 if (dir != 'h') /* equalize frame heights */
1969 {
1970 /* Compute maximum number of windows vertically in this frame. */
1971 n = frame_minheight(topfr, NOWIN);
1972 /* add one for the bottom window if it doesn't have a statusline */
1973 if (row + height == cmdline_row && p_ls == 0)
1974 extra_sep = 1;
1975 else
1976 extra_sep = 0;
1977 totwincount = (n + extra_sep) / (p_wmh + 1);
1978 has_next_curwin = frame_has_win(topfr, next_curwin);
1979
1980 /*
1981 * Compute height for "next_curwin" window and room available for
1982 * other windows.
1983 * "m" is the minimal height when counting p_wh for "next_curwin".
1984 */
1985 m = frame_minheight(topfr, next_curwin);
1986 room = height - m;
1987 if (room < 0)
1988 {
1989 /* The room is less then 'winheight', use all space for the
1990 * current window. */
1991 next_curwin_size = p_wh + room;
1992 room = 0;
1993 }
1994 else
1995 {
1996 next_curwin_size = -1;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01001997 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 {
1999 /* If 'winfixheight' set keep the window height if
2000 * possible.
2001 * Watch out for this window being the next_curwin. */
2002 if (frame_fixed_height(fr))
2003 {
2004 n = frame_minheight(fr, NOWIN);
2005 new_size = fr->fr_height;
2006 if (frame_has_win(fr, next_curwin))
2007 {
2008 room += p_wh - p_wmh;
2009 next_curwin_size = 0;
2010 if (new_size < p_wh)
2011 new_size = p_wh;
2012 }
2013 else
2014 /* These windows don't use up room. */
2015 totwincount -= (n + (fr->fr_next == NULL
2016 ? extra_sep : 0)) / (p_wmh + 1);
2017 room -= new_size - n;
2018 if (room < 0)
2019 {
2020 new_size += room;
2021 room = 0;
2022 }
2023 fr->fr_newheight = new_size;
2024 }
2025 }
2026 if (next_curwin_size == -1)
2027 {
2028 if (!has_next_curwin)
2029 next_curwin_size = 0;
2030 else if (totwincount > 1
2031 && (room + (totwincount - 2))
2032 / (totwincount - 1) > p_wh)
2033 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002034 /* can make all windows higher than 'winheight',
2035 * spread the room equally. */
2036 next_curwin_size = (room + p_wh
2037 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 + (totwincount - 1)) / totwincount;
2039 room -= next_curwin_size - p_wh;
2040 }
2041 else
2042 next_curwin_size = p_wh;
2043 }
2044 }
2045
2046 if (has_next_curwin)
2047 --totwincount; /* don't count curwin */
2048 }
2049
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002050 FOR_ALL_FRAMES(fr, topfr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 wincount = 1;
2053 if (fr->fr_next == NULL)
2054 /* last frame gets all that remains (avoid roundoff error) */
2055 new_size = height;
2056 else if (dir == 'h')
2057 new_size = fr->fr_height;
2058 else if (frame_fixed_height(fr))
2059 {
2060 new_size = fr->fr_newheight;
2061 wincount = 0; /* doesn't count as a sizeable window */
2062 }
2063 else
2064 {
2065 /* Compute the maximum number of windows vert. in "fr". */
2066 n = frame_minheight(fr, NOWIN);
2067 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2068 / (p_wmh + 1);
2069 m = frame_minheight(fr, next_curwin);
2070 if (has_next_curwin)
2071 hnc = frame_has_win(fr, next_curwin);
2072 else
2073 hnc = FALSE;
2074 if (hnc) /* don't count next_curwin */
2075 --wincount;
2076 if (totwincount == 0)
2077 new_size = room;
2078 else
2079 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2080 / totwincount;
2081 if (hnc) /* add next_curwin size */
2082 {
2083 next_curwin_size -= p_wh - (m - n);
2084 new_size += next_curwin_size;
2085 room -= new_size - next_curwin_size;
2086 }
2087 else
2088 room -= new_size;
2089 new_size += n;
2090 }
2091 /* Skip frame that is full width when splitting or closing a
2092 * window, unless equalizing all frames. */
2093 if (!current || dir != 'h' || topfr->fr_parent != NULL
2094 || (new_size != fr->fr_height)
2095 || frame_has_win(fr, next_curwin))
2096 win_equal_rec(next_curwin, current, fr, dir, col, row,
2097 width, new_size);
2098 row += new_size;
2099 height -= new_size;
2100 totwincount -= wincount;
2101 }
2102 }
2103}
2104
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002105#ifdef FEAT_JOB_CHANNEL
2106 static void
2107leaving_window(win_T *win)
2108{
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002109 // Only matters for a prompt window.
2110 if (!bt_prompt(win->w_buffer))
2111 return;
2112
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002113 // When leaving a prompt window stop Insert mode and perhaps restart
2114 // it when entering that window again.
2115 win->w_buffer->b_prompt_insert = restart_edit;
Bram Moolenaar942b4542018-06-17 16:23:34 +02002116 if (restart_edit != 0 && mode_displayed)
2117 clear_cmdline = TRUE; /* unshow mode later */
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002118 restart_edit = NUL;
2119
2120 // When leaving the window (or closing the window) was done from a
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002121 // callback we need to break out of the Insert mode loop and restart Insert
2122 // mode when entering the window again.
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002123 if (State & INSERT)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002124 {
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002125 stop_insert_mode = TRUE;
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002126 if (win->w_buffer->b_prompt_insert == NUL)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002127 win->w_buffer->b_prompt_insert = 'A';
2128 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002129}
2130
2131 static void
2132entering_window(win_T *win)
2133{
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002134 // Only matters for a prompt window.
2135 if (!bt_prompt(win->w_buffer))
2136 return;
2137
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002138 // When switching to a prompt buffer that was in Insert mode, don't stop
2139 // Insert mode, it may have been set in leaving_window().
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002140 if (win->w_buffer->b_prompt_insert != NUL)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002141 stop_insert_mode = FALSE;
2142
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002143 // When entering the prompt window restart Insert mode if we were in Insert
2144 // mode when we left it.
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002145 restart_edit = win->w_buffer->b_prompt_insert;
2146}
2147#endif
2148
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002150 * Close all windows for buffer "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 */
2152 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002153close_windows(
2154 buf_T *buf,
2155 int keep_curwin) /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002157 win_T *wp;
2158 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002159 int h = tabline_height();
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002160 int count = tabpage_index(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161
2162 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002163
Bram Moolenaar459ca562016-11-10 18:16:33 +01002164 for (wp = firstwin; wp != NULL && !ONE_WINDOW; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002166 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002167 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 {
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002169 if (win_close(wp, FALSE) == FAIL)
2170 /* If closing the window fails give up, to avoid looping
2171 * forever. */
2172 break;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002173
2174 /* Start all over, autocommands may change the window layout. */
2175 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 }
2177 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002178 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002180
2181 /* Also check windows in other tab pages. */
2182 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2183 {
2184 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002185 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002186 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002187 if (wp->w_buffer == buf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002188 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaarf740b292006-02-16 22:11:02 +00002189 {
2190 win_close_othertab(wp, FALSE, tp);
2191
2192 /* Start all over, the tab page may be closed and
2193 * autocommands may change the window layout. */
2194 nexttp = first_tabpage;
2195 break;
2196 }
2197 }
2198
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002200
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002201 if (count != tabpage_index(NULL))
2202 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002203
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002204 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002205 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002206 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207}
2208
2209/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002210 * Return TRUE if the current window is the only window that exists (ignoring
2211 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002212 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002213 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002214 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002215last_window(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002216{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002217 return (one_window() && first_tabpage->tp_next == NULL);
2218}
2219
2220/*
2221 * Return TRUE if there is only one window other than "aucmd_win" in the
2222 * current tab page.
2223 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002224 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002225one_window(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002226{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002227 win_T *wp;
2228 int seen_one = FALSE;
2229
2230 FOR_ALL_WINDOWS(wp)
2231 {
2232 if (wp != aucmd_win)
2233 {
2234 if (seen_one)
2235 return FALSE;
2236 seen_one = TRUE;
2237 }
2238 }
2239 return TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002240}
2241
2242/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002243 * Close the possibly last window in a tab page.
2244 * Returns TRUE when the window was closed already.
2245 */
2246 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002247close_last_window_tabpage(
2248 win_T *win,
2249 int free_buf,
2250 tabpage_T *prev_curtab)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002251{
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002252 if (ONE_WINDOW)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002253 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002254 buf_T *old_curbuf = curbuf;
2255
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002256 /*
2257 * Closing the last window in a tab page. First go to another tab
2258 * page and then close the window and the tab page. This avoids that
2259 * curwin and curtab are invalid while we are freeing memory, they may
2260 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002261 * Don't trigger autocommands yet, they may use wrong values, so do
2262 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002263 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002264 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002265 redraw_tabline = TRUE;
2266
2267 /* Safety check: Autocommands may have closed the window when jumping
2268 * to the other tab page. */
2269 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2270 {
2271 int h = tabline_height();
2272
2273 win_close_othertab(win, free_buf, prev_curtab);
2274 if (h != tabline_height())
2275 shell_new_rows();
2276 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002277#ifdef FEAT_JOB_CHANNEL
2278 entering_window(curwin);
2279#endif
Bram Moolenaara8596c42012-06-13 14:28:20 +02002280 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2281 * that now. */
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002282 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002283 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002284 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2285 if (old_curbuf != curbuf)
2286 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002287 return TRUE;
2288 }
2289 return FALSE;
2290}
2291
2292/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002293 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 * If "free_buf" is TRUE related buffer may be unloaded.
2295 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002296 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002297 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002299 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002300win_close(win_T *win, int free_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301{
2302 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 int other_buffer = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 int dir;
2306 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002307 tabpage_T *prev_curtab = curtab;
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002308 frame_T *win_frame = win->w_frame->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002310 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 {
2312 EMSG(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002313 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 }
2315
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002316 if (win->w_closing || (win->w_buffer != NULL
2317 && win->w_buffer->b_locked > 0))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002318 return FAIL; /* window is already being closed */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002319 if (win == aucmd_win)
2320 {
2321 EMSG(_("E813: Cannot close autocmd window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002322 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002323 }
2324 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2325 {
2326 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002327 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002328 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002329
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002330 /* When closing the last window in a tab page first go to another tab page
2331 * and then close the window and the tab page to avoid that curwin and
2332 * curtab are invalid while we are freeing memory. */
2333 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002334 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002335
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 /* When closing the help window, try restoring a snapshot after closing
2337 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002338 if (bt_help(win->w_buffer))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 help_window = TRUE;
2340 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002341 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 if (win == curwin)
2344 {
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002345#ifdef FEAT_JOB_CHANNEL
2346 leaving_window(curwin);
2347#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 /*
2349 * Guess which window is going to be the new current window.
2350 * This may change because of the autocommands (sigh).
2351 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002352 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353
2354 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002355 * Be careful: If autocommands delete the window or cause this window
2356 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 */
2358 if (wp->w_buffer != curbuf)
2359 {
2360 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002361 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002363 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002364 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002365 win->w_closing = FALSE;
2366 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002367 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002369 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002371 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002372 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002373 win->w_closing = FALSE;
2374 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002375 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002376#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 /* autocmds may abort script processing */
2378 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002379 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002381 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002383#ifdef FEAT_GUI
2384 /* Avoid trouble with scrollbars that are going to be deleted in
2385 * win_free(). */
2386 if (gui.in_use)
2387 out_flush();
2388#endif
2389
Bram Moolenaara971b822011-09-14 14:43:25 +02002390#ifdef FEAT_SYN_HL
2391 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002392 if (win->w_buffer != NULL)
2393 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002394#endif
2395
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 /*
2397 * Close the link to the buffer.
2398 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002399 if (win->w_buffer != NULL)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002400 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002401 bufref_T bufref;
2402
2403 set_bufref(&bufref, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002404 win->w_closing = TRUE;
Bram Moolenaar8f913992012-08-29 15:50:26 +02002405 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002406 if (win_valid_any_tab(win))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002407 win->w_closing = FALSE;
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002408 /* Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2409 * "wipe". */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002410 if (!bufref_valid(&bufref))
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002411 curbuf = firstbuf;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002412 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002413
Bram Moolenaar802418d2013-01-17 14:00:11 +01002414 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2415 && (last_window() || curtab != prev_curtab
2416 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002417 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002418 /* Autocommands have closed all windows, quit now. Restore
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002419 * curwin->w_buffer, otherwise writing viminfo may fail. */
2420 if (curwin->w_buffer == NULL)
2421 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002422 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002423 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002424
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002425 /* Autocommands may have moved to another tab page. */
2426 if (curtab != prev_curtab && win_valid_any_tab(win)
2427 && win->w_buffer == NULL)
2428 {
2429 /* Need to close the window anyway, since the buffer is NULL. */
2430 win_close_othertab(win, FALSE, prev_curtab);
2431 return FAIL;
2432 }
2433
2434 /* Autocommands may have closed the window already or closed the only
2435 * other window. */
2436 if (!win_valid(win) || last_window()
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002437 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002438 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
Bram Moolenaara971b822011-09-14 14:43:25 +02002440 /* Free the memory used for the window and get the window that received
2441 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002442 wp = win_free_mem(win, &dir, NULL);
2443
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 /* Make sure curwin isn't invalid. It can cause severe trouble when
2445 * printing an error message. For win_equal() curbuf needs to be valid
2446 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002447 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 {
2449 curwin = wp;
2450#ifdef FEAT_QUICKFIX
2451 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2452 {
2453 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002454 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 * finding another window to go to.
2456 */
2457 for (;;)
2458 {
2459 if (wp->w_next == NULL)
2460 wp = firstwin;
2461 else
2462 wp = wp->w_next;
2463 if (wp == curwin)
2464 break;
2465 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2466 {
2467 curwin = wp;
2468 break;
2469 }
2470 }
2471 }
2472#endif
2473 curbuf = curwin->w_buffer;
2474 close_curwin = TRUE;
Bram Moolenaarf79225e2017-03-18 23:11:04 +01002475
2476 /* The cursor position may be invalid if the buffer changed after last
2477 * using the window. */
2478 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002480 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
Bram Moolenaar8eeeba82017-06-25 22:45:39 +02002481 /* If the frame of the closed window contains the new current window,
2482 * only resize that frame. Otherwise resize all windows. */
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002483 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 else
2485 win_comp_pos();
2486 if (close_curwin)
2487 {
Bram Moolenaarc917da42016-07-19 22:31:36 +02002488 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 if (other_buffer)
2490 /* careful: after this wp and win may be invalid! */
2491 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 }
2493
2494 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002495 * If last window has a status line now and we don't want one,
2496 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 */
2498 last_status(FALSE);
2499
2500 /* After closing the help window, try restoring the window layout from
2501 * before it was opened. */
2502 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002503 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002505#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2507 if (gui.in_use && !win_hasvertsplit())
2508 gui_init_which_components(NULL);
2509#endif
2510
2511 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002512 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513}
2514
2515/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002516 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002517 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002518 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002519 * Caller must check if buffer is hidden and whether the tabline needs to be
2520 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002521 */
2522 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002523win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002524{
2525 win_T *wp;
2526 int dir;
2527 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002528 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002529
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002530 /* Get here with win->w_buffer == NULL when win_close() detects the tab
2531 * page changed. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002532 if (win->w_closing || (win->w_buffer != NULL
2533 && win->w_buffer->b_locked > 0))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002534 return; /* window is already being closed */
Bram Moolenaar362ce482012-06-06 19:02:45 +02002535
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002536 if (win->w_buffer != NULL)
2537 /* Close the link to the buffer. */
2538 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002539
2540 /* Careful: Autocommands may have closed the tab page or made it the
2541 * current tab page. */
2542 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2543 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002544 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002545 return;
2546
2547 /* Autocommands may have closed the window already. */
2548 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2549 ;
2550 if (wp == NULL)
2551 return;
2552
Bram Moolenaarf740b292006-02-16 22:11:02 +00002553 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002554 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002555 {
2556 if (tp == first_tabpage)
2557 first_tabpage = tp->tp_next;
2558 else
2559 {
2560 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2561 ptp = ptp->tp_next)
2562 ;
2563 if (ptp == NULL)
2564 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01002565 internal_error("win_close_othertab()");
Bram Moolenaarf740b292006-02-16 22:11:02 +00002566 return;
2567 }
2568 ptp->tp_next = tp->tp_next;
2569 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002570 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002571 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002572
2573 /* Free the memory used for the window. */
2574 win_free_mem(win, &dir, tp);
2575
2576 if (free_tp)
2577 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002578}
2579
2580/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002581 * Free the memory used for a window.
2582 * Returns a pointer to the window that got the freed up space.
2583 */
2584 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002585win_free_mem(
2586 win_T *win,
2587 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2588 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002589{
2590 frame_T *frp;
2591 win_T *wp;
2592
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002593 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002594 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002595 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002596 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002597 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002598
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002599 /* When deleting the current window of another tab page select a new
2600 * current window. */
2601 if (tp != NULL && win == tp->tp_curwin)
2602 tp->tp_curwin = wp;
2603
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002604 return wp;
2605}
2606
2607#if defined(EXITFREE) || defined(PROTO)
2608 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002609win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002610{
2611 int dummy;
2612
Bram Moolenaarf740b292006-02-16 22:11:02 +00002613 while (first_tabpage->tp_next != NULL)
2614 tabpage_close(TRUE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002615
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002616 if (aucmd_win != NULL)
2617 {
2618 (void)win_free_mem(aucmd_win, &dummy, NULL);
2619 aucmd_win = NULL;
2620 }
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002621
2622 while (firstwin != NULL)
2623 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002624
2625 /* No window should be used after this. Set curwin to NULL to crash
2626 * instead of using freed memory. */
2627 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002628}
2629#endif
2630
2631/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 * Remove a window and its frame from the tree of frames.
2633 * Returns a pointer to the window that got the freed up space.
2634 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002635 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002636winframe_remove(
2637 win_T *win,
2638 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2639 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641 frame_T *frp, *frp2, *frp3;
2642 frame_T *frp_close = win->w_frame;
2643 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644
2645 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002646 * If there is only one window there is nothing to remove.
2647 */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002648 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002649 return NULL;
2650
2651 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 * Remove the window from its frame.
2653 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002654 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 wp = frame2win(frp2);
2656
2657 /* Remove this frame from the list of frames. */
2658 frame_remove(frp_close);
2659
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 if (frp_close->fr_parent->fr_layout == FR_COL)
2661 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002662 /* When 'winfixheight' is set, try to find another frame in the column
2663 * (as close to the closed frame as possible) to distribute the height
2664 * to. */
2665 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2666 {
2667 frp = frp_close->fr_prev;
2668 frp3 = frp_close->fr_next;
2669 while (frp != NULL || frp3 != NULL)
2670 {
2671 if (frp != NULL)
2672 {
2673 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2674 {
2675 frp2 = frp;
2676 wp = frp->fr_win;
2677 break;
2678 }
2679 frp = frp->fr_prev;
2680 }
2681 if (frp3 != NULL)
2682 {
2683 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2684 {
2685 frp2 = frp3;
2686 wp = frp3->fr_win;
2687 break;
2688 }
2689 frp3 = frp3->fr_next;
2690 }
2691 }
2692 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2694 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 *dirp = 'v';
2696 }
2697 else
2698 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002699 /* When 'winfixwidth' is set, try to find another frame in the column
2700 * (as close to the closed frame as possible) to distribute the width
2701 * to. */
2702 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
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 {
2710 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2711 {
2712 frp2 = frp;
2713 wp = frp->fr_win;
2714 break;
2715 }
2716 frp = frp->fr_prev;
2717 }
2718 if (frp3 != NULL)
2719 {
2720 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
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_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002731 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 *dirp = 'h';
2733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734
2735 /* If rows/columns go to a window below/right its positions need to be
2736 * updated. Can only be done after the sizes have been updated. */
2737 if (frp2 == frp_close->fr_next)
2738 {
2739 int row = win->w_winrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02002740 int col = win->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741
2742 frame_comp_pos(frp2, &row, &col);
2743 }
2744
2745 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2746 {
2747 /* There is no other frame in this list, move its info to the parent
2748 * and remove it. */
2749 frp2->fr_parent->fr_layout = frp2->fr_layout;
2750 frp2->fr_parent->fr_child = frp2->fr_child;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002751 FOR_ALL_FRAMES(frp, frp2->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 frp->fr_parent = frp2->fr_parent;
2753 frp2->fr_parent->fr_win = frp2->fr_win;
2754 if (frp2->fr_win != NULL)
2755 frp2->fr_win->w_frame = frp2->fr_parent;
2756 frp = frp2->fr_parent;
Bram Moolenaar6f361c92018-01-31 19:06:50 +01002757 if (topframe->fr_child == frp2)
2758 topframe->fr_child = frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 vim_free(frp2);
2760
2761 frp2 = frp->fr_parent;
2762 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2763 {
2764 /* The frame above the parent has the same layout, have to merge
2765 * the frames into this list. */
2766 if (frp2->fr_child == frp)
2767 frp2->fr_child = frp->fr_child;
2768 frp->fr_child->fr_prev = frp->fr_prev;
2769 if (frp->fr_prev != NULL)
2770 frp->fr_prev->fr_next = frp->fr_child;
2771 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2772 {
2773 frp3->fr_parent = frp2;
2774 if (frp3->fr_next == NULL)
2775 {
2776 frp3->fr_next = frp->fr_next;
2777 if (frp->fr_next != NULL)
2778 frp->fr_next->fr_prev = frp3;
2779 break;
2780 }
2781 }
Bram Moolenaar6f361c92018-01-31 19:06:50 +01002782 if (topframe->fr_child == frp)
2783 topframe->fr_child = frp2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 vim_free(frp);
2785 }
2786 }
2787
2788 return wp;
2789}
2790
2791/*
Bram Moolenaarc136af22018-05-04 20:15:38 +02002792 * Return a pointer to the frame that will receive the empty screen space that
2793 * is left over after "win" is closed.
2794 *
2795 * If 'splitbelow' or 'splitright' is set, the space goes above or to the left
2796 * by default. Otherwise, the free space goes below or to the right. The
2797 * result is that opening a window and then immediately closing it will
2798 * preserve the initial window layout. The 'wfh' and 'wfw' settings are
2799 * respected when possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 */
2801 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002802win_altframe(
2803 win_T *win,
2804 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805{
2806 frame_T *frp;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002807 frame_T *other_fr, *target_fr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002809 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002810 return alt_tabpage()->tp_curwin->w_frame;
2811
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 frp = win->w_frame;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002813
2814 if (frp->fr_prev == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 return frp->fr_next;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002816 if (frp->fr_next == NULL)
2817 return frp->fr_prev;
2818
2819 target_fr = frp->fr_next;
2820 other_fr = frp->fr_prev;
2821 if (p_spr || p_sb)
2822 {
2823 target_fr = frp->fr_prev;
2824 other_fr = frp->fr_next;
2825 }
2826
2827 /* If 'wfh' or 'wfw' is set for the target and not for the alternate
2828 * window, reverse the selection. */
2829 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
2830 {
2831 if (frame_fixed_width(target_fr) && !frame_fixed_width(other_fr))
2832 target_fr = other_fr;
2833 }
2834 else
2835 {
2836 if (frame_fixed_height(target_fr) && !frame_fixed_height(other_fr))
2837 target_fr = other_fr;
2838 }
2839
2840 return target_fr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841}
2842
2843/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002844 * Return the tabpage that will be used if the current one is closed.
2845 */
2846 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002847alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002848{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002849 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002850
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002851 /* Use the next tab page if possible. */
2852 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002853 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002854
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002855 /* Find the last but one tab page. */
2856 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2857 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002858 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002859}
2860
2861/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 * Find the left-upper window in frame "frp".
2863 */
2864 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002865frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866{
2867 while (frp->fr_win == NULL)
2868 frp = frp->fr_child;
2869 return frp->fr_win;
2870}
2871
2872/*
2873 * Return TRUE if frame "frp" contains window "wp".
2874 */
2875 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002876frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
2878 frame_T *p;
2879
2880 if (frp->fr_layout == FR_LEAF)
2881 return frp->fr_win == wp;
2882
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002883 FOR_ALL_FRAMES(p, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 if (frame_has_win(p, wp))
2885 return TRUE;
2886 return FALSE;
2887}
2888
2889/*
2890 * Set a new height for a frame. Recursively sets the height for contained
2891 * frames and windows. Caller must take care of positions.
2892 */
2893 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002894frame_new_height(
2895 frame_T *topfrp,
2896 int height,
2897 int topfirst, /* resize topmost contained frame first */
2898 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 may cause the height not to be set */
2900{
2901 frame_T *frp;
2902 int extra_lines;
2903 int h;
2904
2905 if (topfrp->fr_win != NULL)
2906 {
2907 /* Simple case: just one window. */
2908 win_new_height(topfrp->fr_win,
Bram Moolenaard326ad62017-09-18 20:31:41 +02002909 height - topfrp->fr_win->w_status_height
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01002910 - WINBAR_HEIGHT(topfrp->fr_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 else if (topfrp->fr_layout == FR_ROW)
2913 {
2914 do
2915 {
2916 /* All frames in this row get the same new height. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01002917 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 {
2919 frame_new_height(frp, height, topfirst, wfh);
2920 if (frp->fr_height > height)
2921 {
2922 /* Could not fit the windows, make the whole row higher. */
2923 height = frp->fr_height;
2924 break;
2925 }
2926 }
2927 }
2928 while (frp != NULL);
2929 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002930 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 {
2932 /* Complicated case: Resize a column of frames. Resize the bottom
2933 * frame first, frames above that when needed. */
2934
2935 frp = topfrp->fr_child;
2936 if (wfh)
2937 /* Advance past frames with one window with 'wfh' set. */
2938 while (frame_fixed_height(frp))
2939 {
2940 frp = frp->fr_next;
2941 if (frp == NULL)
2942 return; /* no frame without 'wfh', give up */
2943 }
2944 if (!topfirst)
2945 {
2946 /* Find the bottom frame of this column */
2947 while (frp->fr_next != NULL)
2948 frp = frp->fr_next;
2949 if (wfh)
2950 /* Advance back for frames with one window with 'wfh' set. */
2951 while (frame_fixed_height(frp))
2952 frp = frp->fr_prev;
2953 }
2954
2955 extra_lines = height - topfrp->fr_height;
2956 if (extra_lines < 0)
2957 {
2958 /* reduce height of contained frames, bottom or top frame first */
2959 while (frp != NULL)
2960 {
2961 h = frame_minheight(frp, NULL);
2962 if (frp->fr_height + extra_lines < h)
2963 {
2964 extra_lines += frp->fr_height - h;
2965 frame_new_height(frp, h, topfirst, wfh);
2966 }
2967 else
2968 {
2969 frame_new_height(frp, frp->fr_height + extra_lines,
2970 topfirst, wfh);
2971 break;
2972 }
2973 if (topfirst)
2974 {
2975 do
2976 frp = frp->fr_next;
2977 while (wfh && frp != NULL && frame_fixed_height(frp));
2978 }
2979 else
2980 {
2981 do
2982 frp = frp->fr_prev;
2983 while (wfh && frp != NULL && frame_fixed_height(frp));
2984 }
2985 /* Increase "height" if we could not reduce enough frames. */
2986 if (frp == NULL)
2987 height -= extra_lines;
2988 }
2989 }
2990 else if (extra_lines > 0)
2991 {
2992 /* increase height of bottom or top frame */
2993 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2994 }
2995 }
2996 topfrp->fr_height = height;
2997}
2998
2999/*
3000 * Return TRUE if height of frame "frp" should not be changed because of
3001 * the 'winfixheight' option.
3002 */
3003 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003004frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005{
3006 /* frame with one window: fixed height if 'winfixheight' set. */
3007 if (frp->fr_win != NULL)
3008 return frp->fr_win->w_p_wfh;
3009
3010 if (frp->fr_layout == FR_ROW)
3011 {
3012 /* The frame is fixed height if one of the frames in the row is fixed
3013 * height. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003014 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 if (frame_fixed_height(frp))
3016 return TRUE;
3017 return FALSE;
3018 }
3019
3020 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
3021 * frames in the row are fixed height. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003022 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 if (!frame_fixed_height(frp))
3024 return FALSE;
3025 return TRUE;
3026}
3027
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003029 * Return TRUE if width of frame "frp" should not be changed because of
3030 * the 'winfixwidth' option.
3031 */
3032 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003033frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003034{
3035 /* frame with one window: fixed width if 'winfixwidth' set. */
3036 if (frp->fr_win != NULL)
3037 return frp->fr_win->w_p_wfw;
3038
3039 if (frp->fr_layout == FR_COL)
3040 {
3041 /* The frame is fixed width if one of the frames in the row is fixed
3042 * width. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003043 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003044 if (frame_fixed_width(frp))
3045 return TRUE;
3046 return FALSE;
3047 }
3048
3049 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
3050 * frames in the row are fixed width. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003051 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003052 if (!frame_fixed_width(frp))
3053 return FALSE;
3054 return TRUE;
3055}
3056
3057/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 * Add a status line to windows at the bottom of "frp".
3059 * Note: Does not check if there is room!
3060 */
3061 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003062frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063{
3064 win_T *wp;
3065
3066 if (frp->fr_layout == FR_LEAF)
3067 {
3068 wp = frp->fr_win;
3069 if (wp->w_status_height == 0)
3070 {
3071 if (wp->w_height > 0) /* don't make it negative */
3072 --wp->w_height;
3073 wp->w_status_height = STATUS_HEIGHT;
3074 }
3075 }
3076 else if (frp->fr_layout == FR_ROW)
3077 {
3078 /* Handle all the frames in the row. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003079 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 frame_add_statusline(frp);
3081 }
3082 else /* frp->fr_layout == FR_COL */
3083 {
3084 /* Only need to handle the last frame in the column. */
3085 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
3086 ;
3087 frame_add_statusline(frp);
3088 }
3089}
3090
3091/*
3092 * Set width of a frame. Handles recursively going through contained frames.
3093 * May remove separator line for windows at the right side (for win_close()).
3094 */
3095 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003096frame_new_width(
3097 frame_T *topfrp,
3098 int width,
3099 int leftfirst, /* resize leftmost contained frame first */
3100 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003101 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102{
3103 frame_T *frp;
3104 int extra_cols;
3105 int w;
3106 win_T *wp;
3107
3108 if (topfrp->fr_layout == FR_LEAF)
3109 {
3110 /* Simple case: just one window. */
3111 wp = topfrp->fr_win;
3112 /* Find out if there are any windows right of this one. */
3113 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3114 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3115 break;
3116 if (frp->fr_parent == NULL)
3117 wp->w_vsep_width = 0;
3118 win_new_width(wp, width - wp->w_vsep_width);
3119 }
3120 else if (topfrp->fr_layout == FR_COL)
3121 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003122 do
3123 {
3124 /* All frames in this column get the same new width. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003125 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003126 {
3127 frame_new_width(frp, width, leftfirst, wfw);
3128 if (frp->fr_width > width)
3129 {
3130 /* Could not fit the windows, make whole column wider. */
3131 width = frp->fr_width;
3132 break;
3133 }
3134 }
3135 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 }
3137 else /* fr_layout == FR_ROW */
3138 {
3139 /* Complicated case: Resize a row of frames. Resize the rightmost
3140 * frame first, frames left of it when needed. */
3141
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003143 if (wfw)
3144 /* Advance past frames with one window with 'wfw' set. */
3145 while (frame_fixed_width(frp))
3146 {
3147 frp = frp->fr_next;
3148 if (frp == NULL)
3149 return; /* no frame without 'wfw', give up */
3150 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003152 {
3153 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 while (frp->fr_next != NULL)
3155 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003156 if (wfw)
3157 /* Advance back for frames with one window with 'wfw' set. */
3158 while (frame_fixed_width(frp))
3159 frp = frp->fr_prev;
3160 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161
3162 extra_cols = width - topfrp->fr_width;
3163 if (extra_cols < 0)
3164 {
3165 /* reduce frame width, rightmost frame first */
3166 while (frp != NULL)
3167 {
3168 w = frame_minwidth(frp, NULL);
3169 if (frp->fr_width + extra_cols < w)
3170 {
3171 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003172 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 }
3174 else
3175 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003176 frame_new_width(frp, frp->fr_width + extra_cols,
3177 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 break;
3179 }
3180 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003181 {
3182 do
3183 frp = frp->fr_next;
3184 while (wfw && frp != NULL && frame_fixed_width(frp));
3185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003187 {
3188 do
3189 frp = frp->fr_prev;
3190 while (wfw && frp != NULL && frame_fixed_width(frp));
3191 }
3192 /* Increase "width" if we could not reduce enough frames. */
3193 if (frp == NULL)
3194 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 }
3196 }
3197 else if (extra_cols > 0)
3198 {
3199 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003200 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 }
3202 }
3203 topfrp->fr_width = width;
3204}
3205
3206/*
3207 * Add the vertical separator to windows at the right side of "frp".
3208 * Note: Does not check if there is room!
3209 */
3210 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003211frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212{
3213 win_T *wp;
3214
3215 if (frp->fr_layout == FR_LEAF)
3216 {
3217 wp = frp->fr_win;
3218 if (wp->w_vsep_width == 0)
3219 {
3220 if (wp->w_width > 0) /* don't make it negative */
3221 --wp->w_width;
3222 wp->w_vsep_width = 1;
3223 }
3224 }
3225 else if (frp->fr_layout == FR_COL)
3226 {
3227 /* Handle all the frames in the column. */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003228 FOR_ALL_FRAMES(frp, frp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 frame_add_vsep(frp);
3230 }
3231 else /* frp->fr_layout == FR_ROW */
3232 {
3233 /* Only need to handle the last frame in the row. */
3234 frp = frp->fr_child;
3235 while (frp->fr_next != NULL)
3236 frp = frp->fr_next;
3237 frame_add_vsep(frp);
3238 }
3239}
3240
3241/*
3242 * Set frame width from the window it contains.
3243 */
3244 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003245frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246{
3247 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3248}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249
3250/*
3251 * Set frame height from the window it contains.
3252 */
3253 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003254frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255{
Bram Moolenaar415a6932017-12-05 20:31:07 +01003256 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257}
3258
3259/*
3260 * Compute the minimal height for frame "topfrp".
3261 * Uses the 'winminheight' option.
3262 * When "next_curwin" isn't NULL, use p_wh for this window.
3263 * When "next_curwin" is NOWIN, don't use at least one line for the current
3264 * window.
3265 */
3266 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003267frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268{
3269 frame_T *frp;
3270 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272
3273 if (topfrp->fr_win != NULL)
3274 {
3275 if (topfrp->fr_win == next_curwin)
3276 m = p_wh + topfrp->fr_win->w_status_height;
3277 else
3278 {
3279 /* window: minimal height of the window plus status line */
3280 m = p_wmh + topfrp->fr_win->w_status_height;
Bram Moolenaar415a6932017-12-05 20:31:07 +01003281 if (topfrp->fr_win == curwin && next_curwin == NULL)
3282 {
3283 /* Current window is minimal one line high and WinBar is
3284 * visible. */
3285 if (p_wmh == 0)
3286 ++m;
3287 m += WINBAR_HEIGHT(curwin);
3288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 }
3290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 else if (topfrp->fr_layout == FR_ROW)
3292 {
3293 /* get the minimal height from each frame in this row */
3294 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003295 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 {
3297 n = frame_minheight(frp, next_curwin);
3298 if (n > m)
3299 m = n;
3300 }
3301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 else
3303 {
3304 /* Add up the minimal heights for all frames in this column. */
3305 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003306 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 m += frame_minheight(frp, next_curwin);
3308 }
3309
3310 return m;
3311}
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313/*
3314 * Compute the minimal width for frame "topfrp".
3315 * When "next_curwin" isn't NULL, use p_wiw for this window.
3316 * When "next_curwin" is NOWIN, don't use at least one column for the current
3317 * window.
3318 */
3319 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003320frame_minwidth(
3321 frame_T *topfrp,
3322 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323{
3324 frame_T *frp;
3325 int m, n;
3326
3327 if (topfrp->fr_win != NULL)
3328 {
3329 if (topfrp->fr_win == next_curwin)
3330 m = p_wiw + topfrp->fr_win->w_vsep_width;
3331 else
3332 {
3333 /* window: minimal width of the window plus separator column */
3334 m = p_wmw + topfrp->fr_win->w_vsep_width;
3335 /* Current window is minimal one column wide */
3336 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3337 ++m;
3338 }
3339 }
3340 else if (topfrp->fr_layout == FR_COL)
3341 {
3342 /* get the minimal width from each frame in this column */
3343 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003344 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 {
3346 n = frame_minwidth(frp, next_curwin);
3347 if (n > m)
3348 m = n;
3349 }
3350 }
3351 else
3352 {
3353 /* Add up the minimal widths for all frames in this row. */
3354 m = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01003355 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 m += frame_minwidth(frp, next_curwin);
3357 }
3358
3359 return m;
3360}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361
3362
3363/*
3364 * Try to close all windows except current one.
3365 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3366 * used and the buffer was modified.
3367 *
3368 * Used by ":bdel" and ":only".
3369 */
3370 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003371close_others(
3372 int message,
3373 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374{
3375 win_T *wp;
3376 win_T *nextwp;
3377 int r;
3378
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003379 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003381 if (message && !autocmd_busy)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003382 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 return;
3384 }
3385
3386 /* Be very careful here: autocommands may change the window layout. */
3387 for (wp = firstwin; win_valid(wp); wp = nextwp)
3388 {
3389 nextwp = wp->w_next;
3390 if (wp != curwin) /* don't close current window */
3391 {
3392
3393 /* Check if it's allowed to abandon this window */
3394 r = can_abandon(wp->w_buffer, forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 if (!win_valid(wp)) /* autocommands messed wp up */
3396 {
3397 nextwp = firstwin;
3398 continue;
3399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 if (!r)
3401 {
3402#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3403 if (message && (p_confirm || cmdmod.confirm) && p_write)
3404 {
3405 dialog_changed(wp->w_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 if (!win_valid(wp)) /* autocommands messed wp up */
3407 {
3408 nextwp = firstwin;
3409 continue;
3410 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 }
3412 if (bufIsChanged(wp->w_buffer))
3413#endif
3414 continue;
3415 }
Bram Moolenaareb44a682017-08-03 22:44:55 +02003416 win_close(wp, !buf_hide(wp->w_buffer)
3417 && !bufIsChanged(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 }
3419 }
3420
Bram Moolenaar459ca562016-11-10 18:16:33 +01003421 if (message && !ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 EMSG(_("E445: Other window contains changes"));
3423}
3424
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003426 * Init the current window "curwin".
3427 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 */
3429 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003430curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003432 win_init_empty(curwin);
3433}
3434
3435 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003436win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003437{
3438 redraw_win_later(wp, NOT_VALID);
3439 wp->w_lines_valid = 0;
3440 wp->w_cursor.lnum = 1;
3441 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003443 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003445 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3446 wp->w_pcmark.col = 0;
3447 wp->w_prev_pcmark.lnum = 0;
3448 wp->w_prev_pcmark.col = 0;
3449 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003451 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003453 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003455 if (wp->w_p_rl)
3456 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003458 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003460#ifdef FEAT_SYN_HL
3461 wp->w_s = &wp->w_buffer->b_s;
3462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463}
3464
3465/*
3466 * Allocate the first window and put an empty buffer in it.
3467 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003468 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003470 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003471win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003473 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003474 return FAIL;
3475
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003476 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003477 if (first_tabpage == NULL)
3478 return FAIL;
3479 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003480 curtab = first_tabpage;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003481
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003482 return OK;
3483}
3484
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003485/*
3486 * Init "aucmd_win". This can only be done after the first
3487 * window is fully initialized, thus it can't be in win_alloc_first().
3488 */
3489 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003490win_alloc_aucmd_win(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003491{
3492 aucmd_win = win_alloc(NULL, TRUE);
3493 if (aucmd_win != NULL)
3494 {
3495 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003496 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003497 new_frame(aucmd_win);
3498 }
3499}
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003500
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003501/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003502 * Allocate the first window or the first window in a new tab page.
3503 * When "oldwin" is NULL create an empty buffer for it.
Bram Moolenaar4033c552017-09-16 20:54:51 +02003504 * When "oldwin" is not NULL copy info from it to the new window.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003505 * Return FAIL when something goes wrong (out of memory).
3506 */
3507 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003508win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003509{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003510 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003511 if (oldwin == NULL)
3512 {
3513 /* Very first window, need to create an empty buffer for it and
3514 * initialize from scratch. */
3515 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3516 if (curwin == NULL || curbuf == NULL)
3517 return FAIL;
3518 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003519#ifdef FEAT_SYN_HL
3520 curwin->w_s = &(curbuf->b_s);
3521#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003522 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003523 curwin->w_alist = &global_alist;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003524 curwin_init(); /* init current window */
3525 }
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003526 else
3527 {
3528 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003529 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003530
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003531 /* We don't want cursor- and scroll-binding in the first window. */
3532 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003533 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003535 new_frame(curwin);
3536 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003537 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003538 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 topframe->fr_height = Rows - p_ch;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003541
3542 return OK;
3543}
3544
3545/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003546 * Create a frame for window "wp".
3547 */
3548 static void
3549new_frame(win_T *wp)
3550{
3551 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3552
3553 wp->w_frame = frp;
3554 if (frp != NULL)
3555 {
3556 frp->fr_layout = FR_LEAF;
3557 frp->fr_win = wp;
3558 }
3559}
3560
3561/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003562 * Initialize the window and frame size to the maximum.
3563 */
3564 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003565win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003566{
3567 firstwin->w_height = ROWS_AVAIL;
3568 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003569 firstwin->w_width = Columns;
3570 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571}
3572
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003573/*
3574 * Allocate a new tabpage_T and init the values.
3575 * Returns NULL when out of memory.
3576 */
3577 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003578alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003579{
3580 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003581# ifdef FEAT_GUI
3582 int i;
3583# endif
3584
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003585
3586 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003587 if (tp == NULL)
3588 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003589
Bram Moolenaar429fa852013-04-15 12:27:36 +02003590# ifdef FEAT_EVAL
3591 /* init t: variables */
3592 tp->tp_vars = dict_alloc();
3593 if (tp->tp_vars == NULL)
3594 {
3595 vim_free(tp);
3596 return NULL;
3597 }
3598 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3599# endif
3600
3601# ifdef FEAT_GUI
3602 for (i = 0; i < 3; i++)
3603 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003604# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003605# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003606 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003607# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003608 tp->tp_ch_used = p_ch;
3609
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003610 return tp;
3611}
3612
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003613 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003614free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003615{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003616 int idx;
3617
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003618# ifdef FEAT_DIFF
3619 diff_clear(tp);
3620# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003621 for (idx = 0; idx < SNAP_COUNT; ++idx)
3622 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003623#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003624 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3625 hash_init(&tp->tp_vars->dv_hashtab);
3626 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003627#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003628
3629#ifdef FEAT_PYTHON
3630 python_tabpage_free(tp);
3631#endif
3632
3633#ifdef FEAT_PYTHON3
3634 python3_tabpage_free(tp);
3635#endif
3636
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003637 vim_free(tp);
3638}
3639
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003640/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003641 * Create a new Tab page with one window.
3642 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003643 * When "after" is 0 put it just after the current Tab page.
3644 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003645 * Return FAIL or OK.
3646 */
3647 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003648win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003649{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003650 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003651 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003652 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003653
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003654 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003655 if (newtp == NULL)
3656 return FAIL;
3657
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003658 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003659 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003660 {
3661 vim_free(newtp);
3662 return FAIL;
3663 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003664 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003665
3666 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003667 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003668 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003669 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003670 if (after == 1)
3671 {
3672 /* New tab page becomes the first one. */
3673 newtp->tp_next = first_tabpage;
3674 first_tabpage = newtp;
3675 }
3676 else
3677 {
3678 if (after > 0)
3679 {
3680 /* Put new tab page before tab page "after". */
3681 n = 2;
3682 for (tp = first_tabpage; tp->tp_next != NULL
3683 && n < after; tp = tp->tp_next)
3684 ++n;
3685 }
3686 newtp->tp_next = tp->tp_next;
3687 tp->tp_next = newtp;
3688 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003689 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003690 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003691 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003692
3693 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003694 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003695
3696#if defined(FEAT_GUI)
3697 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3698 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003699 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003700#endif
Bram Moolenaar6d41c782018-06-06 09:11:12 +02003701#ifdef FEAT_JOB_CHANNEL
3702 entering_window(curwin);
3703#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003704
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003705 redraw_all_later(CLEAR);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003706 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003707 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003708 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003709 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003710 return OK;
3711 }
3712
3713 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003714 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003715 return FAIL;
3716}
3717
3718/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003719 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3720 * like with ":split".
3721 * Returns OK if a new tab page was created, FAIL otherwise.
3722 */
3723 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003724may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003725{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003726 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003727
Bram Moolenaard326ce82007-03-11 14:48:29 +00003728 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003729 {
3730 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003731 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003732 return win_new_tabpage(n);
3733 }
3734 return FAIL;
3735}
3736
3737/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003738 * Create up to "maxcount" tabpages with empty windows.
3739 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003740 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003741 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003742make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003743{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003744 int count = maxcount;
3745 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003746
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003747 /* Limit to 'tabpagemax' tabs. */
3748 if (count > p_tpm)
3749 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003750
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003751 /*
3752 * Don't execute autocommands while creating the tab pages. Must do that
3753 * when putting the buffers in the windows.
3754 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003755 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003756
3757 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003758 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003759 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003760
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003761 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003762
3763 /* return actual number of tab pages */
3764 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003765}
3766
3767/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003768 * Return TRUE when "tpc" points to a valid tab page.
3769 */
3770 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003771valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003772{
3773 tabpage_T *tp;
3774
Bram Moolenaar29323592016-07-24 22:04:11 +02003775 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003776 if (tp == tpc)
3777 return TRUE;
3778 return FALSE;
3779}
3780
3781/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003782 * Return TRUE when "tpc" points to a valid tab page and at least one window is
3783 * valid.
3784 */
3785 int
3786valid_tabpage_win(tabpage_T *tpc)
3787{
3788 tabpage_T *tp;
3789 win_T *wp;
3790
3791 FOR_ALL_TABPAGES(tp)
3792 {
3793 if (tp == tpc)
3794 {
3795 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
3796 {
3797 if (win_valid_any_tab(wp))
3798 return TRUE;
3799 }
3800 return FALSE;
3801 }
3802 }
3803 /* shouldn't happen */
3804 return FALSE;
3805}
3806
3807/*
3808 * Close tabpage "tab", assuming it has no windows in it.
3809 * There must be another tabpage or this will crash.
3810 */
3811 void
3812close_tabpage(tabpage_T *tab)
3813{
3814 tabpage_T *ptp;
3815
3816 if (tab == first_tabpage)
3817 {
3818 first_tabpage = tab->tp_next;
3819 ptp = first_tabpage;
3820 }
3821 else
3822 {
3823 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tab;
3824 ptp = ptp->tp_next)
3825 ;
Bram Moolenaara37ffaa2017-03-21 21:58:00 +01003826 assert(ptp != NULL);
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003827 ptp->tp_next = tab->tp_next;
3828 }
3829
3830 goto_tabpage_tp(ptp, FALSE, FALSE);
3831 free_tabpage(tab);
3832}
3833
3834/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003835 * Find tab page "n" (first one is 1). Returns NULL when not found.
3836 */
3837 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003838find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003839{
3840 tabpage_T *tp;
3841 int i = 1;
3842
3843 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3844 ++i;
3845 return tp;
3846}
3847
3848/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003849 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003850 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003851 */
3852 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003853tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003854{
3855 int i = 1;
3856 tabpage_T *tp;
3857
3858 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3859 ++i;
3860 return i;
3861}
3862
3863/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003864 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003865 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003866 * FAIL.
3867 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003868 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003869 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003870leave_tabpage(
3871 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003872 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003873 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003874{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003875 tabpage_T *tp = curtab;
3876
Bram Moolenaar6d41c782018-06-06 09:11:12 +02003877#ifdef FEAT_JOB_CHANNEL
3878 leaving_window(curwin);
3879#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003880 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003881 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003882 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003883 if (new_curbuf != curbuf)
3884 {
3885 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3886 if (curtab != tp)
3887 return FAIL;
3888 }
3889 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3890 if (curtab != tp)
3891 return FAIL;
3892 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003893 if (curtab != tp)
3894 return FAIL;
3895 }
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003896#if defined(FEAT_GUI)
3897 /* Remove the scrollbars. They may be added back later. */
3898 if (gui.in_use)
3899 gui_remove_scrollbars();
3900#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003901 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003902 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003903 tp->tp_firstwin = firstwin;
3904 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003905 tp->tp_old_Rows = Rows;
3906 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003907 firstwin = NULL;
3908 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003909 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003910}
3911
3912/*
3913 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003914 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003915 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3916 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003917 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003918 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003919enter_tabpage(
3920 tabpage_T *tp,
3921 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003922 int trigger_enter_autocmds,
3923 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003924{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003925 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003926 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003927
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003928 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003929 firstwin = tp->tp_firstwin;
3930 lastwin = tp->tp_lastwin;
3931 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003932
3933 /* We would like doing the TabEnter event first, but we don't have a
3934 * valid current window yet, which may break some commands.
3935 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaarc917da42016-07-19 22:31:36 +02003936 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE,
Bram Moolenaard6949742013-06-16 14:18:28 +02003937 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003938 prevwin = next_prevwin;
3939
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003940 last_status(FALSE); /* status line may appear or disappear */
3941 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003942 must_redraw = CLEAR; /* need to redraw everything */
3943#ifdef FEAT_DIFF
3944 diff_need_scrollbind = TRUE;
3945#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003946
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003947 /* The tabpage line may have appeared or disappeared, may need to resize
3948 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003949 * frame sizes too. Use the stored value of p_ch, so that it can be
3950 * different for each tab page. */
3951 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003952 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3953#ifdef FEAT_GUI_TABLINE
3954 && !gui_use_tabline()
3955#endif
3956 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003957 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003958 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003959 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003960
3961#if defined(FEAT_GUI)
3962 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3963 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003964 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003965#endif
3966
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003967 /* Apply autocommands after updating the display, when 'rows' and
3968 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003969 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003970 {
3971 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3972 if (old_curbuf != curbuf)
3973 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3974 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003975
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003976 redraw_all_later(CLEAR);
3977}
3978
3979/*
3980 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003981 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003982 */
3983 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003984goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003985{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003986 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003987 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003988 int i;
3989
Bram Moolenaard68071d2006-05-02 22:08:30 +00003990 if (text_locked())
3991 {
3992 /* Not allowed when editing the command line. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02003993 text_locked_msg();
Bram Moolenaard68071d2006-05-02 22:08:30 +00003994 return;
3995 }
3996
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003997 /* If there is only one it can't work. */
3998 if (first_tabpage->tp_next == NULL)
3999 {
4000 if (n > 1)
4001 beep_flush();
4002 return;
4003 }
4004
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004005 if (n == 0)
4006 {
4007 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004008 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004009 tp = first_tabpage;
4010 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004011 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004012 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004013 else if (n < 0)
4014 {
4015 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
4016 * this N times. */
4017 ttp = curtab;
4018 for (i = n; i < 0; ++i)
4019 {
4020 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
4021 tp = tp->tp_next)
4022 ;
4023 ttp = tp;
4024 }
4025 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004026 else if (n == 9999)
4027 {
4028 /* Go to last tab page. */
4029 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
4030 ;
4031 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004032 else
4033 {
4034 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004035 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00004036 if (tp == NULL)
4037 {
4038 beep_flush();
4039 return;
4040 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004041 }
4042
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004043 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004044
4045#ifdef FEAT_GUI_TABLINE
4046 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00004047 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004048#endif
4049}
4050
4051/*
4052 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004053 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
4054 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004055 * Note: doesn't update the GUI tab.
4056 */
4057 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004058goto_tabpage_tp(
4059 tabpage_T *tp,
4060 int trigger_enter_autocmds,
4061 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004062{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02004063 /* Don't repeat a message in another tab page. */
4064 set_keep_msg(NULL, 0);
4065
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004066 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
4067 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004068 {
4069 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004070 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
4071 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004072 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004073 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
4074 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004075 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004076}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077
4078/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004079 * Enter window "wp" in tab page "tp".
4080 * Also updates the GUI tab.
4081 */
4082 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004083goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004084{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004085 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004086 if (curtab == tp && win_valid(wp))
4087 {
4088 win_enter(wp, TRUE);
4089# ifdef FEAT_GUI_TABLINE
4090 if (gui_use_tabline())
4091 gui_mch_set_curtab(tabpage_index(curtab));
4092# endif
4093 }
4094}
4095
4096/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004097 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004098 */
4099 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004100tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004101{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004102 int n = 1;
4103 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004104
4105 if (first_tabpage->tp_next == NULL)
4106 return;
4107
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004108 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
4109 ++n;
4110
4111 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
4112 && tp->tp_next == curtab))
4113 return;
4114
4115 tp_dst = tp;
4116
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004117 /* Remove the current tab page from the list of tab pages. */
4118 if (curtab == first_tabpage)
4119 first_tabpage = curtab->tp_next;
4120 else
4121 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004122 FOR_ALL_TABPAGES(tp)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004123 if (tp->tp_next == curtab)
4124 break;
4125 if (tp == NULL) /* "cannot happen" */
4126 return;
4127 tp->tp_next = curtab->tp_next;
4128 }
4129
4130 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004131 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004132 {
4133 curtab->tp_next = first_tabpage;
4134 first_tabpage = curtab;
4135 }
4136 else
4137 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004138 curtab->tp_next = tp_dst->tp_next;
4139 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004140 }
4141
4142 /* Need to redraw the tabline. Tab page contents doesn't change. */
4143 redraw_tabline = TRUE;
4144}
4145
4146
4147/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 * Go to another window.
4149 * When jumping to another buffer, stop Visual mode. Do this before
4150 * changing windows so we can yank the selection into the '*' register.
4151 * When jumping to another window on the same buffer, adjust its cursor
4152 * position to keep the same Visual area.
4153 */
4154 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004155win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004157#ifdef FEAT_CONCEAL
4158 win_T *owp = curwin;
4159#endif
4160
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004161 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 {
4163 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004164 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 return;
4166 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004167 if (curbuf_locked())
4168 return;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004169
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 if (wp->w_buffer != curbuf)
4171 reset_VIsual_and_resel();
4172 else if (VIsual_active)
4173 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
4175#ifdef FEAT_GUI
4176 need_mouse_correct = TRUE;
4177#endif
4178 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004179
4180#ifdef FEAT_CONCEAL
4181 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004182 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004183 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004184 if (curwin->w_p_cole > 0 && !msg_scrolled)
4185 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004186#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187}
4188
4189#if defined(FEAT_PERL) || defined(PROTO)
4190/*
4191 * Find window number "winnr" (counting top to bottom).
4192 */
4193 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004194win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195{
4196 win_T *wp;
4197
Bram Moolenaar29323592016-07-24 22:04:11 +02004198 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 if (--winnr == 0)
4200 break;
4201 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202}
4203#endif
4204
Bram Moolenaar4033c552017-09-16 20:54:51 +02004205#if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004206/*
4207 * Find the tabpage for window "win".
4208 */
4209 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004210win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004211{
4212 win_T *wp;
4213 tabpage_T *tp;
4214
Bram Moolenaar29323592016-07-24 22:04:11 +02004215 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004216 if (wp == win)
4217 return tp;
4218 return NULL;
4219}
4220#endif
4221
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222/*
4223 * Move to window above or below "count" times.
4224 */
4225 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004226win_goto_ver(
4227 int up, /* TRUE to go to win above */
4228 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229{
4230 frame_T *fr;
4231 frame_T *nfr;
4232 frame_T *foundfr;
4233
4234 foundfr = curwin->w_frame;
4235 while (count--)
4236 {
4237 /*
4238 * First go upwards in the tree of frames until we find a upwards or
4239 * downwards neighbor.
4240 */
4241 fr = foundfr;
4242 for (;;)
4243 {
4244 if (fr == topframe)
4245 goto end;
4246 if (up)
4247 nfr = fr->fr_prev;
4248 else
4249 nfr = fr->fr_next;
4250 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4251 break;
4252 fr = fr->fr_parent;
4253 }
4254
4255 /*
4256 * Now go downwards to find the bottom or top frame in it.
4257 */
4258 for (;;)
4259 {
4260 if (nfr->fr_layout == FR_LEAF)
4261 {
4262 foundfr = nfr;
4263 break;
4264 }
4265 fr = nfr->fr_child;
4266 if (nfr->fr_layout == FR_ROW)
4267 {
4268 /* Find the frame at the cursor row. */
4269 while (fr->fr_next != NULL
4270 && frame2win(fr)->w_wincol + fr->fr_width
4271 <= curwin->w_wincol + curwin->w_wcol)
4272 fr = fr->fr_next;
4273 }
4274 if (nfr->fr_layout == FR_COL && up)
4275 while (fr->fr_next != NULL)
4276 fr = fr->fr_next;
4277 nfr = fr;
4278 }
4279 }
4280end:
4281 if (foundfr != NULL)
4282 win_goto(foundfr->fr_win);
4283}
4284
4285/*
4286 * Move to left or right window.
4287 */
4288 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004289win_goto_hor(
4290 int left, /* TRUE to go to left win */
4291 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292{
4293 frame_T *fr;
4294 frame_T *nfr;
4295 frame_T *foundfr;
4296
4297 foundfr = curwin->w_frame;
4298 while (count--)
4299 {
4300 /*
4301 * First go upwards in the tree of frames until we find a left or
4302 * right neighbor.
4303 */
4304 fr = foundfr;
4305 for (;;)
4306 {
4307 if (fr == topframe)
4308 goto end;
4309 if (left)
4310 nfr = fr->fr_prev;
4311 else
4312 nfr = fr->fr_next;
4313 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4314 break;
4315 fr = fr->fr_parent;
4316 }
4317
4318 /*
4319 * Now go downwards to find the leftmost or rightmost frame in it.
4320 */
4321 for (;;)
4322 {
4323 if (nfr->fr_layout == FR_LEAF)
4324 {
4325 foundfr = nfr;
4326 break;
4327 }
4328 fr = nfr->fr_child;
4329 if (nfr->fr_layout == FR_COL)
4330 {
4331 /* Find the frame at the cursor row. */
4332 while (fr->fr_next != NULL
4333 && frame2win(fr)->w_winrow + fr->fr_height
4334 <= curwin->w_winrow + curwin->w_wrow)
4335 fr = fr->fr_next;
4336 }
4337 if (nfr->fr_layout == FR_ROW && left)
4338 while (fr->fr_next != NULL)
4339 fr = fr->fr_next;
4340 nfr = fr;
4341 }
4342 }
4343end:
4344 if (foundfr != NULL)
4345 win_goto(foundfr->fr_win);
4346}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347
4348/*
4349 * Make window "wp" the current window.
4350 */
4351 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004352win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353{
Bram Moolenaarc917da42016-07-19 22:31:36 +02004354 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355}
4356
4357/*
4358 * Make window wp the current window.
4359 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4360 * been closed and isn't valid.
4361 */
4362 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004363win_enter_ext(
4364 win_T *wp,
4365 int undo_sync,
4366 int curwin_invalid,
Bram Moolenaar6f470022018-04-10 18:47:20 +02004367 int trigger_new_autocmds,
4368 int trigger_enter_autocmds,
4369 int trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 int other_buffer = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372
4373 if (wp == curwin && !curwin_invalid) /* nothing to do */
4374 return;
4375
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004376#ifdef FEAT_JOB_CHANNEL
4377 if (!curwin_invalid)
4378 leaving_window(curwin);
4379#endif
4380
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004381 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 {
4383 /*
4384 * Be careful: If autocommands delete the window, return now.
4385 */
4386 if (wp->w_buffer != curbuf)
4387 {
4388 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4389 other_buffer = TRUE;
4390 if (!win_valid(wp))
4391 return;
4392 }
4393 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4394 if (!win_valid(wp))
4395 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004396#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 /* autocmds may abort script processing */
4398 if (aborting())
4399 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402
4403 /* sync undo before leaving the current buffer */
4404 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004405 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004406
4407 /* Might need to scroll the old window before switching, e.g., when the
4408 * cursor was moved. */
4409 update_topline();
4410
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 /* may have to copy the buffer options when 'cpo' contains 'S' */
4412 if (wp->w_buffer != curbuf)
4413 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4414 if (!curwin_invalid)
4415 {
4416 prevwin = curwin; /* remember for CTRL-W p */
4417 curwin->w_redr_status = TRUE;
4418 }
4419 curwin = wp;
4420 curbuf = wp->w_buffer;
4421 check_cursor();
4422#ifdef FEAT_VIRTUALEDIT
4423 if (!virtual_active())
4424 curwin->w_cursor.coladd = 0;
4425#endif
4426 changed_line_abv_curs(); /* assume cursor position needs updating */
4427
4428 if (curwin->w_localdir != NULL)
4429 {
4430 /* Window has a local directory: Save current directory as global
4431 * directory (unless that was done already) and change to the local
4432 * directory. */
4433 if (globaldir == NULL)
4434 {
4435 char_u cwd[MAXPATHL];
4436
4437 if (mch_dirname(cwd, MAXPATHL) == OK)
4438 globaldir = vim_strsave(cwd);
4439 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004440 if (mch_chdir((char *)curwin->w_localdir) == 0)
4441 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 }
4443 else if (globaldir != NULL)
4444 {
4445 /* Window doesn't have a local directory and we are not in the global
4446 * directory: Change to the global directory. */
Bram Moolenaar42335f52018-09-13 15:33:43 +02004447 vim_ignored = mch_chdir((char *)globaldir);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004448 VIM_CLEAR(globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 shorten_fnames(TRUE);
4450 }
4451
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004452#ifdef FEAT_JOB_CHANNEL
4453 entering_window(curwin);
4454#endif
Bram Moolenaarc917da42016-07-19 22:31:36 +02004455 if (trigger_new_autocmds)
4456 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004457 if (trigger_enter_autocmds)
4458 {
4459 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4460 if (other_buffer)
4461 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4462 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463
4464#ifdef FEAT_TITLE
4465 maketitle();
4466#endif
4467 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004468 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 if (restart_edit)
4470 redraw_later(VALID); /* causes status line redraw */
4471
4472 /* set window height to desired minimal value */
4473 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4474 win_setheight((int)p_wh);
4475 else if (curwin->w_height == 0)
4476 win_setheight(1);
4477
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004479 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481
4482#ifdef FEAT_MOUSE
4483 setmouse(); /* in case jumped to/from help buffer */
4484#endif
4485
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004486 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004487 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488}
4489
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004492 * Jump to the first open window that contains buffer "buf", if one exists.
4493 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 */
4495 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004496buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004498 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004500 if (curwin->w_buffer == buf)
4501 wp = curwin;
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004502 else
Bram Moolenaar29323592016-07-24 22:04:11 +02004503 FOR_ALL_WINDOWS(wp)
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004504 if (wp->w_buffer == buf)
4505 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 if (wp != NULL)
4507 win_enter(wp, FALSE);
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004508 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004510
4511/*
4512 * Jump to the first open window in any tab page that contains buffer "buf",
4513 * if one exists.
4514 * Returns a pointer to the window found, otherwise NULL.
4515 */
4516 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004517buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004518{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004519 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004520 tabpage_T *tp;
4521
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004522 if (wp != NULL)
4523 return wp;
4524
Bram Moolenaar29323592016-07-24 22:04:11 +02004525 FOR_ALL_TABPAGES(tp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004526 if (tp != curtab)
4527 {
4528 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4529 if (wp->w_buffer == buf)
4530 break;
4531 if (wp != NULL)
4532 {
4533 goto_tabpage_win(tp, wp);
4534 if (curwin != wp)
4535 wp = NULL; /* something went wrong */
4536 break;
4537 }
4538 }
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004539 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004540}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004542static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004543
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004545 * Allocate a window structure and link it in the window list when "hidden" is
4546 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004549win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004551 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552
4553 /*
4554 * allocate window structure and linesizes arrays
4555 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004556 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004557 if (new_wp == NULL)
4558 return NULL;
4559
4560 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004562 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004563 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 }
4565
Bram Moolenaar86edef62016-03-13 18:07:30 +01004566 new_wp->w_id = ++last_win_id;
4567
Bram Moolenaar429fa852013-04-15 12:27:36 +02004568#ifdef FEAT_EVAL
4569 /* init w: variables */
4570 new_wp->w_vars = dict_alloc();
4571 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004573 win_free_lsize(new_wp);
4574 vim_free(new_wp);
4575 return NULL;
4576 }
4577 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004578#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004579
Bram Moolenaar429fa852013-04-15 12:27:36 +02004580 /* Don't execute autocommands while the window is not properly
4581 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4582 * event. */
4583 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004584
Bram Moolenaar429fa852013-04-15 12:27:36 +02004585 /*
4586 * link the window in the window list
4587 */
Bram Moolenaar429fa852013-04-15 12:27:36 +02004588 if (!hidden)
4589 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004590 new_wp->w_wincol = 0;
4591 new_wp->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592
Bram Moolenaar429fa852013-04-15 12:27:36 +02004593 /* position the display and the cursor at the top of the file. */
4594 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004596 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004598 new_wp->w_botline = 2;
4599 new_wp->w_cursor.lnum = 1;
Bram Moolenaar429fa852013-04-15 12:27:36 +02004600 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601
Bram Moolenaar429fa852013-04-15 12:27:36 +02004602 /* We won't calculate w_fraction until resizing the window */
4603 new_wp->w_fraction = 0;
4604 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605
4606#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004607 if (gui.in_use)
4608 {
4609 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4610 SBAR_LEFT, new_wp);
4611 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4612 SBAR_RIGHT, new_wp);
4613 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614#endif
4615#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004616 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004618 unblock_autocmds();
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004619#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004620 new_wp->w_match_head = NULL;
4621 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004622#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004623 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624}
4625
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004627 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 */
4629 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004630win_free(
4631 win_T *wp,
4632 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633{
4634 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004635 buf_T *buf;
4636 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004638#ifdef FEAT_FOLDING
4639 clearFolding(wp);
4640#endif
4641
4642 /* reduce the reference count to the argument list. */
4643 alist_unlink(wp->w_alist);
4644
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004645 /* Don't execute autocommands while the window is halfway being deleted.
4646 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004647 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004648
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004649#ifdef FEAT_LUA
4650 lua_window_free(wp);
4651#endif
4652
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004653#ifdef FEAT_MZSCHEME
4654 mzscheme_window_free(wp);
4655#endif
4656
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657#ifdef FEAT_PERL
4658 perl_win_free(wp);
4659#endif
4660
4661#ifdef FEAT_PYTHON
4662 python_window_free(wp);
4663#endif
4664
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004665#ifdef FEAT_PYTHON3
4666 python3_window_free(wp);
4667#endif
4668
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669#ifdef FEAT_TCL
4670 tcl_window_free(wp);
4671#endif
4672
4673#ifdef FEAT_RUBY
4674 ruby_window_free(wp);
4675#endif
4676
4677 clear_winopt(&wp->w_onebuf_opt);
4678 clear_winopt(&wp->w_allbuf_opt);
4679
4680#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004681 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4682 hash_init(&wp->w_vars->dv_hashtab);
4683 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684#endif
4685
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004686 {
4687 tabpage_T *ttp;
4688
4689 if (prevwin == wp)
4690 prevwin = NULL;
Bram Moolenaar29323592016-07-24 22:04:11 +02004691 FOR_ALL_TABPAGES(ttp)
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004692 if (ttp->tp_prevwin == wp)
4693 ttp->tp_prevwin = NULL;
4694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 win_free_lsize(wp);
4696
4697 for (i = 0; i < wp->w_tagstacklen; ++i)
4698 vim_free(wp->w_tagstack[i].tagname);
4699
4700 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004701
Bram Moolenaarff18df02013-07-24 17:51:57 +02004702 /* Remove the window from the b_wininfo lists, it may happen that the
4703 * freed memory is re-used for another window. */
Bram Moolenaar29323592016-07-24 22:04:11 +02004704 FOR_ALL_BUFFERS(buf)
Bram Moolenaarff18df02013-07-24 17:51:57 +02004705 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4706 if (wip->wi_win == wp)
4707 wip->wi_win = NULL;
4708
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004710 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004712
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713#ifdef FEAT_JUMPLIST
4714 free_jumplist(wp);
4715#endif
4716
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004717#ifdef FEAT_QUICKFIX
4718 qf_free_all(wp);
4719#endif
4720
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721#ifdef FEAT_GUI
4722 if (gui.in_use)
4723 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4725 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4726 }
4727#endif /* FEAT_GUI */
4728
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02004729#ifdef FEAT_MENU
4730 remove_winbar(wp);
4731#endif
4732
Bram Moolenaar860cae12010-06-05 23:22:07 +02004733#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004734 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004735#endif
4736
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004737 if (wp != aucmd_win)
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004738 win_remove(wp, tp);
Bram Moolenaar3be85852014-06-12 14:01:31 +02004739 if (autocmd_busy)
4740 {
4741 wp->w_next = au_pending_free_win;
4742 au_pending_free_win = wp;
4743 }
4744 else
4745 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004746
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004747 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748}
4749
4750/*
4751 * Append window "wp" in the window list after window "after".
4752 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004753 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004754win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755{
4756 win_T *before;
4757
4758 if (after == NULL) /* after NULL is in front of the first */
4759 before = firstwin;
4760 else
4761 before = after->w_next;
4762
4763 wp->w_next = before;
4764 wp->w_prev = after;
4765 if (after == NULL)
4766 firstwin = wp;
4767 else
4768 after->w_next = wp;
4769 if (before == NULL)
4770 lastwin = wp;
4771 else
4772 before->w_prev = wp;
4773}
4774
4775/*
4776 * Remove a window from the window list.
4777 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004778 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004779win_remove(
4780 win_T *wp,
4781 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782{
4783 if (wp->w_prev != NULL)
4784 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004785 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004786 firstwin = curtab->tp_firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004787 else
4788 tp->tp_firstwin = wp->w_next;
Bram Moolenaar816968d2017-09-29 21:29:18 +02004789
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 if (wp->w_next != NULL)
4791 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004792 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004793 lastwin = curtab->tp_lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004794 else
4795 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796}
4797
4798/*
4799 * Append frame "frp" in a frame list after frame "after".
4800 */
4801 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004802frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803{
4804 frp->fr_next = after->fr_next;
4805 after->fr_next = frp;
4806 if (frp->fr_next != NULL)
4807 frp->fr_next->fr_prev = frp;
4808 frp->fr_prev = after;
4809}
4810
4811/*
4812 * Insert frame "frp" in a frame list before frame "before".
4813 */
4814 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004815frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816{
4817 frp->fr_next = before;
4818 frp->fr_prev = before->fr_prev;
4819 before->fr_prev = frp;
4820 if (frp->fr_prev != NULL)
4821 frp->fr_prev->fr_next = frp;
4822 else
4823 frp->fr_parent->fr_child = frp;
4824}
4825
4826/*
4827 * Remove a frame from a frame list.
4828 */
4829 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004830frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831{
4832 if (frp->fr_prev != NULL)
4833 frp->fr_prev->fr_next = frp->fr_next;
4834 else
Bram Moolenaar6f361c92018-01-31 19:06:50 +01004835 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 frp->fr_parent->fr_child = frp->fr_next;
Bram Moolenaar6f361c92018-01-31 19:06:50 +01004837 /* special case: topframe->fr_child == frp */
4838 if (topframe->fr_child == frp)
4839 topframe->fr_child = frp->fr_next;
4840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 if (frp->fr_next != NULL)
4842 frp->fr_next->fr_prev = frp->fr_prev;
4843}
4844
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845/*
4846 * Allocate w_lines[] for window "wp".
4847 * Return FAIL for failure, OK for success.
4848 */
4849 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004850win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851{
4852 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004853 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 if (wp->w_lines == NULL)
4855 return FAIL;
4856 return OK;
4857}
4858
4859/*
4860 * free lsize arrays for a window
4861 */
4862 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004863win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004865 /* TODO: why would wp be NULL here? */
4866 if (wp != NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01004867 VIM_CLEAR(wp->w_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868}
4869
4870/*
4871 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004872 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 */
4874 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004875shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004877 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878
4879 if (firstwin == NULL) /* not initialized yet */
4880 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 if (h < frame_minheight(topframe, NULL))
4882 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004883
4884 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 * that doesn't result in the right height, forget about that option. */
4886 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004887 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 frame_new_height(topframe, h, FALSE, FALSE);
4889
4890 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 compute_cmdrow();
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004892 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004893
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894#if 0
4895 /* Disabled: don't want making the screen smaller make a window larger. */
4896 if (p_ea)
4897 win_equal(curwin, FALSE, 'v');
4898#endif
4899}
4900
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901/*
4902 * Called from win_new_shellsize() after Columns changed.
4903 */
4904 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004905shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906{
4907 if (firstwin == NULL) /* not initialized yet */
4908 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004909
4910 /* First try setting the widths of windows with 'winfixwidth'. If that
4911 * doesn't result in the right width, forget about that option. */
4912 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004913 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004914 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4915
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4917#if 0
4918 /* Disabled: don't want making the screen smaller make a window larger. */
4919 if (p_ea)
4920 win_equal(curwin, FALSE, 'h');
4921#endif
4922}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923
4924#if defined(FEAT_CMDWIN) || defined(PROTO)
4925/*
4926 * Save the size of all windows in "gap".
4927 */
4928 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004929win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930
4931{
4932 win_T *wp;
4933
4934 ga_init2(gap, (int)sizeof(int), 1);
4935 if (ga_grow(gap, win_count() * 2) == OK)
Bram Moolenaar29323592016-07-24 22:04:11 +02004936 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 {
4938 ((int *)gap->ga_data)[gap->ga_len++] =
4939 wp->w_width + wp->w_vsep_width;
4940 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4941 }
4942}
4943
4944/*
4945 * Restore window sizes, but only if the number of windows is still the same.
4946 * Does not free the growarray.
4947 */
4948 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004949win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950{
4951 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004952 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953
4954 if (win_count() * 2 == gap->ga_len)
4955 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004956 /* The order matters, because frames contain other frames, but it's
4957 * difficult to get right. The easy way out is to do it twice. */
4958 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004960 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02004961 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb643e772014-07-16 15:18:26 +02004962 {
4963 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4964 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967 /* recompute the window positions */
4968 (void)win_comp_pos();
4969 }
4970}
4971#endif /* FEAT_CMDWIN */
4972
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973/*
4974 * Update the position for all windows, using the width and height of the
4975 * frames.
4976 * Returns the row just after the last window.
4977 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004978 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004979win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004981 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 int col = 0;
4983
4984 frame_comp_pos(topframe, &row, &col);
4985 return row;
4986}
4987
4988/*
4989 * Update the position of the windows in frame "topfrp", using the width and
4990 * height of the frames.
4991 * "*row" and "*col" are the top-left position of the frame. They are updated
4992 * to the bottom-right position plus one.
4993 */
4994 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004995frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996{
4997 win_T *wp;
4998 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 int startcol;
5000 int startrow;
Bram Moolenaar415a6932017-12-05 20:31:07 +01005001 int h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002
5003 wp = topfrp->fr_win;
5004 if (wp != NULL)
5005 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005006 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
5008 /* position changed, redraw */
5009 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 redraw_win_later(wp, NOT_VALID);
5012 wp->w_redr_status = TRUE;
5013 }
Bram Moolenaar415a6932017-12-05 20:31:07 +01005014 /* WinBar will not show if the window height is zero */
5015 h = VISIBLE_HEIGHT(wp) + wp->w_status_height;
5016 *row += h > topfrp->fr_height ? topfrp->fr_height : h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 }
5019 else
5020 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 startrow = *row;
5022 startcol = *col;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005023 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 if (topfrp->fr_layout == FR_ROW)
5026 *row = startrow; /* all frames are at the same row */
5027 else
5028 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 frame_comp_pos(frp, row, col);
5030 }
5031 }
5032}
5033
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034/*
5035 * Set current window height and take care of repositioning other windows to
5036 * fit around it.
5037 */
5038 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005039win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040{
5041 win_setheight_win(height, curwin);
5042}
5043
5044/*
5045 * Set the window height of window "win" and take care of repositioning other
5046 * windows to fit around it.
5047 */
5048 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005049win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050{
5051 int row;
5052
5053 if (win == curwin)
5054 {
5055 /* Always keep current window at least one line high, even when
5056 * 'winminheight' is zero. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 if (height < p_wmh)
5058 height = p_wmh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 if (height == 0)
5060 height = 1;
Bram Moolenaar415a6932017-12-05 20:31:07 +01005061 height += WINBAR_HEIGHT(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 }
5063
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 frame_setheight(win->w_frame, height + win->w_status_height);
5065
5066 /* recompute the window positions */
5067 row = win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
5069 /*
5070 * If there is extra space created between the last window and the command
5071 * line, clear it.
5072 */
5073 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
5074 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5075 cmdline_row = row;
5076 msg_row = row;
5077 msg_col = 0;
5078
5079 redraw_all_later(NOT_VALID);
5080}
5081
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082/*
5083 * Set the height of a frame to "height" and take care that all frames and
5084 * windows inside it are resized. Also resize frames on the left and right if
5085 * the are in the same FR_ROW frame.
5086 *
5087 * Strategy:
5088 * If the frame is part of a FR_COL frame, try fitting the frame in that
5089 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5090 * go to containing frames to resize them and make room.
5091 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5092 * Check for the minimal height of the FR_ROW frame.
5093 * At the top level we can also use change the command line height.
5094 */
5095 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005096frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097{
5098 int room; /* total number of lines available */
5099 int take; /* number of lines taken from other windows */
5100 int room_cmdline; /* lines available from cmdline */
5101 int run;
5102 frame_T *frp;
5103 int h;
5104 int room_reserved;
5105
5106 /* If the height already is the desired value, nothing to do. */
5107 if (curfrp->fr_height == height)
5108 return;
5109
5110 if (curfrp->fr_parent == NULL)
5111 {
5112 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005113 if (height > ROWS_AVAIL)
5114 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 if (height > 0)
5116 frame_new_height(curfrp, height, FALSE, FALSE);
5117 }
5118 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5119 {
5120 /* Row of frames: Also need to resize frames left and right of this
5121 * one. First check for the minimal height of these. */
5122 h = frame_minheight(curfrp->fr_parent, NULL);
5123 if (height < h)
5124 height = h;
5125 frame_setheight(curfrp->fr_parent, height);
5126 }
5127 else
5128 {
5129 /*
5130 * Column of frames: try to change only frames in this column.
5131 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 /*
5133 * Do this twice:
5134 * 1: compute room available, if it's not enough try resizing the
5135 * containing frame.
5136 * 2: compute the room available and adjust the height to it.
5137 * Try not to reduce the height of a window with 'winfixheight' set.
5138 */
5139 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 {
5141 room = 0;
5142 room_reserved = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005143 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 {
5145 if (frp != curfrp
5146 && frp->fr_win != NULL
5147 && frp->fr_win->w_p_wfh)
5148 room_reserved += frp->fr_height;
5149 room += frp->fr_height;
5150 if (frp != curfrp)
5151 room -= frame_minheight(frp, NULL);
5152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 if (curfrp->fr_width != Columns)
5154 room_cmdline = 0;
5155 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 {
5157 room_cmdline = Rows - p_ch - (lastwin->w_winrow
Bram Moolenaar415a6932017-12-05 20:31:07 +01005158 + VISIBLE_HEIGHT(lastwin)
5159 + lastwin->w_status_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 if (room_cmdline < 0)
5161 room_cmdline = 0;
5162 }
5163
5164 if (height <= room + room_cmdline)
5165 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 if (run == 2 || curfrp->fr_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 {
5168 if (height > room + room_cmdline)
5169 height = room + room_cmdline;
5170 break;
5171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 frame_setheight(curfrp->fr_parent, height
5173 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 }
5175
5176 /*
5177 * Compute the number of lines we will take from others frames (can be
5178 * negative!).
5179 */
5180 take = height - curfrp->fr_height;
5181
5182 /* If there is not enough room, also reduce the height of a window
5183 * with 'winfixheight' set. */
5184 if (height > room + room_cmdline - room_reserved)
5185 room_reserved = room + room_cmdline - height;
5186 /* If there is only a 'winfixheight' window and making the
5187 * window smaller, need to make the other window taller. */
5188 if (take < 0 && room - curfrp->fr_height < room_reserved)
5189 room_reserved = 0;
5190
5191 if (take > 0 && room_cmdline > 0)
5192 {
5193 /* use lines from cmdline first */
5194 if (take < room_cmdline)
5195 room_cmdline = take;
5196 take -= room_cmdline;
5197 topframe->fr_height += room_cmdline;
5198 }
5199
5200 /*
5201 * set the current frame to the new height
5202 */
5203 frame_new_height(curfrp, height, FALSE, FALSE);
5204
5205 /*
5206 * First take lines from the frames after the current frame. If
5207 * that is not enough, takes lines from frames above the current
5208 * frame.
5209 */
5210 for (run = 0; run < 2; ++run)
5211 {
5212 if (run == 0)
5213 frp = curfrp->fr_next; /* 1st run: start with next window */
5214 else
5215 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5216 while (frp != NULL && take != 0)
5217 {
5218 h = frame_minheight(frp, NULL);
5219 if (room_reserved > 0
5220 && frp->fr_win != NULL
5221 && frp->fr_win->w_p_wfh)
5222 {
5223 if (room_reserved >= frp->fr_height)
5224 room_reserved -= frp->fr_height;
5225 else
5226 {
5227 if (frp->fr_height - room_reserved > take)
5228 room_reserved = frp->fr_height - take;
5229 take -= frp->fr_height - room_reserved;
5230 frame_new_height(frp, room_reserved, FALSE, FALSE);
5231 room_reserved = 0;
5232 }
5233 }
5234 else
5235 {
5236 if (frp->fr_height - take < h)
5237 {
5238 take -= frp->fr_height - h;
5239 frame_new_height(frp, h, FALSE, FALSE);
5240 }
5241 else
5242 {
5243 frame_new_height(frp, frp->fr_height - take,
5244 FALSE, FALSE);
5245 take = 0;
5246 }
5247 }
5248 if (run == 0)
5249 frp = frp->fr_next;
5250 else
5251 frp = frp->fr_prev;
5252 }
5253 }
5254 }
5255}
5256
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257/*
5258 * Set current window width and take care of repositioning other windows to
5259 * fit around it.
5260 */
5261 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005262win_setwidth(int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263{
5264 win_setwidth_win(width, curwin);
5265}
5266
5267 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005268win_setwidth_win(int width, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269{
5270 /* Always keep current window at least one column wide, even when
5271 * 'winminwidth' is zero. */
5272 if (wp == curwin)
5273 {
5274 if (width < p_wmw)
5275 width = p_wmw;
5276 if (width == 0)
5277 width = 1;
5278 }
5279
5280 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5281
5282 /* recompute the window positions */
5283 (void)win_comp_pos();
5284
5285 redraw_all_later(NOT_VALID);
5286}
5287
5288/*
5289 * Set the width of a frame to "width" and take care that all frames and
5290 * windows inside it are resized. Also resize frames above and below if the
5291 * are in the same FR_ROW frame.
5292 *
5293 * Strategy is similar to frame_setheight().
5294 */
5295 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005296frame_setwidth(frame_T *curfrp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297{
5298 int room; /* total number of lines available */
5299 int take; /* number of lines taken from other windows */
5300 int run;
5301 frame_T *frp;
5302 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005303 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304
5305 /* If the width already is the desired value, nothing to do. */
5306 if (curfrp->fr_width == width)
5307 return;
5308
5309 if (curfrp->fr_parent == NULL)
5310 /* topframe: can't change width */
5311 return;
5312
5313 if (curfrp->fr_parent->fr_layout == FR_COL)
5314 {
5315 /* Column of frames: Also need to resize frames above and below of
5316 * this one. First check for the minimal width of these. */
5317 w = frame_minwidth(curfrp->fr_parent, NULL);
5318 if (width < w)
5319 width = w;
5320 frame_setwidth(curfrp->fr_parent, width);
5321 }
5322 else
5323 {
5324 /*
5325 * Row of frames: try to change only frames in this row.
5326 *
5327 * Do this twice:
5328 * 1: compute room available, if it's not enough try resizing the
5329 * containing frame.
5330 * 2: compute the room available and adjust the width to it.
5331 */
5332 for (run = 1; run <= 2; ++run)
5333 {
5334 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005335 room_reserved = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005336 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005338 if (frp != curfrp
5339 && frp->fr_win != NULL
5340 && frp->fr_win->w_p_wfw)
5341 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 room += frp->fr_width;
5343 if (frp != curfrp)
5344 room -= frame_minwidth(frp, NULL);
5345 }
5346
5347 if (width <= room)
5348 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005349 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 {
5351 if (width > room)
5352 width = room;
5353 break;
5354 }
5355 frame_setwidth(curfrp->fr_parent, width
5356 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5357 }
5358
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 /*
5360 * Compute the number of lines we will take from others frames (can be
5361 * negative!).
5362 */
5363 take = width - curfrp->fr_width;
5364
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005365 /* If there is not enough room, also reduce the width of a window
5366 * with 'winfixwidth' set. */
5367 if (width > room - room_reserved)
5368 room_reserved = room - width;
5369 /* If there is only a 'winfixwidth' window and making the
5370 * window smaller, need to make the other window narrower. */
5371 if (take < 0 && room - curfrp->fr_width < room_reserved)
5372 room_reserved = 0;
5373
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 /*
5375 * set the current frame to the new width
5376 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005377 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378
5379 /*
5380 * First take lines from the frames right of the current frame. If
5381 * that is not enough, takes lines from frames left of the current
5382 * frame.
5383 */
5384 for (run = 0; run < 2; ++run)
5385 {
5386 if (run == 0)
5387 frp = curfrp->fr_next; /* 1st run: start with next window */
5388 else
5389 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5390 while (frp != NULL && take != 0)
5391 {
5392 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005393 if (room_reserved > 0
5394 && frp->fr_win != NULL
5395 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005397 if (room_reserved >= frp->fr_width)
5398 room_reserved -= frp->fr_width;
5399 else
5400 {
5401 if (frp->fr_width - room_reserved > take)
5402 room_reserved = frp->fr_width - take;
5403 take -= frp->fr_width - room_reserved;
5404 frame_new_width(frp, room_reserved, FALSE, FALSE);
5405 room_reserved = 0;
5406 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 }
5408 else
5409 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005410 if (frp->fr_width - take < w)
5411 {
5412 take -= frp->fr_width - w;
5413 frame_new_width(frp, w, FALSE, FALSE);
5414 }
5415 else
5416 {
5417 frame_new_width(frp, frp->fr_width - take,
5418 FALSE, FALSE);
5419 take = 0;
5420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 }
5422 if (run == 0)
5423 frp = frp->fr_next;
5424 else
5425 frp = frp->fr_prev;
5426 }
5427 }
5428 }
5429}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430
5431/*
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005432 * Check 'winminheight' for a valid value and reduce it if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 */
5434 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005435win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436{
5437 int room;
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005438 int needed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005441 // loop until there is a 'winminheight' that is possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 while (p_wmh > 0)
5443 {
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005444 room = Rows - p_ch;
5445 needed = frame_minheight(topframe, NULL);
5446 if (room >= needed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 break;
5448 --p_wmh;
5449 if (first)
5450 {
5451 EMSG(_(e_noroom));
5452 first = FALSE;
5453 }
5454 }
5455}
5456
Bram Moolenaar1c3c1042018-06-12 16:49:30 +02005457/*
5458 * Check 'winminwidth' for a valid value and reduce it if needed.
5459 */
5460 void
5461win_setminwidth(void)
5462{
5463 int room;
5464 int needed;
5465 int first = TRUE;
5466
5467 // loop until there is a 'winminheight' that is possible
5468 while (p_wmw > 0)
5469 {
5470 room = Columns;
5471 needed = frame_minwidth(topframe, NULL);
5472 if (room >= needed)
5473 break;
5474 --p_wmw;
5475 if (first)
5476 {
5477 EMSG(_(e_noroom));
5478 first = FALSE;
5479 }
5480 }
5481}
5482
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005483#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484
5485/*
5486 * Status line of dragwin is dragged "offset" lines down (negative is up).
5487 */
5488 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005489win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490{
5491 frame_T *curfr;
5492 frame_T *fr;
5493 int room;
5494 int row;
5495 int up; /* if TRUE, drag status line up, otherwise down */
5496 int n;
5497
5498 fr = dragwin->w_frame;
5499 curfr = fr;
5500 if (fr != topframe) /* more than one window */
5501 {
5502 fr = fr->fr_parent;
5503 /* When the parent frame is not a column of frames, its parent should
5504 * be. */
5505 if (fr->fr_layout != FR_COL)
5506 {
5507 curfr = fr;
5508 if (fr != topframe) /* only a row of windows, may drag statusline */
5509 fr = fr->fr_parent;
5510 }
5511 }
5512
5513 /* If this is the last frame in a column, may want to resize the parent
5514 * frame instead (go two up to skip a row of frames). */
5515 while (curfr != topframe && curfr->fr_next == NULL)
5516 {
5517 if (fr != topframe)
5518 fr = fr->fr_parent;
5519 curfr = fr;
5520 if (fr != topframe)
5521 fr = fr->fr_parent;
5522 }
5523
5524 if (offset < 0) /* drag up */
5525 {
5526 up = TRUE;
5527 offset = -offset;
5528 /* sum up the room of the current frame and above it */
5529 if (fr == curfr)
5530 {
5531 /* only one window */
5532 room = fr->fr_height - frame_minheight(fr, NULL);
5533 }
5534 else
5535 {
5536 room = 0;
5537 for (fr = fr->fr_child; ; fr = fr->fr_next)
5538 {
5539 room += fr->fr_height - frame_minheight(fr, NULL);
5540 if (fr == curfr)
5541 break;
5542 }
5543 }
5544 fr = curfr->fr_next; /* put fr at frame that grows */
5545 }
5546 else /* drag down */
5547 {
5548 up = FALSE;
5549 /*
5550 * Only dragging the last status line can reduce p_ch.
5551 */
5552 room = Rows - cmdline_row;
5553 if (curfr->fr_next == NULL)
5554 room -= 1;
5555 else
5556 room -= p_ch;
5557 if (room < 0)
5558 room = 0;
5559 /* sum up the room of frames below of the current one */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005560 FOR_ALL_FRAMES(fr, curfr->fr_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 room += fr->fr_height - frame_minheight(fr, NULL);
5562 fr = curfr; /* put fr at window that grows */
5563 }
5564
5565 if (room < offset) /* Not enough room */
5566 offset = room; /* Move as far as we can */
5567 if (offset <= 0)
5568 return;
5569
5570 /*
5571 * Grow frame fr by "offset" lines.
5572 * Doesn't happen when dragging the last status line up.
5573 */
5574 if (fr != NULL)
5575 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5576
5577 if (up)
5578 fr = curfr; /* current frame gets smaller */
5579 else
5580 fr = curfr->fr_next; /* next frame gets smaller */
5581
5582 /*
5583 * Now make the other frames smaller.
5584 */
5585 while (fr != NULL && offset > 0)
5586 {
5587 n = frame_minheight(fr, NULL);
5588 if (fr->fr_height - offset <= n)
5589 {
5590 offset -= fr->fr_height - n;
5591 frame_new_height(fr, n, !up, FALSE);
5592 }
5593 else
5594 {
5595 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5596 break;
5597 }
5598 if (up)
5599 fr = fr->fr_prev;
5600 else
5601 fr = fr->fr_next;
5602 }
5603 row = win_comp_pos();
5604 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5605 cmdline_row = row;
5606 p_ch = Rows - cmdline_row;
5607 if (p_ch < 1)
5608 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005609 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005610 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 showmode();
5612}
5613
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614/*
5615 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5616 */
5617 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005618win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619{
5620 frame_T *curfr;
5621 frame_T *fr;
5622 int room;
5623 int left; /* if TRUE, drag separator line left, otherwise right */
5624 int n;
5625
5626 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005627 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 return;
5629 curfr = fr;
5630 fr = fr->fr_parent;
5631 /* When the parent frame is not a row of frames, its parent should be. */
5632 if (fr->fr_layout != FR_ROW)
5633 {
5634 if (fr == topframe) /* only a column of windows (cannot happen?) */
5635 return;
5636 curfr = fr;
5637 fr = fr->fr_parent;
5638 }
5639
5640 /* If this is the last frame in a row, may want to resize a parent
5641 * frame instead. */
5642 while (curfr->fr_next == NULL)
5643 {
5644 if (fr == topframe)
5645 break;
5646 curfr = fr;
5647 fr = fr->fr_parent;
5648 if (fr != topframe)
5649 {
5650 curfr = fr;
5651 fr = fr->fr_parent;
5652 }
5653 }
5654
5655 if (offset < 0) /* drag left */
5656 {
5657 left = TRUE;
5658 offset = -offset;
5659 /* sum up the room of the current frame and left of it */
5660 room = 0;
5661 for (fr = fr->fr_child; ; fr = fr->fr_next)
5662 {
5663 room += fr->fr_width - frame_minwidth(fr, NULL);
5664 if (fr == curfr)
5665 break;
5666 }
5667 fr = curfr->fr_next; /* put fr at frame that grows */
5668 }
5669 else /* drag right */
5670 {
5671 left = FALSE;
5672 /* sum up the room of frames right of the current one */
5673 room = 0;
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01005674 FOR_ALL_FRAMES(fr, curfr->fr_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 room += fr->fr_width - frame_minwidth(fr, NULL);
5676 fr = curfr; /* put fr at window that grows */
5677 }
5678
5679 if (room < offset) /* Not enough room */
5680 offset = room; /* Move as far as we can */
5681 if (offset <= 0) /* No room at all, quit. */
5682 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005683 if (fr == NULL)
5684 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685
5686 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005687 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688
5689 /* shrink other frames: current and at the left or at the right */
5690 if (left)
5691 fr = curfr; /* current frame gets smaller */
5692 else
5693 fr = curfr->fr_next; /* next frame gets smaller */
5694
5695 while (fr != NULL && offset > 0)
5696 {
5697 n = frame_minwidth(fr, NULL);
5698 if (fr->fr_width - offset <= n)
5699 {
5700 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005701 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 }
5703 else
5704 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005705 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 break;
5707 }
5708 if (left)
5709 fr = fr->fr_prev;
5710 else
5711 fr = fr->fr_next;
5712 }
5713 (void)win_comp_pos();
5714 redraw_all_later(NOT_VALID);
5715}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716#endif /* FEAT_MOUSE */
5717
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005718#define FRACTION_MULT 16384L
5719
5720/*
5721 * Set wp->w_fraction for the current w_wrow and w_height.
Bram Moolenaar3679c172017-11-22 22:22:11 +01005722 * Has no effect when the window is less than two lines.
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005723 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005724 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005725set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005726{
Bram Moolenaar3679c172017-11-22 22:22:11 +01005727 if (wp->w_height > 1)
5728 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005729 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005730}
5731
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732/*
5733 * Set the height of a window.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02005734 * "height" excludes any window toolbar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 * This takes care of the things inside the window, not what happens to the
5736 * window position, the frame or to other windows.
5737 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005738 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005739win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740{
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005741 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742
5743 /* Don't want a negative height. Happens when splitting a tiny window.
5744 * Will equalize heights soon to fix it. */
5745 if (height < 0)
5746 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005747 if (wp->w_height == height)
5748 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005750 if (wp->w_height > 0)
5751 {
5752 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005753 /* w_wrow needs to be valid. When setting 'laststatus' this may
5754 * call win_new_height() recursively. */
5755 validate_cursor();
5756 if (wp->w_height != prev_height)
5757 return; /* Recursive call already changed the size, bail out here
5758 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005759 if (wp->w_wrow != wp->w_prev_fraction_row)
5760 set_fraction(wp);
5761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762
5763 wp->w_height = height;
5764 wp->w_skipcol = 0;
5765
Bram Moolenaar955f1982017-02-05 15:10:51 +01005766 /* There is no point in adjusting the scroll position when exiting. Some
5767 * values might be invalid. */
5768 if (!exiting)
5769 scroll_to_fraction(wp, prev_height);
Bram Moolenaar46328f92016-08-28 15:39:57 +02005770}
5771
5772 void
5773scroll_to_fraction(win_T *wp, int prev_height)
5774{
5775 linenr_T lnum;
5776 int sline, line_size;
5777 int height = wp->w_height;
5778
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 /* Don't change w_topline when height is zero. Don't set w_topline when
5780 * 'scrollbind' is set and this isn't the current window. */
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01005781 if (height > 0 && (!wp->w_p_scb || wp == curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005783 /*
5784 * Find a value for w_topline that shows the cursor at the same
5785 * relative position in the window as before (more or less).
5786 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 lnum = wp->w_cursor.lnum;
5788 if (lnum < 1) /* can happen when starting up */
5789 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005790 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5791 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5793 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005794
5795 if (sline >= 0)
5796 {
5797 /* Make sure the whole cursor line is visible, if possible. */
5798 int rows = plines_win(wp, lnum, FALSE);
5799
5800 if (sline > wp->w_height - rows)
5801 {
5802 sline = wp->w_height - rows;
5803 wp->w_wrow -= rows - line_size;
5804 }
5805 }
5806
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 if (sline < 0)
5808 {
5809 /*
5810 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005811 * Make cursor line the first line in the window. If not enough
5812 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 */
5814 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005815 if (wp->w_wrow >= wp->w_height
Bram Moolenaar02631462017-09-22 15:20:32 +02005816 && (wp->w_width - win_col_off(wp)) > 0)
Bram Moolenaar26470632006-10-24 19:12:40 +00005817 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005818 wp->w_skipcol += wp->w_width - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00005819 --wp->w_wrow;
5820 while (wp->w_wrow >= wp->w_height)
5821 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005822 wp->w_skipcol += wp->w_width - win_col_off(wp)
Bram Moolenaar26470632006-10-24 19:12:40 +00005823 + win_col_off2(wp);
5824 --wp->w_wrow;
5825 }
5826 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005827 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005829 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005831 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 {
5833#ifdef FEAT_FOLDING
5834 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5835 if (lnum == 1)
5836 {
5837 /* first line in buffer is folded */
5838 line_size = 1;
5839 --sline;
5840 break;
5841 }
5842#endif
5843 --lnum;
5844#ifdef FEAT_DIFF
5845 if (lnum == wp->w_topline)
5846 line_size = plines_win_nofill(wp, lnum, TRUE)
5847 + wp->w_topfill;
5848 else
5849#endif
5850 line_size = plines_win(wp, lnum, TRUE);
5851 sline -= line_size;
5852 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005853
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 if (sline < 0)
5855 {
5856 /*
5857 * Line we want at top would go off top of screen. Use next
5858 * line instead.
5859 */
5860#ifdef FEAT_FOLDING
5861 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5862#endif
5863 lnum++;
5864 wp->w_wrow -= line_size + sline;
5865 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005866 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 {
5868 /* First line of file reached, use that as topline. */
5869 lnum = 1;
5870 wp->w_wrow -= sline;
5871 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005872
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005873 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 }
5876
5877 if (wp == curwin)
5878 {
5879 if (p_so)
5880 update_topline();
5881 curs_columns(FALSE); /* validate w_wrow */
5882 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005883 if (prev_height > 0)
5884 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885
5886 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005887 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 wp->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 invalidate_botline_win(wp);
5890}
5891
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892/*
5893 * Set the width of a window.
5894 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005895 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005896win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897{
5898 wp->w_width = width;
5899 wp->w_lines_valid = 0;
5900 changed_line_abv_curs_win(wp);
5901 invalidate_botline_win(wp);
5902 if (wp == curwin)
5903 {
5904 update_topline();
5905 curs_columns(TRUE); /* validate w_wrow */
5906 }
5907 redraw_win_later(wp, NOT_VALID);
5908 wp->w_redr_status = TRUE;
5909}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910
5911 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005912win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913{
5914 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5915 if (wp->w_p_scr == 0)
5916 wp->w_p_scr = 1;
5917}
5918
5919/*
5920 * command_height: called whenever p_ch has been changed
5921 */
5922 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005923command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 int h;
5926 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005927 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005929 /* Use the value of p_ch that we remembered. This is needed for when the
5930 * GUI starts up, we can't be sure in what order things happen. And when
5931 * p_ch was changed in another tab page. */
5932 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005933
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 /* Find bottom frame with width of screen. */
5935 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5937 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938
5939 /* Avoid changing the height of a window with 'winfixheight' set. */
5940 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5941 && frp->fr_win->w_p_wfh)
5942 frp = frp->fr_prev;
5943
5944 if (starting != NO_SCREEN)
5945 {
5946 cmdline_row = Rows - p_ch;
5947
5948 if (p_ch > old_p_ch) /* p_ch got bigger */
5949 {
5950 while (p_ch > old_p_ch)
5951 {
5952 if (frp == NULL)
5953 {
5954 EMSG(_(e_noroom));
5955 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005956 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 cmdline_row = Rows - p_ch;
5958 break;
5959 }
5960 h = frp->fr_height - frame_minheight(frp, NULL);
5961 if (h > p_ch - old_p_ch)
5962 h = p_ch - old_p_ch;
5963 old_p_ch += h;
5964 frame_add_height(frp, -h);
5965 frp = frp->fr_prev;
5966 }
5967
5968 /* Recompute window positions. */
5969 (void)win_comp_pos();
5970
5971 /* clear the lines added to cmdline */
5972 if (full_screen)
5973 screen_fill((int)(cmdline_row), (int)Rows, 0,
5974 (int)Columns, ' ', ' ', 0);
5975 msg_row = cmdline_row;
5976 redraw_cmdline = TRUE;
5977 return;
5978 }
5979
5980 if (msg_row < cmdline_row)
5981 msg_row = cmdline_row;
5982 redraw_cmdline = TRUE;
5983 }
5984 frame_add_height(frp, (int)(old_p_ch - p_ch));
5985
5986 /* Recompute window positions. */
5987 if (frp != lastwin->w_frame)
5988 (void)win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989}
5990
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991/*
5992 * Resize frame "frp" to be "n" lines higher (negative for less high).
5993 * Also resize the frames it is contained in.
5994 */
5995 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005996frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997{
5998 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5999 for (;;)
6000 {
6001 frp = frp->fr_parent;
6002 if (frp == NULL)
6003 break;
6004 frp->fr_height += n;
6005 }
6006}
6007
6008/*
6009 * Add or remove a status line for the bottom window(s), according to the
6010 * value of 'laststatus'.
6011 */
6012 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006013last_status(
6014 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015{
6016 /* Don't make a difference between horizontal or vertical split. */
6017 last_status_rec(topframe, (p_ls == 2
Bram Moolenaar459ca562016-11-10 18:16:33 +01006018 || (p_ls == 1 && (morewin || !ONE_WINDOW))));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019}
6020
6021 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006022last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023{
6024 frame_T *fp;
6025 win_T *wp;
6026
6027 if (fr->fr_layout == FR_LEAF)
6028 {
6029 wp = fr->fr_win;
6030 if (wp->w_status_height != 0 && !statusline)
6031 {
6032 /* remove status line */
6033 win_new_height(wp, wp->w_height + 1);
6034 wp->w_status_height = 0;
6035 comp_col();
6036 }
6037 else if (wp->w_status_height == 0 && statusline)
6038 {
6039 /* Find a frame to take a line from. */
6040 fp = fr;
6041 while (fp->fr_height <= frame_minheight(fp, NULL))
6042 {
6043 if (fp == topframe)
6044 {
6045 EMSG(_(e_noroom));
6046 return;
6047 }
6048 /* In a column of frames: go to frame above. If already at
6049 * the top or in a row of frames: go to parent. */
6050 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
6051 fp = fp->fr_prev;
6052 else
6053 fp = fp->fr_parent;
6054 }
6055 wp->w_status_height = 1;
6056 if (fp != fr)
6057 {
6058 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
6059 frame_fix_height(wp);
6060 (void)win_comp_pos();
6061 }
6062 else
6063 win_new_height(wp, wp->w_height - 1);
6064 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006065 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066 }
6067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 else if (fr->fr_layout == FR_ROW)
6069 {
6070 /* vertically split windows, set status line for each one */
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01006071 FOR_ALL_FRAMES(fp, fr->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 last_status_rec(fp, statusline);
6073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 else
6075 {
6076 /* horizontally split window, set status line for last one */
6077 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
6078 ;
6079 last_status_rec(fp, statusline);
6080 }
6081}
6082
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006083/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006084 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006085 */
6086 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006087tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006088{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006089#ifdef FEAT_GUI_TABLINE
6090 /* When the GUI has the tabline then this always returns zero. */
6091 if (gui_use_tabline())
6092 return 0;
6093#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006094 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006095 {
6096 case 0: return 0;
6097 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6098 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006099 return 1;
6100}
6101
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6103/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006104 * Get the file name at the cursor.
6105 * If Visual mode is active, use the selected text if it's in one line.
6106 * Returns the name in allocated memory, NULL for failure.
6107 */
6108 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006109grab_file_name(long count, linenr_T *file_lnum)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006110{
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006111 int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC;
6112
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006113 if (VIsual_active)
6114 {
6115 int len;
6116 char_u *ptr;
6117
6118 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6119 return NULL;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006120 return find_file_name_in_path(ptr, len, options,
6121 count, curbuf->b_ffname);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006122 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006123 return file_name_at_cursor(options | FNAME_HYP, count, file_lnum);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006124}
6125
6126/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 * Return the file name under or after the cursor.
6128 *
6129 * The 'path' option is searched if the file name is not absolute.
6130 * The string returned has been alloc'ed and should be freed by the caller.
6131 * NULL is returned if the file name or file is not found.
6132 *
6133 * options:
6134 * FNAME_MESS give error messages
6135 * FNAME_EXP expand to path
6136 * FNAME_HYP check for hypertext link
6137 * FNAME_INCL apply "includeexpr"
6138 */
6139 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006140file_name_at_cursor(int options, long count, linenr_T *file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141{
6142 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006143 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6144 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145}
6146
6147/*
6148 * Return the name of the file under or after ptr[col].
6149 * Otherwise like file_name_at_cursor().
6150 */
6151 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006152file_name_in_line(
6153 char_u *line,
6154 int col,
6155 int options,
6156 long count,
6157 char_u *rel_fname, /* file we are searching relative to */
6158 linenr_T *file_lnum) /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159{
6160 char_u *ptr;
6161 int len;
Bram Moolenaar9e3dfc62017-12-25 14:29:18 +01006162 int in_type = TRUE;
6163 int is_url = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164
6165 /*
6166 * search forward for what could be the start of a file name
6167 */
6168 ptr = line + col;
6169 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006170 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 if (*ptr == NUL) /* nothing found */
6172 {
6173 if (options & FNAME_MESS)
6174 EMSG(_("E446: No file name under cursor"));
6175 return NULL;
6176 }
6177
6178 /*
6179 * Search backward for first char of the file name.
6180 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6181 */
6182 while (ptr > line)
6183 {
6184#ifdef FEAT_MBYTE
6185 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6186 ptr -= len + 1;
6187 else
6188#endif
6189 if (vim_isfilec(ptr[-1])
6190 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6191 --ptr;
6192 else
6193 break;
6194 }
6195
6196 /*
6197 * Search forward for the last char of the file name.
6198 * Also allow "://" when ':' is not in 'isfname'.
6199 */
6200 len = 0;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006201 while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
Bram Moolenaar9e3dfc62017-12-25 14:29:18 +01006202 || ((options & FNAME_HYP) && path_is_url(ptr + len))
6203 || (is_url && vim_strchr((char_u *)"?&=", ptr[len]) != NULL))
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006204 {
Bram Moolenaar9e3dfc62017-12-25 14:29:18 +01006205 /* After type:// we also include ?, & and = as valid characters, so that
6206 * http://google.com?q=this&that=ok works. */
6207 if ((ptr[len] >= 'A' && ptr[len] <= 'Z') || (ptr[len] >= 'a' && ptr[len] <= 'z'))
6208 {
6209 if (in_type && path_is_url(ptr + len + 1))
6210 is_url = TRUE;
6211 }
6212 else
6213 in_type = FALSE;
6214
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006215 if (ptr[len] == '\\')
6216 /* Skip over the "\" in "\ ". */
6217 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218#ifdef FEAT_MBYTE
6219 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006220 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 else
6222#endif
6223 ++len;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225
6226 /*
6227 * If there is trailing punctuation, remove it.
6228 * But don't remove "..", could be a directory name.
6229 */
6230 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6231 && ptr[len - 2] != '.')
6232 --len;
6233
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006234 if (file_lnum != NULL)
6235 {
6236 char_u *p;
6237
6238 /* Get the number after the file name and a separator character */
6239 p = ptr + len;
6240 p = skipwhite(p);
6241 if (*p != NUL)
6242 {
6243 if (!isdigit(*p))
6244 ++p; /* skip the separator */
6245 p = skipwhite(p);
6246 if (isdigit(*p))
6247 *file_lnum = (int)getdigits(&p);
6248 }
6249 }
6250
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6252}
6253
6254# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 static char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006256eval_includeexpr(char_u *ptr, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257{
6258 char_u *res;
6259
6260 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006261 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006262 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 set_vim_var_string(VV_FNAME, NULL, 0);
6264 return res;
6265}
6266#endif
6267
6268/*
6269 * Return the name of the file ptr[len] in 'path'.
6270 * Otherwise like file_name_at_cursor().
6271 */
6272 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006273find_file_name_in_path(
6274 char_u *ptr,
6275 int len,
6276 int options,
6277 long count,
6278 char_u *rel_fname) /* file we are searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279{
6280 char_u *file_name;
6281 int c;
6282# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6283 char_u *tofree = NULL;
6284
6285 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6286 {
6287 tofree = eval_includeexpr(ptr, len);
6288 if (tofree != NULL)
6289 {
6290 ptr = tofree;
6291 len = (int)STRLEN(ptr);
6292 }
6293 }
6294# endif
6295
6296 if (options & FNAME_EXP)
6297 {
6298 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6299 TRUE, rel_fname);
6300
6301# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6302 /*
6303 * If the file could not be found in a normal way, try applying
6304 * 'includeexpr' (unless done already).
6305 */
6306 if (file_name == NULL
6307 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6308 {
6309 tofree = eval_includeexpr(ptr, len);
6310 if (tofree != NULL)
6311 {
6312 ptr = tofree;
6313 len = (int)STRLEN(ptr);
6314 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6315 TRUE, rel_fname);
6316 }
6317 }
6318# endif
6319 if (file_name == NULL && (options & FNAME_MESS))
6320 {
6321 c = ptr[len];
6322 ptr[len] = NUL;
6323 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6324 ptr[len] = c;
6325 }
6326
6327 /* Repeat finding the file "count" times. This matters when it
6328 * appears several times in the path. */
6329 while (file_name != NULL && --count > 0)
6330 {
6331 vim_free(file_name);
6332 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6333 }
6334 }
6335 else
6336 file_name = vim_strnsave(ptr, len);
6337
6338# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6339 vim_free(tofree);
6340# endif
6341
6342 return file_name;
6343}
6344#endif /* FEAT_SEARCHPATH */
6345
6346/*
6347 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6348 * Also check for ":\\", which MS Internet Explorer accepts, return
6349 * URL_BACKSLASH.
6350 */
6351 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006352path_is_url(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353{
6354 if (STRNCMP(p, "://", (size_t)3) == 0)
6355 return URL_SLASH;
6356 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6357 return URL_BACKSLASH;
6358 return 0;
6359}
6360
6361/*
6362 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6363 * Return URL_BACKSLASH for "name:\\".
6364 * Return zero otherwise.
6365 */
6366 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006367path_with_url(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368{
6369 char_u *p;
6370
6371 for (p = fname; isalpha(*p); ++p)
6372 ;
6373 return path_is_url(p);
6374}
6375
6376/*
6377 * Return TRUE if "name" is a full (absolute) path name or URL.
6378 */
6379 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006380vim_isAbsName(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381{
6382 return (path_with_url(name) != 0 || mch_isFullName(name));
6383}
6384
6385/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006386 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 *
6388 * return FAIL for failure, OK otherwise
6389 */
6390 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006391vim_FullName(
6392 char_u *fname,
6393 char_u *buf,
6394 int len,
6395 int force) /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396{
6397 int retval = OK;
6398 int url;
6399
6400 *buf = NUL;
6401 if (fname == NULL)
6402 return FAIL;
6403
6404 url = path_with_url(fname);
6405 if (!url)
6406 retval = mch_FullName(fname, buf, len, force);
6407 if (url || retval == FAIL)
6408 {
6409 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006410 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411 }
Bram Moolenaard0573012017-10-28 21:11:06 +02006412#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 slash_adjust(buf);
6414#endif
6415 return retval;
6416}
6417
6418/*
6419 * Return the minimal number of rows that is needed on the screen to display
6420 * the current number of windows.
6421 */
6422 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006423min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424{
6425 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006426 tabpage_T *tp;
6427 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428
6429 if (firstwin == NULL) /* not initialized yet */
6430 return MIN_LINES;
6431
Bram Moolenaarf740b292006-02-16 22:11:02 +00006432 total = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02006433 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006434 {
6435 n = frame_minheight(tp->tp_topframe, NULL);
6436 if (total < n)
6437 total = n;
6438 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006439 total += tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006440 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 return total;
6442}
6443
6444/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006445 * Return TRUE if there is only one window (in the current tab page), not
6446 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006447 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 */
6449 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006450only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 int count = 0;
6453 win_T *wp;
6454
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006455 /* If there is another tab page there always is another window. */
6456 if (first_tabpage->tp_next != NULL)
6457 return FALSE;
6458
Bram Moolenaar29323592016-07-24 22:04:11 +02006459 FOR_ALL_WINDOWS(wp)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006460 if (wp->w_buffer != NULL
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006461 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462# ifdef FEAT_QUICKFIX
6463 || wp->w_p_pvw
6464# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006465 ) || wp == curwin) && wp != aucmd_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 ++count;
6467 return (count <= 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468}
6469
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470/*
6471 * Correct the cursor line number in other windows. Used after changing the
6472 * current buffer, and before applying autocommands.
6473 * When "do_curwin" is TRUE, also check current window.
6474 */
6475 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006476check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477{
6478 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006479 tabpage_T *tp;
6480
6481 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 {
6484 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6485 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6486 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6487 wp->w_topline = curbuf->b_ml.ml_line_count;
6488 }
6489}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490
6491/*
6492 * A snapshot of the window sizes, to restore them after closing the help
6493 * window.
6494 * Only these fields are used:
6495 * fr_layout
6496 * fr_width
6497 * fr_height
6498 * fr_next
6499 * fr_child
6500 * fr_win (only valid for the old curwin, NULL otherwise)
6501 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502
6503/*
6504 * Create a snapshot of the current frame sizes.
6505 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006506 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006507make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006508{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006509 clear_snapshot(curtab, idx);
6510 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006511}
6512
6513 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006514make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515{
6516 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6517 if (*frp == NULL)
6518 return;
6519 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 (*frp)->fr_height = fr->fr_height;
6522 if (fr->fr_next != NULL)
6523 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6524 if (fr->fr_child != NULL)
6525 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6526 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6527 (*frp)->fr_win = curwin;
6528}
6529
6530/*
6531 * Remove any existing snapshot.
6532 */
6533 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006534clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006536 clear_snapshot_rec(tp->tp_snapshot[idx]);
6537 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538}
6539
6540 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006541clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542{
6543 if (fr != NULL)
6544 {
6545 clear_snapshot_rec(fr->fr_next);
6546 clear_snapshot_rec(fr->fr_child);
6547 vim_free(fr);
6548 }
6549}
6550
6551/*
6552 * Restore a previously created snapshot, if there is any.
6553 * This is only done if the screen size didn't change and the window layout is
6554 * still the same.
6555 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006556 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006557restore_snapshot(
6558 int idx,
6559 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560{
6561 win_T *wp;
6562
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006563 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006564 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006565 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6566 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006568 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 win_comp_pos();
6570 if (wp != NULL && close_curwin)
6571 win_goto(wp);
6572 redraw_all_later(CLEAR);
6573 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006574 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575}
6576
6577/*
6578 * Check if frames "sn" and "fr" have the same layout, same following frames
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006579 * and same children. And the window pointer is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 */
6581 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006582check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583{
6584 if (sn->fr_layout != fr->fr_layout
6585 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6586 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6587 || (sn->fr_next != NULL
6588 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6589 || (sn->fr_child != NULL
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006590 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL)
Bram Moolenaar2c90d512017-03-18 22:35:30 +01006591 || (sn->fr_win != NULL && !win_valid(sn->fr_win)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 return FAIL;
6593 return OK;
6594}
6595
6596/*
6597 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6598 * following frames and children.
6599 * Returns a pointer to the old current window, or NULL.
6600 */
6601 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006602restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603{
6604 win_T *wp = NULL;
6605 win_T *wp2;
6606
6607 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 if (fr->fr_layout == FR_LEAF)
6610 {
6611 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006612 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 wp = sn->fr_win;
6614 }
6615 if (sn->fr_next != NULL)
6616 {
6617 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6618 if (wp2 != NULL)
6619 wp = wp2;
6620 }
6621 if (sn->fr_child != NULL)
6622 {
6623 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6624 if (wp2 != NULL)
6625 wp = wp2;
6626 }
6627 return wp;
6628}
6629
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006630#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6631 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006632/*
6633 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006634 * restore_win() MUST be called to undo, also when FAIL is returned.
6635 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006636 * When "no_display" is TRUE the display won't be affected, no redraw is
6637 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006638 * Returns FAIL if switching to "win" failed.
6639 */
6640 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006641switch_win(
Bram Moolenaar816968d2017-09-29 21:29:18 +02006642 win_T **save_curwin,
6643 tabpage_T **save_curtab,
6644 win_T *win,
6645 tabpage_T *tp,
6646 int no_display)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006647{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006648 block_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006649 *save_curwin = curwin;
6650 if (tp != NULL)
6651 {
6652 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006653 if (no_display)
6654 {
6655 curtab->tp_firstwin = firstwin;
6656 curtab->tp_lastwin = lastwin;
6657 curtab = tp;
6658 firstwin = curtab->tp_firstwin;
6659 lastwin = curtab->tp_lastwin;
6660 }
6661 else
6662 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006663 }
6664 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006665 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006666 curwin = win;
6667 curbuf = curwin->w_buffer;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006668 return OK;
6669}
6670
6671/*
6672 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006673 * When "no_display" is TRUE the display won't be affected, no redraw is
6674 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006675 */
6676 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006677restore_win(
6678 win_T *save_curwin UNUSED,
6679 tabpage_T *save_curtab UNUSED,
6680 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006681{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006682 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006683 {
6684 if (no_display)
6685 {
6686 curtab->tp_firstwin = firstwin;
6687 curtab->tp_lastwin = lastwin;
6688 curtab = save_curtab;
6689 firstwin = curtab->tp_firstwin;
6690 lastwin = curtab->tp_lastwin;
6691 }
6692 else
6693 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6694 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006695 if (win_valid(save_curwin))
6696 {
6697 curwin = save_curwin;
6698 curbuf = curwin->w_buffer;
6699 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006700 unblock_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006701}
6702
6703/*
6704 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6705 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6706 */
6707 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006708switch_buffer(bufref_T *save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006709{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006710 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006711 set_bufref(save_curbuf, curbuf);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006712 --curbuf->b_nwindows;
6713 curbuf = buf;
6714 curwin->w_buffer = buf;
6715 ++curbuf->b_nwindows;
6716}
6717
6718/*
6719 * Restore the current buffer after using switch_buffer().
6720 */
6721 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006722restore_buffer(bufref_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006723{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006724 unblock_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006725 /* Check for valid buffer, just in case. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006726 if (bufref_valid(save_curbuf))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006727 {
6728 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006729 curwin->w_buffer = save_curbuf->br_buf;
6730 curbuf = save_curbuf->br_buf;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006731 ++curbuf->b_nwindows;
6732 }
6733}
6734#endif
6735
Bram Moolenaar4033c552017-09-16 20:54:51 +02006736#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737/*
6738 * Return TRUE if there is any vertically split window.
6739 */
6740 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006741win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742{
6743 frame_T *fr;
6744
6745 if (topframe->fr_layout == FR_ROW)
6746 return TRUE;
6747
6748 if (topframe->fr_layout == FR_COL)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01006749 FOR_ALL_FRAMES(fr, topframe->fr_child)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 if (fr->fr_layout == FR_ROW)
6751 return TRUE;
6752
6753 return FALSE;
6754}
6755#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006756
6757#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6758/*
6759 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006760 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006761 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6762 * If no particular ID is desired, -1 must be specified for 'id'.
6763 * Return ID of added match, -1 on failure.
6764 */
6765 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006766match_add(
6767 win_T *wp,
6768 char_u *grp,
6769 char_u *pat,
6770 int prio,
6771 int id,
6772 list_T *pos_list,
6773 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006774{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006775 matchitem_T *cur;
6776 matchitem_T *prev;
6777 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006778 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006779 regprog_T *regprog = NULL;
6780 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006781
Bram Moolenaarb3414592014-06-17 17:48:32 +02006782 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006783 return -1;
6784 if (id < -1 || id == 0)
6785 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02006786 EMSGN(_("E799: Invalid ID: %ld (must be greater than or equal to 1)"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006787 return -1;
6788 }
6789 if (id != -1)
6790 {
6791 cur = wp->w_match_head;
6792 while (cur != NULL)
6793 {
6794 if (cur->id == id)
6795 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02006796 EMSGN(_("E801: ID already taken: %ld"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006797 return -1;
6798 }
6799 cur = cur->next;
6800 }
6801 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006802 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006803 {
6804 EMSG2(_(e_nogroup), grp);
6805 return -1;
6806 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006807 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006808 {
6809 EMSG2(_(e_invarg2), pat);
6810 return -1;
6811 }
6812
6813 /* Find available match ID. */
6814 while (id == -1)
6815 {
6816 cur = wp->w_match_head;
6817 while (cur != NULL && cur->id != wp->w_next_match_id)
6818 cur = cur->next;
6819 if (cur == NULL)
6820 id = wp->w_next_match_id;
6821 wp->w_next_match_id++;
6822 }
6823
6824 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006825 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006826 m->id = id;
6827 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006828 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006829 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006830 m->match.regprog = regprog;
6831 m->match.rmm_ic = FALSE;
6832 m->match.rmm_maxcol = 0;
Bram Moolenaar42356152016-03-31 22:27:40 +02006833# if defined(FEAT_CONCEAL) && defined(FEAT_MBYTE)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006834 m->conceal_char = 0;
6835 if (conceal_char != NULL)
6836 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006837# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006838
Bram Moolenaarb3414592014-06-17 17:48:32 +02006839 /* Set up position matches */
6840 if (pos_list != NULL)
6841 {
6842 linenr_T toplnum = 0;
6843 linenr_T botlnum = 0;
6844 listitem_T *li;
6845 int i;
6846
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006847 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006848 i++, li = li->li_next)
6849 {
6850 linenr_T lnum = 0;
6851 colnr_T col = 0;
6852 int len = 1;
6853 list_T *subl;
6854 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006855 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006856
Bram Moolenaarb3414592014-06-17 17:48:32 +02006857 if (li->li_tv.v_type == VAR_LIST)
6858 {
6859 subl = li->li_tv.vval.v_list;
6860 if (subl == NULL)
6861 goto fail;
6862 subli = subl->lv_first;
6863 if (subli == NULL)
6864 goto fail;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01006865 lnum = tv_get_number_chk(&subli->li_tv, &error);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006866 if (error == TRUE)
6867 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006868 if (lnum == 0)
6869 {
6870 --i;
6871 continue;
6872 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006873 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006874 subli = subli->li_next;
6875 if (subli != NULL)
6876 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01006877 col = tv_get_number_chk(&subli->li_tv, &error);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006878 if (error == TRUE)
6879 goto fail;
6880 subli = subli->li_next;
6881 if (subli != NULL)
6882 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01006883 len = tv_get_number_chk(&subli->li_tv, &error);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006884 if (error == TRUE)
6885 goto fail;
6886 }
6887 }
6888 m->pos.pos[i].col = col;
6889 m->pos.pos[i].len = len;
6890 }
6891 else if (li->li_tv.v_type == VAR_NUMBER)
6892 {
6893 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006894 {
6895 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006896 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006897 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006898 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6899 m->pos.pos[i].col = 0;
6900 m->pos.pos[i].len = 0;
6901 }
6902 else
6903 {
6904 EMSG(_("List or number required"));
6905 goto fail;
6906 }
6907 if (toplnum == 0 || lnum < toplnum)
6908 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006909 if (botlnum == 0 || lnum >= botlnum)
6910 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006911 }
6912
6913 /* Calculate top and bottom lines for redrawing area */
6914 if (toplnum != 0)
6915 {
6916 if (wp->w_buffer->b_mod_set)
6917 {
6918 if (wp->w_buffer->b_mod_top > toplnum)
6919 wp->w_buffer->b_mod_top = toplnum;
6920 if (wp->w_buffer->b_mod_bot < botlnum)
6921 wp->w_buffer->b_mod_bot = botlnum;
6922 }
6923 else
6924 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006925 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006926 wp->w_buffer->b_mod_top = toplnum;
6927 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006928 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006929 }
6930 m->pos.toplnum = toplnum;
6931 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006932 rtype = VALID;
6933 }
6934 }
6935
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006936 /* Insert new match. The match list is in ascending order with regard to
6937 * the match priorities. */
6938 cur = wp->w_match_head;
6939 prev = cur;
6940 while (cur != NULL && prio >= cur->priority)
6941 {
6942 prev = cur;
6943 cur = cur->next;
6944 }
6945 if (cur == prev)
6946 wp->w_match_head = m;
6947 else
6948 prev->next = m;
6949 m->next = cur;
6950
Bram Moolenaarb3414592014-06-17 17:48:32 +02006951 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006952 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006953
6954fail:
6955 vim_free(m);
6956 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006957}
6958
6959/*
6960 * Delete match with ID 'id' in the match list of window 'wp'.
6961 * Print error messages if 'perr' is TRUE.
6962 */
6963 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006964match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006965{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006966 matchitem_T *cur = wp->w_match_head;
6967 matchitem_T *prev = cur;
6968 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006969
6970 if (id < 1)
6971 {
6972 if (perr == TRUE)
Bram Moolenaar5b302912016-08-24 22:11:55 +02006973 EMSGN(_("E802: Invalid ID: %ld (must be greater than or equal to 1)"),
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006974 id);
6975 return -1;
6976 }
6977 while (cur != NULL && cur->id != id)
6978 {
6979 prev = cur;
6980 cur = cur->next;
6981 }
6982 if (cur == NULL)
6983 {
6984 if (perr == TRUE)
Bram Moolenaar5b302912016-08-24 22:11:55 +02006985 EMSGN(_("E803: ID not found: %ld"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006986 return -1;
6987 }
6988 if (cur == prev)
6989 wp->w_match_head = cur->next;
6990 else
6991 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006992 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006993 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006994 if (cur->pos.toplnum != 0)
6995 {
6996 if (wp->w_buffer->b_mod_set)
6997 {
6998 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6999 wp->w_buffer->b_mod_top = cur->pos.toplnum;
7000 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
7001 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
7002 }
7003 else
7004 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02007005 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02007006 wp->w_buffer->b_mod_top = cur->pos.toplnum;
7007 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02007008 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02007009 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02007010 rtype = VALID;
7011 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007012 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02007013 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007014 return 0;
7015}
7016
7017/*
7018 * Delete all matches in the match list of window 'wp'.
7019 */
7020 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007021clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007022{
7023 matchitem_T *m;
7024
7025 while (wp->w_match_head != NULL)
7026 {
7027 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02007028 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007029 vim_free(wp->w_match_head->pattern);
7030 vim_free(wp->w_match_head);
7031 wp->w_match_head = m;
7032 }
7033 redraw_later(SOME_VALID);
7034}
7035
7036/*
7037 * Get match from ID 'id' in window 'wp'.
7038 * Return NULL if match not found.
7039 */
7040 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007041get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007042{
7043 matchitem_T *cur = wp->w_match_head;
7044
7045 while (cur != NULL && cur->id != id)
7046 cur = cur->next;
7047 return cur;
7048}
7049#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02007050
7051#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
7052 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007053get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02007054{
7055 int i = 1;
7056 win_T *w;
7057
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007058 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02007059 ++i;
7060
7061 if (w == NULL)
7062 return 0;
7063 else
7064 return i;
7065}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007066
7067 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007068get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007069{
7070 int i = 1;
7071 tabpage_T *t;
7072
7073 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7074 ++i;
7075
7076 if (t == NULL)
7077 return 0;
7078 else
7079 return i;
7080}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007081#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007082
7083/*
7084 * Return TRUE if "topfrp" and its children are at the right height.
7085 */
7086 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007087frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007088{
7089 frame_T *frp;
7090
7091 if (topfrp->fr_height != height)
7092 return FALSE;
7093
7094 if (topfrp->fr_layout == FR_ROW)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01007095 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007096 if (frp->fr_height != height)
7097 return FALSE;
7098
7099 return TRUE;
7100}
7101
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007102/*
7103 * Return TRUE if "topfrp" and its children are at the right width.
7104 */
7105 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007106frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007107{
7108 frame_T *frp;
7109
7110 if (topfrp->fr_width != width)
7111 return FALSE;
7112
7113 if (topfrp->fr_layout == FR_COL)
Bram Moolenaar3d1491e2018-12-22 17:07:50 +01007114 FOR_ALL_FRAMES(frp, topfrp->fr_child)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007115 if (frp->fr_width != width)
7116 return FALSE;
7117
7118 return TRUE;
7119}
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007120
Bram Moolenaar86edef62016-03-13 18:07:30 +01007121#if defined(FEAT_EVAL) || defined(PROTO)
7122 int
7123win_getid(typval_T *argvars)
7124{
7125 int winnr;
7126 win_T *wp;
7127
7128 if (argvars[0].v_type == VAR_UNKNOWN)
7129 return curwin->w_id;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007130 winnr = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007131 if (winnr > 0)
7132 {
7133 if (argvars[1].v_type == VAR_UNKNOWN)
7134 wp = firstwin;
7135 else
7136 {
7137 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007138 int tabnr = tv_get_number(&argvars[1]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007139
Bram Moolenaar29323592016-07-24 22:04:11 +02007140 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007141 if (--tabnr == 0)
7142 break;
7143 if (tp == NULL)
7144 return -1;
Bram Moolenaar8e639052016-11-13 14:31:40 +01007145 if (tp == curtab)
7146 wp = firstwin;
7147 else
7148 wp = tp->tp_firstwin;
Bram Moolenaar86edef62016-03-13 18:07:30 +01007149 }
7150 for ( ; wp != NULL; wp = wp->w_next)
7151 if (--winnr == 0)
7152 return wp->w_id;
7153 }
7154 return 0;
7155}
7156
7157 int
7158win_gotoid(typval_T *argvars)
7159{
7160 win_T *wp;
7161 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007162 int id = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007163
Bram Moolenaar29323592016-07-24 22:04:11 +02007164 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007165 if (wp->w_id == id)
7166 {
7167 goto_tabpage_win(tp, wp);
7168 return 1;
7169 }
7170 return 0;
7171}
7172
7173 void
7174win_id2tabwin(typval_T *argvars, list_T *list)
7175{
7176 win_T *wp;
7177 tabpage_T *tp;
7178 int winnr = 1;
7179 int tabnr = 1;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007180 int id = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007181
Bram Moolenaar29323592016-07-24 22:04:11 +02007182 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007183 {
Bram Moolenaar29323592016-07-24 22:04:11 +02007184 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007185 {
7186 if (wp->w_id == id)
7187 {
7188 list_append_number(list, tabnr);
7189 list_append_number(list, winnr);
7190 return;
7191 }
7192 ++winnr;
7193 }
7194 ++tabnr;
7195 winnr = 1;
7196 }
7197 list_append_number(list, 0);
7198 list_append_number(list, 0);
7199}
7200
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007201 win_T *
7202win_id2wp(typval_T *argvars)
7203{
7204 win_T *wp;
7205 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007206 int id = tv_get_number(&argvars[0]);
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007207
7208 FOR_ALL_TAB_WINDOWS(tp, wp)
7209 if (wp->w_id == id)
7210 return wp;
7211
7212 return NULL;
7213}
7214
Bram Moolenaar86edef62016-03-13 18:07:30 +01007215 int
7216win_id2win(typval_T *argvars)
7217{
7218 win_T *wp;
7219 int nr = 1;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007220 int id = tv_get_number(&argvars[0]);
Bram Moolenaar86edef62016-03-13 18:07:30 +01007221
Bram Moolenaar29323592016-07-24 22:04:11 +02007222 FOR_ALL_WINDOWS(wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007223 {
7224 if (wp->w_id == id)
7225 return nr;
7226 ++nr;
7227 }
7228 return 0;
7229}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007230
7231 void
7232win_findbuf(typval_T *argvars, list_T *list)
7233{
7234 win_T *wp;
7235 tabpage_T *tp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007236 int bufnr = tv_get_number(&argvars[0]);
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007237
Bram Moolenaar29323592016-07-24 22:04:11 +02007238 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007239 if (wp->w_buffer->b_fnum == bufnr)
7240 list_append_number(list, wp->w_id);
7241}
7242
Bram Moolenaar0f6b4f02018-08-21 16:56:34 +02007243/*
7244 * Get the layout of the given tab page for winlayout().
7245 */
7246 void
7247get_framelayout(frame_T *fr, list_T *l, int outer)
7248{
7249 frame_T *child;
7250 list_T *fr_list;
7251 list_T *win_list;
7252
7253 if (fr == NULL)
7254 return;
7255
7256 if (outer)
7257 // outermost call from f_winlayout()
7258 fr_list = l;
7259 else
7260 {
7261 fr_list = list_alloc();
7262 if (fr_list == NULL)
7263 return;
7264 list_append_list(l, fr_list);
7265 }
7266
7267 if (fr->fr_layout == FR_LEAF)
7268 {
7269 if (fr->fr_win != NULL)
7270 {
7271 list_append_string(fr_list, (char_u *)"leaf", -1);
7272 list_append_number(fr_list, fr->fr_win->w_id);
7273 }
7274 }
7275 else
7276 {
7277 list_append_string(fr_list,
7278 fr->fr_layout == FR_ROW ? (char_u *)"row" : (char_u *)"col", -1);
7279
7280 win_list = list_alloc();
7281 if (win_list == NULL)
7282 return;
7283 list_append_list(fr_list, win_list);
7284 child = fr->fr_child;
7285 while (child != NULL)
7286 {
7287 get_framelayout(child, win_list, FALSE);
7288 child = child->fr_next;
7289 }
7290 }
7291}
Bram Moolenaar86edef62016-03-13 18:07:30 +01007292#endif