blob: 74e3c046985b62b2c245ff66fe86a3f03152100e [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read a list of people who contributed.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010012static int path_is_url(char_u *p);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010013static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum);
14static void win_init(win_T *newp, win_T *oldp, int flags);
15static void win_init_some(win_T *newp, win_T *oldp);
16static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
17static void frame_setheight(frame_T *curfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010018static void frame_setwidth(frame_T *curfrp, int width);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static void win_exchange(long);
20static void win_rotate(int, int);
21static void win_totop(int size, int flags);
22static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
23static int last_window(void);
24static int close_last_window_tabpage(win_T *win, int free_buf, tabpage_T *prev_curtab);
25static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
26static frame_T *win_altframe(win_T *win, tabpage_T *tp);
27static tabpage_T *alt_tabpage(void);
28static win_T *frame2win(frame_T *frp);
29static int frame_has_win(frame_T *frp, win_T *wp);
30static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
31static int frame_fixed_height(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010032static int frame_fixed_width(frame_T *frp);
33static void frame_add_statusline(frame_T *frp);
34static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
35static void frame_add_vsep(frame_T *frp);
36static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
37static void frame_fix_width(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010038static int win_alloc_firstwin(win_T *oldwin);
39static void new_frame(win_T *wp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010040static tabpage_T *alloc_tabpage(void);
41static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds);
42static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds);
43static void frame_fix_height(win_T *wp);
44static int frame_minheight(frame_T *topfrp, win_T *next_curwin);
Bram Moolenaarc917da42016-07-19 22:31:36 +020045static void win_enter_ext(win_T *wp, int undo_sync, int no_curwin, int trigger_new_autocmds, int trigger_enter_autocmds, int trigger_leave_autocmds);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010046static void win_free(win_T *wp, tabpage_T *tp);
47static void frame_append(frame_T *after, frame_T *frp);
48static void frame_insert(frame_T *before, frame_T *frp);
49static void frame_remove(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010050static void win_goto_ver(int up, long count);
51static void win_goto_hor(int left, long count);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010052static void frame_add_height(frame_T *frp, int n);
53static void last_status_rec(frame_T *fr, int statusline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010055static void make_snapshot_rec(frame_T *fr, frame_T **frp);
56static void clear_snapshot(tabpage_T *tp, int idx);
57static void clear_snapshot_rec(frame_T *fr);
58static int check_snapshot_rec(frame_T *sn, frame_T *fr);
59static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010061static int frame_check_height(frame_T *topfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010062static int frame_check_width(frame_T *topfrp, int width);
Bram Moolenaarb893ac22013-06-26 14:04:47 +020063
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010064static win_T *win_alloc(win_T *after, int hidden);
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
66#define URL_SLASH 1 /* path_is_url() has found "://" */
67#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
68
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000069#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
Bram Moolenaar4033c552017-09-16 20:54:51 +020071#define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000072
73static char *m_onlyone = N_("Already only one window");
74
Bram Moolenaar071d4272004-06-13 20:20:40 +000075/*
76 * all CTRL-W window commands are handled here, called from normal_cmd().
77 */
78 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010079do_window(
80 int nchar,
81 long Prenum,
82 int xchar) /* extra char from ":wincmd gx" or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000083{
84 long Prenum1;
85 win_T *wp;
86#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
87 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +000088 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90#ifdef FEAT_FIND_ID
91 int type = FIND_DEFINE;
92 int len;
93#endif
94 char_u cbuf[40];
95
96 if (Prenum == 0)
97 Prenum1 = 1;
98 else
99 Prenum1 = Prenum;
100
101#ifdef FEAT_CMDWIN
Bram Moolenaar6f470022018-04-10 18:47:20 +0200102# define CHECK_CMDWIN \
103 do { \
104 if (cmdwin_type != 0) \
105 { \
106 EMSG(_(e_cmdwin)); \
107 return; \
108 } \
109 } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110#else
Bram Moolenaar6f470022018-04-10 18:47:20 +0200111# define CHECK_CMDWIN do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#endif
113
114 switch (nchar)
115 {
116/* split current window in two parts, horizontally */
117 case 'S':
118 case Ctrl_S:
119 case 's':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200120 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000122#ifdef FEAT_QUICKFIX
123 /* When splitting the quickfix window open a new buffer in it,
124 * don't replicate the quickfix buffer. */
125 if (bt_quickfix(curbuf))
126 goto newwindow;
127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128#ifdef FEAT_GUI
129 need_mouse_correct = TRUE;
130#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200131 (void)win_split((int)Prenum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 break;
133
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134/* split current window in two parts, vertically */
135 case Ctrl_V:
136 case 'v':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200137 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100139#ifdef FEAT_QUICKFIX
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000140 /* When splitting the quickfix window open a new buffer in it,
141 * don't replicate the quickfix buffer. */
142 if (bt_quickfix(curbuf))
143 goto newwindow;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100144#endif
145#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100147#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200148 (void)win_split((int)Prenum, WSP_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150
151/* split current window and edit alternate file */
152 case Ctrl_HAT:
153 case '^':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200154 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100156 cmd_with_count("split #", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 do_cmdline_cmd(cbuf);
158 break;
159
160/* open new window */
161 case Ctrl_N:
162 case 'n':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200163 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000165#ifdef FEAT_QUICKFIX
166newwindow:
167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000169 /* window height */
170 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 else
172 cbuf[0] = NUL;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100173#if defined(FEAT_QUICKFIX)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000174 if (nchar == 'v' || nchar == Ctrl_V)
175 STRCAT(cbuf, "v");
176#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 STRCAT(cbuf, "new");
178 do_cmdline_cmd(cbuf);
179 break;
180
181/* quit current window */
182 case Ctrl_Q:
183 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100185 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100186 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 break;
188
189/* close current window */
190 case Ctrl_C:
191 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100193 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100194 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 break;
196
Bram Moolenaar4033c552017-09-16 20:54:51 +0200197#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198/* close preview window */
199 case Ctrl_Z:
200 case 'z':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200201 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 do_cmdline_cmd((char_u *)"pclose");
204 break;
205
206/* cursor to preview window */
207 case 'P':
Bram Moolenaar29323592016-07-24 22:04:11 +0200208 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 if (wp->w_p_pvw)
210 break;
211 if (wp == NULL)
212 EMSG(_("E441: There is no preview window"));
213 else
214 win_goto(wp);
215 break;
216#endif
217
218/* close all but current window */
219 case Ctrl_O:
220 case 'o':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200221 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100223 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100224 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 break;
226
227/* cursor to next window with wrap around */
228 case Ctrl_W:
229 case 'w':
230/* cursor to previous window with wrap around */
231 case 'W':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200232 CHECK_CMDWIN;
Bram Moolenaara1f4cb92016-11-06 15:25:42 +0100233 if (ONE_WINDOW && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 beep_flush();
235 else
236 {
237 if (Prenum) /* go to specified window */
238 {
239 for (wp = firstwin; --Prenum > 0; )
240 {
241 if (wp->w_next == NULL)
242 break;
243 else
244 wp = wp->w_next;
245 }
246 }
247 else
248 {
249 if (nchar == 'W') /* go to previous window */
250 {
251 wp = curwin->w_prev;
252 if (wp == NULL)
253 wp = lastwin; /* wrap around */
254 }
255 else /* go to next window */
256 {
257 wp = curwin->w_next;
258 if (wp == NULL)
259 wp = firstwin; /* wrap around */
260 }
261 }
262 win_goto(wp);
263 }
264 break;
265
266/* cursor to window below */
267 case 'j':
268 case K_DOWN:
269 case Ctrl_J:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200270 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 win_goto_ver(FALSE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 break;
273
274/* cursor to window above */
275 case 'k':
276 case K_UP:
277 case Ctrl_K:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200278 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 win_goto_ver(TRUE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 break;
281
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282/* cursor to left window */
283 case 'h':
284 case K_LEFT:
285 case Ctrl_H:
286 case K_BS:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200287 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 win_goto_hor(TRUE, Prenum1);
289 break;
290
291/* cursor to right window */
292 case 'l':
293 case K_RIGHT:
294 case Ctrl_L:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200295 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 win_goto_hor(FALSE, Prenum1);
297 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000299/* move window to new tab page */
300 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000301 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000302 MSG(_(m_onlyone));
303 else
304 {
305 tabpage_T *oldtab = curtab;
306 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000307
308 /* First create a new tab with the window, then go back to
309 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000310 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000311 if (win_new_tabpage((int)Prenum) == OK
312 && valid_tabpage(oldtab))
313 {
314 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200315 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000316 if (curwin == wp)
317 win_close(curwin, FALSE);
318 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200319 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000320 }
321 }
322 break;
323
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324/* cursor to top-left window */
325 case 't':
326 case Ctrl_T:
327 win_goto(firstwin);
328 break;
329
330/* cursor to bottom-right window */
331 case 'b':
332 case Ctrl_B:
333 win_goto(lastwin);
334 break;
335
336/* cursor to last accessed (previous) window */
337 case 'p':
338 case Ctrl_P:
Bram Moolenaar3dda7db2016-04-03 21:22:58 +0200339 if (!win_valid(prevwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 beep_flush();
341 else
342 win_goto(prevwin);
343 break;
344
345/* exchange current and next window */
346 case 'x':
347 case Ctrl_X:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200348 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 win_exchange(Prenum);
350 break;
351
352/* rotate windows downwards */
353 case Ctrl_R:
354 case 'r':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200355 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 win_rotate(FALSE, (int)Prenum1); /* downwards */
358 break;
359
360/* rotate windows upwards */
361 case 'R':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200362 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 win_rotate(TRUE, (int)Prenum1); /* upwards */
365 break;
366
367/* move window to the very top/bottom/left/right */
368 case 'K':
369 case 'J':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 case 'H':
371 case 'L':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200372 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 win_totop((int)Prenum,
374 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
375 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
376 break;
377
378/* make all windows the same height */
379 case '=':
380#ifdef FEAT_GUI
381 need_mouse_correct = TRUE;
382#endif
383 win_equal(NULL, FALSE, 'b');
384 break;
385
386/* increase current window height */
387 case '+':
388#ifdef FEAT_GUI
389 need_mouse_correct = TRUE;
390#endif
391 win_setheight(curwin->w_height + (int)Prenum1);
392 break;
393
394/* decrease current window height */
395 case '-':
396#ifdef FEAT_GUI
397 need_mouse_correct = TRUE;
398#endif
399 win_setheight(curwin->w_height - (int)Prenum1);
400 break;
401
402/* set current window height */
403 case Ctrl__:
404 case '_':
405#ifdef FEAT_GUI
406 need_mouse_correct = TRUE;
407#endif
408 win_setheight(Prenum ? (int)Prenum : 9999);
409 break;
410
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411/* increase current window width */
412 case '>':
413#ifdef FEAT_GUI
414 need_mouse_correct = TRUE;
415#endif
416 win_setwidth(curwin->w_width + (int)Prenum1);
417 break;
418
419/* decrease current window width */
420 case '<':
421#ifdef FEAT_GUI
422 need_mouse_correct = TRUE;
423#endif
424 win_setwidth(curwin->w_width - (int)Prenum1);
425 break;
426
427/* set current window width */
428 case '|':
429#ifdef FEAT_GUI
430 need_mouse_correct = TRUE;
431#endif
432 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
433 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434
435/* jump to tag and split window if tag exists (in preview window) */
436#if defined(FEAT_QUICKFIX)
437 case '}':
Bram Moolenaar6f470022018-04-10 18:47:20 +0200438 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439 if (Prenum)
440 g_do_tagpreview = Prenum;
441 else
442 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200444 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 case ']':
446 case Ctrl_RSB:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200447 CHECK_CMDWIN;
Bram Moolenaard355c502014-09-23 13:48:43 +0200448 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 if (Prenum)
450 postponed_split = Prenum;
451 else
452 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200453#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200454 if (nchar != '}')
455 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200456#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457
Bram Moolenaard355c502014-09-23 13:48:43 +0200458 /* Execute the command right here, required when "wincmd ]"
459 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 do_nv_ident(Ctrl_RSB, NUL);
461 break;
462
463#ifdef FEAT_SEARCHPATH
464/* edit file name under cursor in a new window */
465 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000466 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000468wingotofile:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200469 CHECK_CMDWIN;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000470
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000471 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 if (ptr != NULL)
473 {
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200474 tabpage_T *oldtab = curtab;
475 win_T *oldwin = curwin;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000476# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 setpcmark();
480 if (win_split(0, 0) == OK)
481 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200482 RESET_BINDING(curwin);
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200483 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
484 ECMD_HIDE, NULL) == FAIL)
485 {
486 /* Failed to open the file, close the window
487 * opened for it. */
488 win_close(curwin, FALSE);
489 goto_tabpage_win(oldtab, oldwin);
490 }
491 else if (nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000492 {
493 curwin->w_cursor.lnum = lnum;
494 check_cursor_lnum();
495 beginline(BL_SOL | BL_FIX);
496 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 }
498 vim_free(ptr);
499 }
500 break;
501#endif
502
503#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000504/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 * new window -- webb
506 */
507 case 'i': /* Go to any match */
508 case Ctrl_I:
509 type = FIND_ANY;
510 /* FALLTHROUGH */
511 case 'd': /* Go to definition, using 'define' */
512 case Ctrl_D:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200513 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
515 break;
516 find_pattern_in_path(ptr, 0, len, TRUE,
517 Prenum == 0 ? TRUE : FALSE, type,
518 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
519 curwin->w_set_curswant = TRUE;
520 break;
521#endif
522
Bram Moolenaar05159a02005-02-26 23:04:13 +0000523 case K_KENTER:
524 case CAR:
525#if defined(FEAT_QUICKFIX)
526 /*
527 * In a quickfix window a <CR> jumps to the error under the
528 * cursor in a new window.
529 */
530 if (bt_quickfix(curbuf))
531 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000532 sprintf((char *)cbuf, "split +%ld%s",
533 (long)curwin->w_cursor.lnum,
534 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000535 do_cmdline_cmd(cbuf);
536 }
537#endif
538 break;
539
540
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541/* CTRL-W g extended commands */
542 case 'g':
543 case Ctrl_G:
Bram Moolenaar6f470022018-04-10 18:47:20 +0200544 CHECK_CMDWIN;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545#ifdef USE_ON_FLY_SCROLL
546 dont_scroll = TRUE; /* disallow scrolling here */
547#endif
548 ++no_mapping;
549 ++allow_keys; /* no mapping for xchar, but allow key codes */
550 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000551 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 --no_mapping;
554 --allow_keys;
555#ifdef FEAT_CMDL_INFO
556 (void)add_to_showcmd(xchar);
557#endif
558 switch (xchar)
559 {
560#if defined(FEAT_QUICKFIX)
561 case '}':
562 xchar = Ctrl_RSB;
563 if (Prenum)
564 g_do_tagpreview = Prenum;
565 else
566 g_do_tagpreview = p_pvh;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567#endif
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200568 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 case ']':
570 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200571 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 if (Prenum)
573 postponed_split = Prenum;
574 else
575 postponed_split = -1;
576
577 /* Execute the command right here, required when
578 * "wincmd g}" was used in a function. */
579 do_nv_ident('g', xchar);
580 break;
581
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000582#ifdef FEAT_SEARCHPATH
583 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000584 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100585 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000586 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000587 goto wingotofile;
588#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 default:
590 beep_flush();
591 break;
592 }
593 break;
594
595 default: beep_flush();
596 break;
597 }
598}
599
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100600/*
601 * Figure out the address type for ":wnncmd".
602 */
603 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100604get_wincmd_addr_type(char_u *arg, exarg_T *eap)
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100605{
606 switch (*arg)
607 {
608 case 'S':
609 case Ctrl_S:
610 case 's':
611 case Ctrl_N:
612 case 'n':
613 case 'j':
614 case Ctrl_J:
615 case 'k':
616 case Ctrl_K:
617 case 'T':
618 case Ctrl_R:
619 case 'r':
620 case 'R':
621 case 'K':
622 case 'J':
623 case '+':
624 case '-':
625 case Ctrl__:
626 case '_':
627 case '|':
628 case ']':
629 case Ctrl_RSB:
630 case 'g':
631 case Ctrl_G:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100632 case Ctrl_V:
633 case 'v':
634 case 'h':
635 case Ctrl_H:
636 case 'l':
637 case Ctrl_L:
638 case 'H':
639 case 'L':
640 case '>':
641 case '<':
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100642#if defined(FEAT_QUICKFIX)
643 case '}':
644#endif
645#ifdef FEAT_SEARCHPATH
646 case 'f':
647 case 'F':
648 case Ctrl_F:
649#endif
650#ifdef FEAT_FIND_ID
651 case 'i':
652 case Ctrl_I:
653 case 'd':
654 case Ctrl_D:
655#endif
656 /* window size or any count */
657 eap->addr_type = ADDR_LINES;
658 break;
659
660 case Ctrl_HAT:
661 case '^':
662 /* buffer number */
663 eap->addr_type = ADDR_BUFFERS;
664 break;
665
666 case Ctrl_Q:
667 case 'q':
668 case Ctrl_C:
669 case 'c':
670 case Ctrl_O:
671 case 'o':
672 case Ctrl_W:
673 case 'w':
674 case 'W':
675 case 'x':
676 case Ctrl_X:
677 /* window number */
678 eap->addr_type = ADDR_WINDOWS;
679 break;
680
681#if defined(FEAT_QUICKFIX)
682 case Ctrl_Z:
683 case 'z':
684 case 'P':
685#endif
686 case 't':
687 case Ctrl_T:
688 case 'b':
689 case Ctrl_B:
690 case 'p':
691 case Ctrl_P:
692 case '=':
693 case CAR:
694 /* no count */
695 eap->addr_type = 0;
696 break;
697 }
698}
699
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100700 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100701cmd_with_count(
702 char *cmd,
703 char_u *bufp,
704 size_t bufsize,
705 long Prenum)
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100706{
707 size_t len = STRLEN(cmd);
708
709 STRCPY(bufp, cmd);
710 if (Prenum > 0)
711 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum);
712}
713
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714/*
715 * split the current window, implements CTRL-W s and :split
716 *
717 * "size" is the height or width for the new window, 0 to use half of current
718 * height or width.
719 *
720 * "flags":
721 * WSP_ROOM: require enough room for new window
722 * WSP_VERT: vertical split.
723 * WSP_TOP: open window at the top-left of the shell (help window).
724 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
725 * WSP_HELP: creating the help window, keep layout snapshot
726 *
727 * return FAIL for failure, OK otherwise
728 */
729 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100730win_split(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000732 /* When the ":tab" modifier was used open a new tab page instead. */
733 if (may_open_tabpage() == OK)
734 return OK;
735
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 /* Add flags from ":vertical", ":topleft" and ":botright". */
737 flags |= cmdmod.split;
738 if ((flags & WSP_TOP) && (flags & WSP_BOT))
739 {
740 EMSG(_("E442: Can't split topleft and botright at the same time"));
741 return FAIL;
742 }
743
744 /* When creating the help window make a snapshot of the window layout.
745 * Otherwise clear the snapshot, it's now invalid. */
746 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000747 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000749 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750
751 return win_split_ins(size, flags, NULL, 0);
752}
753
754/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100755 * When "new_wp" is NULL: split the current window in two.
756 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 * top/left/right/bottom.
758 * return FAIL for failure, OK otherwise
759 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000760 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100761win_split_ins(
762 int size,
763 int flags,
764 win_T *new_wp,
765 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100767 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 win_T *oldwin;
769 int new_size = size;
770 int i;
771 int need_status = 0;
772 int do_equal = FALSE;
773 int needed;
774 int available;
775 int oldwin_height = 0;
776 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200777 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200779 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200780 int wmh1;
Bram Moolenaar98da6ec2018-04-13 22:15:46 +0200781 int did_set_fraction = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782
783 if (flags & WSP_TOP)
784 oldwin = firstwin;
785 else if (flags & WSP_BOT)
786 oldwin = lastwin;
787 else
788 oldwin = curwin;
789
790 /* add a status line when p_ls == 1 and splitting the first window */
Bram Moolenaar459ca562016-11-10 18:16:33 +0100791 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 {
Bram Moolenaar415a6932017-12-05 20:31:07 +0100793 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 {
795 EMSG(_(e_noroom));
796 return FAIL;
797 }
798 need_status = STATUS_HEIGHT;
799 }
800
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000801#ifdef FEAT_GUI
802 /* May be needed for the scrollbars that are going to change. */
803 if (gui.in_use)
804 out_flush();
805#endif
806
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 if (flags & WSP_VERT)
808 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200809 int wmw1;
810 int minwidth;
811
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
814 /*
815 * Check if we are able to split the current window and compute its
816 * width.
817 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200818 /* Current window requires at least 1 space. */
819 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
820 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200822 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200823 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200825 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200827 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200829 else if (p_ea)
830 {
831 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
832 prevfrp = oldwin->w_frame;
833 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
834 frp = frp->fr_parent)
835 {
836 if (frp->fr_layout == FR_ROW)
837 for (frp2 = frp->fr_child; frp2 != NULL;
838 frp2 = frp2->fr_next)
839 if (frp2 != prevfrp)
840 minwidth += frame_minwidth(frp2, NOWIN);
841 prevfrp = frp;
842 }
843 available = topframe->fr_width;
844 needed += minwidth;
845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200847 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200848 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
849 available = oldwin->w_frame->fr_width;
850 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200851 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100852 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 {
854 EMSG(_(e_noroom));
855 return FAIL;
856 }
857 if (new_size == 0)
858 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200859 if (new_size > available - minwidth - 1)
860 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200861 if (new_size < wmw1)
862 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863
864 /* if it doesn't fit in the current window, need win_equal() */
865 if (oldwin->w_width - new_size - 1 < p_wmw)
866 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000867
868 /* We don't like to take lines for the new window from a
869 * 'winfixwidth' window. Take them from a window to the left or right
Bram Moolenaar38e34832017-03-19 20:22:36 +0100870 * instead, if possible. Add one for the separator. */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000871 if (oldwin->w_p_wfw)
Bram Moolenaar38e34832017-03-19 20:22:36 +0100872 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000873
874 /* Only make all windows the same width if one of them (except oldwin)
875 * is wider than one of the split windows. */
876 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
877 && oldwin->w_frame->fr_parent != NULL)
878 {
879 frp = oldwin->w_frame->fr_parent->fr_child;
880 while (frp != NULL)
881 {
882 if (frp->fr_win != oldwin && frp->fr_win != NULL
883 && (frp->fr_win->w_width > new_size
884 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100885 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000886 {
887 do_equal = TRUE;
888 break;
889 }
890 frp = frp->fr_next;
891 }
892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 }
894 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 {
896 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897
898 /*
899 * Check if we are able to split the current window and compute its
900 * height.
901 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200902 /* Current window requires at least 1 space. */
Bram Moolenaar415a6932017-12-05 20:31:07 +0100903 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin);
Bram Moolenaar1f538352014-07-16 18:19:27 +0200904 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200906 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200907 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200909 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200911 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200913 else if (p_ea)
914 {
915 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
916 prevfrp = oldwin->w_frame;
917 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
918 frp = frp->fr_parent)
919 {
920 if (frp->fr_layout == FR_COL)
921 for (frp2 = frp->fr_child; frp2 != NULL;
922 frp2 = frp2->fr_next)
923 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
1079 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
1080 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
1320 copy_loclist(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. */
1606 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1607 frp = frp->fr_next)
1608 if (frp->fr_win == NULL)
1609 {
1610 EMSG(_("E443: Cannot rotate when another window is split"));
1611 return;
1612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614 while (count--)
1615 {
1616 if (upwards) /* first window becomes last window */
1617 {
1618 /* remove first window/frame from the list */
1619 frp = curwin->w_frame->fr_parent->fr_child;
1620 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001621 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 frame_remove(frp);
1623
1624 /* find last frame and append removed window/frame after it */
1625 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1626 ;
1627 win_append(frp->fr_win, wp1);
1628 frame_append(frp, wp1->w_frame);
1629
1630 wp2 = frp->fr_win; /* previously last window */
1631 }
1632 else /* last window becomes first window */
1633 {
1634 /* find last window/frame in the list and remove it */
1635 for (frp = curwin->w_frame; frp->fr_next != NULL;
1636 frp = frp->fr_next)
1637 ;
1638 wp1 = frp->fr_win;
1639 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001640 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 frame_remove(frp);
1642
1643 /* append the removed window/frame before the first in the list */
1644 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1645 frame_insert(frp->fr_parent->fr_child, frp);
1646 }
1647
1648 /* exchange status height and vsep width of old and new last window */
1649 n = wp2->w_status_height;
1650 wp2->w_status_height = wp1->w_status_height;
1651 wp1->w_status_height = n;
1652 frame_fix_height(wp1);
1653 frame_fix_height(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 n = wp2->w_vsep_width;
1655 wp2->w_vsep_width = wp1->w_vsep_width;
1656 wp1->w_vsep_width = n;
1657 frame_fix_width(wp1);
1658 frame_fix_width(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001660 /* recompute w_winrow and w_wincol for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 (void)win_comp_pos();
1662 }
1663
1664 redraw_later(CLEAR);
1665}
1666
1667/*
1668 * Move the current window to the very top/bottom/left/right of the screen.
1669 */
1670 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001671win_totop(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672{
1673 int dir;
1674 int height = curwin->w_height;
1675
Bram Moolenaar459ca562016-11-10 18:16:33 +01001676 if (ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 {
1678 beep_flush();
1679 return;
1680 }
1681
1682 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001683 (void)winframe_remove(curwin, &dir, NULL);
1684 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 last_status(FALSE); /* may need to remove last status line */
1686 (void)win_comp_pos(); /* recompute window positions */
1687
1688 /* Split a window on the desired side and put the window there. */
1689 (void)win_split_ins(size, flags, curwin, dir);
1690 if (!(flags & WSP_VERT))
1691 {
1692 win_setheight(height);
1693 if (p_ea)
1694 win_equal(curwin, TRUE, 'v');
1695 }
1696
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001697#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1699 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001700 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702}
1703
1704/*
1705 * Move window "win1" to below/right of "win2" and make "win1" the current
1706 * window. Only works within the same frame!
1707 */
1708 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001709win_move_after(win_T *win1, win_T *win2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710{
1711 int height;
1712
1713 /* check if the arguments are reasonable */
1714 if (win1 == win2)
1715 return;
1716
1717 /* check if there is something to do */
1718 if (win2->w_next != win1)
1719 {
1720 /* may need move the status line/vertical separator of the last window
1721 * */
1722 if (win1 == lastwin)
1723 {
1724 height = win1->w_prev->w_status_height;
1725 win1->w_prev->w_status_height = win1->w_status_height;
1726 win1->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001727 if (win1->w_prev->w_vsep_width == 1)
1728 {
1729 /* Remove the vertical separator from the last-but-one window,
1730 * add it to the last window. Adjust the frame widths. */
1731 win1->w_prev->w_vsep_width = 0;
1732 win1->w_prev->w_frame->fr_width -= 1;
1733 win1->w_vsep_width = 1;
1734 win1->w_frame->fr_width += 1;
1735 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 }
1737 else if (win2 == lastwin)
1738 {
1739 height = win1->w_status_height;
1740 win1->w_status_height = win2->w_status_height;
1741 win2->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001742 if (win1->w_vsep_width == 1)
1743 {
1744 /* Remove the vertical separator from win1, add it to the last
1745 * window, win2. Adjust the frame widths. */
1746 win2->w_vsep_width = 1;
1747 win2->w_frame->fr_width += 1;
1748 win1->w_vsep_width = 0;
1749 win1->w_frame->fr_width -= 1;
1750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001752 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 frame_remove(win1->w_frame);
1754 win_append(win2, win1);
1755 frame_append(win2->w_frame, win1->w_frame);
1756
1757 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1758 redraw_later(NOT_VALID);
1759 }
1760 win_enter(win1, FALSE);
1761}
1762
1763/*
1764 * Make all windows the same height.
1765 * 'next_curwin' will soon be the current window, make sure it has enough
1766 * rows.
1767 */
1768 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001769win_equal(
1770 win_T *next_curwin, /* pointer to current window to be or NULL */
1771 int current, /* do only frame with current window */
1772 int dir) /* 'v' for vertically, 'h' for horizontally,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 'b' for both, 0 for using p_ead */
1774{
1775 if (dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 dir = *p_ead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001778 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001779 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780}
1781
1782/*
1783 * Set a frame to a new position and height, spreading the available room
1784 * equally over contained frames.
1785 * The window "next_curwin" (if not NULL) should at least get the size from
1786 * 'winheight' and 'winwidth' if possible.
1787 */
1788 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001789win_equal_rec(
1790 win_T *next_curwin, /* pointer to current window to be or NULL */
1791 int current, /* do only frame with current window */
1792 frame_T *topfr, /* frame to set size off */
1793 int dir, /* 'v', 'h' or 'b', see win_equal() */
1794 int col, /* horizontal position for frame */
1795 int row, /* vertical position for frame */
1796 int width, /* new width of frame */
1797 int height) /* new height of frame */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798{
1799 int n, m;
1800 int extra_sep = 0;
1801 int wincount, totwincount = 0;
1802 frame_T *fr;
1803 int next_curwin_size = 0;
1804 int room = 0;
1805 int new_size;
1806 int has_next_curwin = 0;
1807 int hnc;
1808
1809 if (topfr->fr_layout == FR_LEAF)
1810 {
1811 /* Set the width/height of this frame.
1812 * Redraw when size or position changes */
1813 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 )
1816 {
1817 topfr->fr_win->w_winrow = row;
1818 frame_new_height(topfr, height, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001820 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 redraw_all_later(CLEAR);
1822 }
1823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 else if (topfr->fr_layout == FR_ROW)
1825 {
1826 topfr->fr_width = width;
1827 topfr->fr_height = height;
1828
1829 if (dir != 'v') /* equalize frame widths */
1830 {
1831 /* Compute the maximum number of windows horizontally in this
1832 * frame. */
1833 n = frame_minwidth(topfr, NOWIN);
1834 /* add one for the rightmost window, it doesn't have a separator */
1835 if (col + width == Columns)
1836 extra_sep = 1;
1837 else
1838 extra_sep = 0;
1839 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001840 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001842 /*
1843 * Compute width for "next_curwin" window and room available for
1844 * other windows.
1845 * "m" is the minimal width when counting p_wiw for "next_curwin".
1846 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 m = frame_minwidth(topfr, next_curwin);
1848 room = width - m;
1849 if (room < 0)
1850 {
1851 next_curwin_size = p_wiw + room;
1852 room = 0;
1853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 else
1855 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001856 next_curwin_size = -1;
1857 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1858 {
1859 /* If 'winfixwidth' set keep the window width if
1860 * possible.
1861 * Watch out for this window being the next_curwin. */
1862 if (frame_fixed_width(fr))
1863 {
1864 n = frame_minwidth(fr, NOWIN);
1865 new_size = fr->fr_width;
1866 if (frame_has_win(fr, next_curwin))
1867 {
1868 room += p_wiw - p_wmw;
1869 next_curwin_size = 0;
1870 if (new_size < p_wiw)
1871 new_size = p_wiw;
1872 }
1873 else
1874 /* These windows don't use up room. */
1875 totwincount -= (n + (fr->fr_next == NULL
1876 ? extra_sep : 0)) / (p_wmw + 1);
1877 room -= new_size - n;
1878 if (room < 0)
1879 {
1880 new_size += room;
1881 room = 0;
1882 }
1883 fr->fr_newwidth = new_size;
1884 }
1885 }
1886 if (next_curwin_size == -1)
1887 {
1888 if (!has_next_curwin)
1889 next_curwin_size = 0;
1890 else if (totwincount > 1
1891 && (room + (totwincount - 2))
1892 / (totwincount - 1) > p_wiw)
1893 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001894 /* Can make all windows wider than 'winwidth', spread
1895 * the room equally. */
1896 next_curwin_size = (room + p_wiw
1897 + (totwincount - 1) * p_wmw
1898 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001899 room -= next_curwin_size - p_wiw;
1900 }
1901 else
1902 next_curwin_size = p_wiw;
1903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001905
1906 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 --totwincount; /* don't count curwin */
1908 }
1909
1910 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1911 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 wincount = 1;
1913 if (fr->fr_next == NULL)
1914 /* last frame gets all that remains (avoid roundoff error) */
1915 new_size = width;
1916 else if (dir == 'v')
1917 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001918 else if (frame_fixed_width(fr))
1919 {
1920 new_size = fr->fr_newwidth;
1921 wincount = 0; /* doesn't count as a sizeable window */
1922 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 else
1924 {
1925 /* Compute the maximum number of windows horiz. in "fr". */
1926 n = frame_minwidth(fr, NOWIN);
1927 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1928 / (p_wmw + 1);
1929 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001930 if (has_next_curwin)
1931 hnc = frame_has_win(fr, next_curwin);
1932 else
1933 hnc = FALSE;
1934 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001936 if (totwincount == 0)
1937 new_size = room;
1938 else
1939 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001941 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 {
1943 next_curwin_size -= p_wiw - (m - n);
1944 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001945 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001947 else
1948 room -= new_size;
1949 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 }
1951
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001952 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 * window, unless equalizing all frames. */
1954 if (!current || dir != 'v' || topfr->fr_parent != NULL
1955 || (new_size != fr->fr_width)
1956 || frame_has_win(fr, next_curwin))
1957 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001958 new_size, height);
1959 col += new_size;
1960 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 totwincount -= wincount;
1962 }
1963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 else /* topfr->fr_layout == FR_COL */
1965 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 topfr->fr_width = width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 topfr->fr_height = height;
1968
1969 if (dir != 'h') /* equalize frame heights */
1970 {
1971 /* Compute maximum number of windows vertically in this frame. */
1972 n = frame_minheight(topfr, NOWIN);
1973 /* add one for the bottom window if it doesn't have a statusline */
1974 if (row + height == cmdline_row && p_ls == 0)
1975 extra_sep = 1;
1976 else
1977 extra_sep = 0;
1978 totwincount = (n + extra_sep) / (p_wmh + 1);
1979 has_next_curwin = frame_has_win(topfr, next_curwin);
1980
1981 /*
1982 * Compute height for "next_curwin" window and room available for
1983 * other windows.
1984 * "m" is the minimal height when counting p_wh for "next_curwin".
1985 */
1986 m = frame_minheight(topfr, next_curwin);
1987 room = height - m;
1988 if (room < 0)
1989 {
1990 /* The room is less then 'winheight', use all space for the
1991 * current window. */
1992 next_curwin_size = p_wh + room;
1993 room = 0;
1994 }
1995 else
1996 {
1997 next_curwin_size = -1;
1998 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1999 {
2000 /* If 'winfixheight' set keep the window height if
2001 * possible.
2002 * Watch out for this window being the next_curwin. */
2003 if (frame_fixed_height(fr))
2004 {
2005 n = frame_minheight(fr, NOWIN);
2006 new_size = fr->fr_height;
2007 if (frame_has_win(fr, next_curwin))
2008 {
2009 room += p_wh - p_wmh;
2010 next_curwin_size = 0;
2011 if (new_size < p_wh)
2012 new_size = p_wh;
2013 }
2014 else
2015 /* These windows don't use up room. */
2016 totwincount -= (n + (fr->fr_next == NULL
2017 ? extra_sep : 0)) / (p_wmh + 1);
2018 room -= new_size - n;
2019 if (room < 0)
2020 {
2021 new_size += room;
2022 room = 0;
2023 }
2024 fr->fr_newheight = new_size;
2025 }
2026 }
2027 if (next_curwin_size == -1)
2028 {
2029 if (!has_next_curwin)
2030 next_curwin_size = 0;
2031 else if (totwincount > 1
2032 && (room + (totwincount - 2))
2033 / (totwincount - 1) > p_wh)
2034 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002035 /* can make all windows higher than 'winheight',
2036 * spread the room equally. */
2037 next_curwin_size = (room + p_wh
2038 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 + (totwincount - 1)) / totwincount;
2040 room -= next_curwin_size - p_wh;
2041 }
2042 else
2043 next_curwin_size = p_wh;
2044 }
2045 }
2046
2047 if (has_next_curwin)
2048 --totwincount; /* don't count curwin */
2049 }
2050
2051 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
2052 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 wincount = 1;
2054 if (fr->fr_next == NULL)
2055 /* last frame gets all that remains (avoid roundoff error) */
2056 new_size = height;
2057 else if (dir == 'h')
2058 new_size = fr->fr_height;
2059 else if (frame_fixed_height(fr))
2060 {
2061 new_size = fr->fr_newheight;
2062 wincount = 0; /* doesn't count as a sizeable window */
2063 }
2064 else
2065 {
2066 /* Compute the maximum number of windows vert. in "fr". */
2067 n = frame_minheight(fr, NOWIN);
2068 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2069 / (p_wmh + 1);
2070 m = frame_minheight(fr, next_curwin);
2071 if (has_next_curwin)
2072 hnc = frame_has_win(fr, next_curwin);
2073 else
2074 hnc = FALSE;
2075 if (hnc) /* don't count next_curwin */
2076 --wincount;
2077 if (totwincount == 0)
2078 new_size = room;
2079 else
2080 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2081 / totwincount;
2082 if (hnc) /* add next_curwin size */
2083 {
2084 next_curwin_size -= p_wh - (m - n);
2085 new_size += next_curwin_size;
2086 room -= new_size - next_curwin_size;
2087 }
2088 else
2089 room -= new_size;
2090 new_size += n;
2091 }
2092 /* Skip frame that is full width when splitting or closing a
2093 * window, unless equalizing all frames. */
2094 if (!current || dir != 'h' || topfr->fr_parent != NULL
2095 || (new_size != fr->fr_height)
2096 || frame_has_win(fr, next_curwin))
2097 win_equal_rec(next_curwin, current, fr, dir, col, row,
2098 width, new_size);
2099 row += new_size;
2100 height -= new_size;
2101 totwincount -= wincount;
2102 }
2103 }
2104}
2105
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002106#ifdef FEAT_JOB_CHANNEL
2107 static void
2108leaving_window(win_T *win)
2109{
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002110 // Only matters for a prompt window.
2111 if (!bt_prompt(win->w_buffer))
2112 return;
2113
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002114 // When leaving a prompt window stop Insert mode and perhaps restart
2115 // it when entering that window again.
2116 win->w_buffer->b_prompt_insert = restart_edit;
2117 restart_edit = NUL;
2118
2119 // When leaving the window (or closing the window) was done from a
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002120 // callback we need to break out of the Insert mode loop and restart Insert
2121 // mode when entering the window again.
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002122 if (State & INSERT)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002123 {
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002124 stop_insert_mode = TRUE;
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002125 if (win->w_buffer->b_prompt_insert == NUL)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002126 win->w_buffer->b_prompt_insert = 'A';
2127 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002128}
2129
2130 static void
2131entering_window(win_T *win)
2132{
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002133 // Only matters for a prompt window.
2134 if (!bt_prompt(win->w_buffer))
2135 return;
2136
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002137 // When switching to a prompt buffer that was in Insert mode, don't stop
2138 // Insert mode, it may have been set in leaving_window().
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002139 if (win->w_buffer->b_prompt_insert != NUL)
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02002140 stop_insert_mode = FALSE;
2141
Bram Moolenaarf98b8452018-06-10 14:39:52 +02002142 // When entering the prompt window restart Insert mode if we were in Insert
2143 // mode when we left it.
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002144 restart_edit = win->w_buffer->b_prompt_insert;
2145}
2146#endif
2147
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002149 * Close all windows for buffer "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 */
2151 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002152close_windows(
2153 buf_T *buf,
2154 int keep_curwin) /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002156 win_T *wp;
2157 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002158 int h = tabline_height();
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002159 int count = tabpage_index(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160
2161 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002162
Bram Moolenaar459ca562016-11-10 18:16:33 +01002163 for (wp = firstwin; wp != NULL && !ONE_WINDOW; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002165 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002166 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 {
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01002168 if (win_close(wp, FALSE) == FAIL)
2169 /* If closing the window fails give up, to avoid looping
2170 * forever. */
2171 break;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002172
2173 /* Start all over, autocommands may change the window layout. */
2174 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 }
2176 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002177 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002179
2180 /* Also check windows in other tab pages. */
2181 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2182 {
2183 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002184 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002185 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002186 if (wp->w_buffer == buf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002187 && !(wp->w_closing || wp->w_buffer->b_locked > 0))
Bram Moolenaarf740b292006-02-16 22:11:02 +00002188 {
2189 win_close_othertab(wp, FALSE, tp);
2190
2191 /* Start all over, the tab page may be closed and
2192 * autocommands may change the window layout. */
2193 nexttp = first_tabpage;
2194 break;
2195 }
2196 }
2197
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002199
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002200 if (count != tabpage_index(NULL))
2201 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002202
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002203 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002204 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002205 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206}
2207
2208/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002209 * Return TRUE if the current window is the only window that exists (ignoring
2210 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002211 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002212 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002213 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002214last_window(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002215{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002216 return (one_window() && first_tabpage->tp_next == NULL);
2217}
2218
2219/*
2220 * Return TRUE if there is only one window other than "aucmd_win" in the
2221 * current tab page.
2222 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002223 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002224one_window(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002225{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002226 win_T *wp;
2227 int seen_one = FALSE;
2228
2229 FOR_ALL_WINDOWS(wp)
2230 {
2231 if (wp != aucmd_win)
2232 {
2233 if (seen_one)
2234 return FALSE;
2235 seen_one = TRUE;
2236 }
2237 }
2238 return TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002239}
2240
2241/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002242 * Close the possibly last window in a tab page.
2243 * Returns TRUE when the window was closed already.
2244 */
2245 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002246close_last_window_tabpage(
2247 win_T *win,
2248 int free_buf,
2249 tabpage_T *prev_curtab)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002250{
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002251 if (ONE_WINDOW)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002252 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002253 buf_T *old_curbuf = curbuf;
2254
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002255 /*
2256 * Closing the last window in a tab page. First go to another tab
2257 * page and then close the window and the tab page. This avoids that
2258 * curwin and curtab are invalid while we are freeing memory, they may
2259 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002260 * Don't trigger autocommands yet, they may use wrong values, so do
2261 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002262 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002263 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002264 redraw_tabline = TRUE;
2265
2266 /* Safety check: Autocommands may have closed the window when jumping
2267 * to the other tab page. */
2268 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2269 {
2270 int h = tabline_height();
2271
2272 win_close_othertab(win, free_buf, prev_curtab);
2273 if (h != tabline_height())
2274 shell_new_rows();
2275 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002276#ifdef FEAT_JOB_CHANNEL
2277 entering_window(curwin);
2278#endif
Bram Moolenaara8596c42012-06-13 14:28:20 +02002279 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2280 * that now. */
Bram Moolenaar12c11d52016-07-19 23:13:03 +02002281 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002282 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002283 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2284 if (old_curbuf != curbuf)
2285 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002286 return TRUE;
2287 }
2288 return FALSE;
2289}
2290
2291/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002292 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 * If "free_buf" is TRUE related buffer may be unloaded.
2294 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002295 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002296 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002298 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002299win_close(win_T *win, int free_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300{
2301 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 int other_buffer = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 int dir;
2305 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002306 tabpage_T *prev_curtab = curtab;
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002307 frame_T *win_frame = win->w_frame->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002309 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 {
2311 EMSG(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002312 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 }
2314
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002315 if (win->w_closing || (win->w_buffer != NULL
2316 && win->w_buffer->b_locked > 0))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002317 return FAIL; /* window is already being closed */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002318 if (win == aucmd_win)
2319 {
2320 EMSG(_("E813: Cannot close autocmd window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002321 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002322 }
2323 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2324 {
2325 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002326 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002327 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002328
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002329 /* When closing the last window in a tab page first go to another tab page
2330 * and then close the window and the tab page to avoid that curwin and
2331 * curtab are invalid while we are freeing memory. */
2332 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002333 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002334
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 /* When closing the help window, try restoring a snapshot after closing
2336 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002337 if (bt_help(win->w_buffer))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 help_window = TRUE;
2339 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002340 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 if (win == curwin)
2343 {
Bram Moolenaar6d41c782018-06-06 09:11:12 +02002344#ifdef FEAT_JOB_CHANNEL
2345 leaving_window(curwin);
2346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 /*
2348 * Guess which window is going to be the new current window.
2349 * This may change because of the autocommands (sigh).
2350 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002351 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352
2353 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002354 * Be careful: If autocommands delete the window or cause this window
2355 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 */
2357 if (wp->w_buffer != curbuf)
2358 {
2359 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002360 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002362 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002363 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002364 win->w_closing = FALSE;
2365 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002366 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002368 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002370 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002371 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002372 win->w_closing = FALSE;
2373 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002374 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002375#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 /* autocmds may abort script processing */
2377 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002378 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002380 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002382#ifdef FEAT_GUI
2383 /* Avoid trouble with scrollbars that are going to be deleted in
2384 * win_free(). */
2385 if (gui.in_use)
2386 out_flush();
2387#endif
2388
Bram Moolenaara971b822011-09-14 14:43:25 +02002389#ifdef FEAT_SYN_HL
2390 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002391 if (win->w_buffer != NULL)
2392 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002393#endif
2394
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 /*
2396 * Close the link to the buffer.
2397 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002398 if (win->w_buffer != NULL)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002399 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002400 bufref_T bufref;
2401
2402 set_bufref(&bufref, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002403 win->w_closing = TRUE;
Bram Moolenaar8f913992012-08-29 15:50:26 +02002404 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002405 if (win_valid_any_tab(win))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002406 win->w_closing = FALSE;
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002407 /* Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2408 * "wipe". */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002409 if (!bufref_valid(&bufref))
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002410 curbuf = firstbuf;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002411 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002412
Bram Moolenaar802418d2013-01-17 14:00:11 +01002413 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2414 && (last_window() || curtab != prev_curtab
2415 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002416 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02002417 /* Autocommands have closed all windows, quit now. Restore
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002418 * curwin->w_buffer, otherwise writing viminfo may fail. */
2419 if (curwin->w_buffer == NULL)
2420 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002421 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002422 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002423
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002424 /* Autocommands may have moved to another tab page. */
2425 if (curtab != prev_curtab && win_valid_any_tab(win)
2426 && win->w_buffer == NULL)
2427 {
2428 /* Need to close the window anyway, since the buffer is NULL. */
2429 win_close_othertab(win, FALSE, prev_curtab);
2430 return FAIL;
2431 }
2432
2433 /* Autocommands may have closed the window already or closed the only
2434 * other window. */
2435 if (!win_valid(win) || last_window()
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002436 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002437 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438
Bram Moolenaara971b822011-09-14 14:43:25 +02002439 /* Free the memory used for the window and get the window that received
2440 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002441 wp = win_free_mem(win, &dir, NULL);
2442
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 /* Make sure curwin isn't invalid. It can cause severe trouble when
2444 * printing an error message. For win_equal() curbuf needs to be valid
2445 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002446 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 {
2448 curwin = wp;
2449#ifdef FEAT_QUICKFIX
2450 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2451 {
2452 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002453 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 * finding another window to go to.
2455 */
2456 for (;;)
2457 {
2458 if (wp->w_next == NULL)
2459 wp = firstwin;
2460 else
2461 wp = wp->w_next;
2462 if (wp == curwin)
2463 break;
2464 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2465 {
2466 curwin = wp;
2467 break;
2468 }
2469 }
2470 }
2471#endif
2472 curbuf = curwin->w_buffer;
2473 close_curwin = TRUE;
Bram Moolenaarf79225e2017-03-18 23:11:04 +01002474
2475 /* The cursor position may be invalid if the buffer changed after last
2476 * using the window. */
2477 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002479 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
Bram Moolenaar8eeeba82017-06-25 22:45:39 +02002480 /* If the frame of the closed window contains the new current window,
2481 * only resize that frame. Otherwise resize all windows. */
Bram Moolenaar41cc0382017-06-26 09:59:35 +02002482 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 else
2484 win_comp_pos();
2485 if (close_curwin)
2486 {
Bram Moolenaarc917da42016-07-19 22:31:36 +02002487 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 if (other_buffer)
2489 /* careful: after this wp and win may be invalid! */
2490 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 }
2492
2493 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002494 * If last window has a status line now and we don't want one,
2495 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 */
2497 last_status(FALSE);
2498
2499 /* After closing the help window, try restoring the window layout from
2500 * before it was opened. */
2501 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002502 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002504#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2506 if (gui.in_use && !win_hasvertsplit())
2507 gui_init_which_components(NULL);
2508#endif
2509
2510 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002511 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512}
2513
2514/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002515 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002516 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002517 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002518 * Caller must check if buffer is hidden and whether the tabline needs to be
2519 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002520 */
2521 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002522win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002523{
2524 win_T *wp;
2525 int dir;
2526 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002527 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002528
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002529 /* Get here with win->w_buffer == NULL when win_close() detects the tab
2530 * page changed. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02002531 if (win->w_closing || (win->w_buffer != NULL
2532 && win->w_buffer->b_locked > 0))
Bram Moolenaar362ce482012-06-06 19:02:45 +02002533 return; /* window is already being closed */
Bram Moolenaar362ce482012-06-06 19:02:45 +02002534
Bram Moolenaar11fbc282016-09-02 21:48:32 +02002535 if (win->w_buffer != NULL)
2536 /* Close the link to the buffer. */
2537 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002538
2539 /* Careful: Autocommands may have closed the tab page or made it the
2540 * current tab page. */
2541 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2542 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002543 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002544 return;
2545
2546 /* Autocommands may have closed the window already. */
2547 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2548 ;
2549 if (wp == NULL)
2550 return;
2551
Bram Moolenaarf740b292006-02-16 22:11:02 +00002552 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002553 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002554 {
2555 if (tp == first_tabpage)
2556 first_tabpage = tp->tp_next;
2557 else
2558 {
2559 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2560 ptp = ptp->tp_next)
2561 ;
2562 if (ptp == NULL)
2563 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01002564 internal_error("win_close_othertab()");
Bram Moolenaarf740b292006-02-16 22:11:02 +00002565 return;
2566 }
2567 ptp->tp_next = tp->tp_next;
2568 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002569 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002570 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002571
2572 /* Free the memory used for the window. */
2573 win_free_mem(win, &dir, tp);
2574
2575 if (free_tp)
2576 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002577}
2578
2579/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002580 * Free the memory used for a window.
2581 * Returns a pointer to the window that got the freed up space.
2582 */
2583 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002584win_free_mem(
2585 win_T *win,
2586 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2587 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002588{
2589 frame_T *frp;
2590 win_T *wp;
2591
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002592 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002593 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002594 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002595 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002596 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002597
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002598 /* When deleting the current window of another tab page select a new
2599 * current window. */
2600 if (tp != NULL && win == tp->tp_curwin)
2601 tp->tp_curwin = wp;
2602
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002603 return wp;
2604}
2605
2606#if defined(EXITFREE) || defined(PROTO)
2607 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002608win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002609{
2610 int dummy;
2611
Bram Moolenaarf740b292006-02-16 22:11:02 +00002612 while (first_tabpage->tp_next != NULL)
2613 tabpage_close(TRUE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002614
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002615 if (aucmd_win != NULL)
2616 {
2617 (void)win_free_mem(aucmd_win, &dummy, NULL);
2618 aucmd_win = NULL;
2619 }
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002620
2621 while (firstwin != NULL)
2622 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002623
2624 /* No window should be used after this. Set curwin to NULL to crash
2625 * instead of using freed memory. */
2626 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002627}
2628#endif
2629
2630/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 * Remove a window and its frame from the tree of frames.
2632 * Returns a pointer to the window that got the freed up space.
2633 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002634 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002635winframe_remove(
2636 win_T *win,
2637 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2638 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639{
2640 frame_T *frp, *frp2, *frp3;
2641 frame_T *frp_close = win->w_frame;
2642 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643
2644 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002645 * If there is only one window there is nothing to remove.
2646 */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002647 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002648 return NULL;
2649
2650 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 * Remove the window from its frame.
2652 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002653 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 wp = frame2win(frp2);
2655
2656 /* Remove this frame from the list of frames. */
2657 frame_remove(frp_close);
2658
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 if (frp_close->fr_parent->fr_layout == FR_COL)
2660 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002661 /* When 'winfixheight' is set, try to find another frame in the column
2662 * (as close to the closed frame as possible) to distribute the height
2663 * to. */
2664 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2665 {
2666 frp = frp_close->fr_prev;
2667 frp3 = frp_close->fr_next;
2668 while (frp != NULL || frp3 != NULL)
2669 {
2670 if (frp != NULL)
2671 {
2672 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2673 {
2674 frp2 = frp;
2675 wp = frp->fr_win;
2676 break;
2677 }
2678 frp = frp->fr_prev;
2679 }
2680 if (frp3 != NULL)
2681 {
2682 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2683 {
2684 frp2 = frp3;
2685 wp = frp3->fr_win;
2686 break;
2687 }
2688 frp3 = frp3->fr_next;
2689 }
2690 }
2691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2693 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 *dirp = 'v';
2695 }
2696 else
2697 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002698 /* When 'winfixwidth' is set, try to find another frame in the column
2699 * (as close to the closed frame as possible) to distribute the width
2700 * to. */
2701 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2702 {
2703 frp = frp_close->fr_prev;
2704 frp3 = frp_close->fr_next;
2705 while (frp != NULL || frp3 != NULL)
2706 {
2707 if (frp != NULL)
2708 {
2709 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2710 {
2711 frp2 = frp;
2712 wp = frp->fr_win;
2713 break;
2714 }
2715 frp = frp->fr_prev;
2716 }
2717 if (frp3 != NULL)
2718 {
2719 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2720 {
2721 frp2 = frp3;
2722 wp = frp3->fr_win;
2723 break;
2724 }
2725 frp3 = frp3->fr_next;
2726 }
2727 }
2728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002730 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 *dirp = 'h';
2732 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733
2734 /* If rows/columns go to a window below/right its positions need to be
2735 * updated. Can only be done after the sizes have been updated. */
2736 if (frp2 == frp_close->fr_next)
2737 {
2738 int row = win->w_winrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02002739 int col = win->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740
2741 frame_comp_pos(frp2, &row, &col);
2742 }
2743
2744 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2745 {
2746 /* There is no other frame in this list, move its info to the parent
2747 * and remove it. */
2748 frp2->fr_parent->fr_layout = frp2->fr_layout;
2749 frp2->fr_parent->fr_child = frp2->fr_child;
2750 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2751 frp->fr_parent = frp2->fr_parent;
2752 frp2->fr_parent->fr_win = frp2->fr_win;
2753 if (frp2->fr_win != NULL)
2754 frp2->fr_win->w_frame = frp2->fr_parent;
2755 frp = frp2->fr_parent;
Bram Moolenaar6f361c92018-01-31 19:06:50 +01002756 if (topframe->fr_child == frp2)
2757 topframe->fr_child = frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 vim_free(frp2);
2759
2760 frp2 = frp->fr_parent;
2761 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2762 {
2763 /* The frame above the parent has the same layout, have to merge
2764 * the frames into this list. */
2765 if (frp2->fr_child == frp)
2766 frp2->fr_child = frp->fr_child;
2767 frp->fr_child->fr_prev = frp->fr_prev;
2768 if (frp->fr_prev != NULL)
2769 frp->fr_prev->fr_next = frp->fr_child;
2770 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2771 {
2772 frp3->fr_parent = frp2;
2773 if (frp3->fr_next == NULL)
2774 {
2775 frp3->fr_next = frp->fr_next;
2776 if (frp->fr_next != NULL)
2777 frp->fr_next->fr_prev = frp3;
2778 break;
2779 }
2780 }
Bram Moolenaar6f361c92018-01-31 19:06:50 +01002781 if (topframe->fr_child == frp)
2782 topframe->fr_child = frp2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 vim_free(frp);
2784 }
2785 }
2786
2787 return wp;
2788}
2789
2790/*
Bram Moolenaarc136af22018-05-04 20:15:38 +02002791 * Return a pointer to the frame that will receive the empty screen space that
2792 * is left over after "win" is closed.
2793 *
2794 * If 'splitbelow' or 'splitright' is set, the space goes above or to the left
2795 * by default. Otherwise, the free space goes below or to the right. The
2796 * result is that opening a window and then immediately closing it will
2797 * preserve the initial window layout. The 'wfh' and 'wfw' settings are
2798 * respected when possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 */
2800 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002801win_altframe(
2802 win_T *win,
2803 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804{
2805 frame_T *frp;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002806 frame_T *other_fr, *target_fr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01002808 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002809 return alt_tabpage()->tp_curwin->w_frame;
2810
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 frp = win->w_frame;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002812
2813 if (frp->fr_prev == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 return frp->fr_next;
Bram Moolenaarc136af22018-05-04 20:15:38 +02002815 if (frp->fr_next == NULL)
2816 return frp->fr_prev;
2817
2818 target_fr = frp->fr_next;
2819 other_fr = frp->fr_prev;
2820 if (p_spr || p_sb)
2821 {
2822 target_fr = frp->fr_prev;
2823 other_fr = frp->fr_next;
2824 }
2825
2826 /* If 'wfh' or 'wfw' is set for the target and not for the alternate
2827 * window, reverse the selection. */
2828 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
2829 {
2830 if (frame_fixed_width(target_fr) && !frame_fixed_width(other_fr))
2831 target_fr = other_fr;
2832 }
2833 else
2834 {
2835 if (frame_fixed_height(target_fr) && !frame_fixed_height(other_fr))
2836 target_fr = other_fr;
2837 }
2838
2839 return target_fr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840}
2841
2842/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002843 * Return the tabpage that will be used if the current one is closed.
2844 */
2845 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002846alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002847{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002848 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002849
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002850 /* Use the next tab page if possible. */
2851 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002852 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002853
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002854 /* Find the last but one tab page. */
2855 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2856 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002857 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002858}
2859
2860/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 * Find the left-upper window in frame "frp".
2862 */
2863 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002864frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865{
2866 while (frp->fr_win == NULL)
2867 frp = frp->fr_child;
2868 return frp->fr_win;
2869}
2870
2871/*
2872 * Return TRUE if frame "frp" contains window "wp".
2873 */
2874 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002875frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876{
2877 frame_T *p;
2878
2879 if (frp->fr_layout == FR_LEAF)
2880 return frp->fr_win == wp;
2881
2882 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2883 if (frame_has_win(p, wp))
2884 return TRUE;
2885 return FALSE;
2886}
2887
2888/*
2889 * Set a new height for a frame. Recursively sets the height for contained
2890 * frames and windows. Caller must take care of positions.
2891 */
2892 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002893frame_new_height(
2894 frame_T *topfrp,
2895 int height,
2896 int topfirst, /* resize topmost contained frame first */
2897 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 may cause the height not to be set */
2899{
2900 frame_T *frp;
2901 int extra_lines;
2902 int h;
2903
2904 if (topfrp->fr_win != NULL)
2905 {
2906 /* Simple case: just one window. */
2907 win_new_height(topfrp->fr_win,
Bram Moolenaard326ad62017-09-18 20:31:41 +02002908 height - topfrp->fr_win->w_status_height
Bram Moolenaar3167c3e2017-11-25 14:19:43 +01002909 - WINBAR_HEIGHT(topfrp->fr_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 else if (topfrp->fr_layout == FR_ROW)
2912 {
2913 do
2914 {
2915 /* All frames in this row get the same new height. */
2916 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2917 {
2918 frame_new_height(frp, height, topfirst, wfh);
2919 if (frp->fr_height > height)
2920 {
2921 /* Could not fit the windows, make the whole row higher. */
2922 height = frp->fr_height;
2923 break;
2924 }
2925 }
2926 }
2927 while (frp != NULL);
2928 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002929 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 {
2931 /* Complicated case: Resize a column of frames. Resize the bottom
2932 * frame first, frames above that when needed. */
2933
2934 frp = topfrp->fr_child;
2935 if (wfh)
2936 /* Advance past frames with one window with 'wfh' set. */
2937 while (frame_fixed_height(frp))
2938 {
2939 frp = frp->fr_next;
2940 if (frp == NULL)
2941 return; /* no frame without 'wfh', give up */
2942 }
2943 if (!topfirst)
2944 {
2945 /* Find the bottom frame of this column */
2946 while (frp->fr_next != NULL)
2947 frp = frp->fr_next;
2948 if (wfh)
2949 /* Advance back for frames with one window with 'wfh' set. */
2950 while (frame_fixed_height(frp))
2951 frp = frp->fr_prev;
2952 }
2953
2954 extra_lines = height - topfrp->fr_height;
2955 if (extra_lines < 0)
2956 {
2957 /* reduce height of contained frames, bottom or top frame first */
2958 while (frp != NULL)
2959 {
2960 h = frame_minheight(frp, NULL);
2961 if (frp->fr_height + extra_lines < h)
2962 {
2963 extra_lines += frp->fr_height - h;
2964 frame_new_height(frp, h, topfirst, wfh);
2965 }
2966 else
2967 {
2968 frame_new_height(frp, frp->fr_height + extra_lines,
2969 topfirst, wfh);
2970 break;
2971 }
2972 if (topfirst)
2973 {
2974 do
2975 frp = frp->fr_next;
2976 while (wfh && frp != NULL && frame_fixed_height(frp));
2977 }
2978 else
2979 {
2980 do
2981 frp = frp->fr_prev;
2982 while (wfh && frp != NULL && frame_fixed_height(frp));
2983 }
2984 /* Increase "height" if we could not reduce enough frames. */
2985 if (frp == NULL)
2986 height -= extra_lines;
2987 }
2988 }
2989 else if (extra_lines > 0)
2990 {
2991 /* increase height of bottom or top frame */
2992 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2993 }
2994 }
2995 topfrp->fr_height = height;
2996}
2997
2998/*
2999 * Return TRUE if height of frame "frp" should not be changed because of
3000 * the 'winfixheight' option.
3001 */
3002 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003003frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004{
3005 /* frame with one window: fixed height if 'winfixheight' set. */
3006 if (frp->fr_win != NULL)
3007 return frp->fr_win->w_p_wfh;
3008
3009 if (frp->fr_layout == FR_ROW)
3010 {
3011 /* The frame is fixed height if one of the frames in the row is fixed
3012 * height. */
3013 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3014 if (frame_fixed_height(frp))
3015 return TRUE;
3016 return FALSE;
3017 }
3018
3019 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
3020 * frames in the row are fixed height. */
3021 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3022 if (!frame_fixed_height(frp))
3023 return FALSE;
3024 return TRUE;
3025}
3026
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003028 * Return TRUE if width of frame "frp" should not be changed because of
3029 * the 'winfixwidth' option.
3030 */
3031 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003032frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003033{
3034 /* frame with one window: fixed width if 'winfixwidth' set. */
3035 if (frp->fr_win != NULL)
3036 return frp->fr_win->w_p_wfw;
3037
3038 if (frp->fr_layout == FR_COL)
3039 {
3040 /* The frame is fixed width if one of the frames in the row is fixed
3041 * width. */
3042 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3043 if (frame_fixed_width(frp))
3044 return TRUE;
3045 return FALSE;
3046 }
3047
3048 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
3049 * frames in the row are fixed width. */
3050 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3051 if (!frame_fixed_width(frp))
3052 return FALSE;
3053 return TRUE;
3054}
3055
3056/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 * Add a status line to windows at the bottom of "frp".
3058 * Note: Does not check if there is room!
3059 */
3060 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003061frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062{
3063 win_T *wp;
3064
3065 if (frp->fr_layout == FR_LEAF)
3066 {
3067 wp = frp->fr_win;
3068 if (wp->w_status_height == 0)
3069 {
3070 if (wp->w_height > 0) /* don't make it negative */
3071 --wp->w_height;
3072 wp->w_status_height = STATUS_HEIGHT;
3073 }
3074 }
3075 else if (frp->fr_layout == FR_ROW)
3076 {
3077 /* Handle all the frames in the row. */
3078 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3079 frame_add_statusline(frp);
3080 }
3081 else /* frp->fr_layout == FR_COL */
3082 {
3083 /* Only need to handle the last frame in the column. */
3084 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
3085 ;
3086 frame_add_statusline(frp);
3087 }
3088}
3089
3090/*
3091 * Set width of a frame. Handles recursively going through contained frames.
3092 * May remove separator line for windows at the right side (for win_close()).
3093 */
3094 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003095frame_new_width(
3096 frame_T *topfrp,
3097 int width,
3098 int leftfirst, /* resize leftmost contained frame first */
3099 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003100 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101{
3102 frame_T *frp;
3103 int extra_cols;
3104 int w;
3105 win_T *wp;
3106
3107 if (topfrp->fr_layout == FR_LEAF)
3108 {
3109 /* Simple case: just one window. */
3110 wp = topfrp->fr_win;
3111 /* Find out if there are any windows right of this one. */
3112 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3113 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3114 break;
3115 if (frp->fr_parent == NULL)
3116 wp->w_vsep_width = 0;
3117 win_new_width(wp, width - wp->w_vsep_width);
3118 }
3119 else if (topfrp->fr_layout == FR_COL)
3120 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003121 do
3122 {
3123 /* All frames in this column get the same new width. */
3124 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3125 {
3126 frame_new_width(frp, width, leftfirst, wfw);
3127 if (frp->fr_width > width)
3128 {
3129 /* Could not fit the windows, make whole column wider. */
3130 width = frp->fr_width;
3131 break;
3132 }
3133 }
3134 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 }
3136 else /* fr_layout == FR_ROW */
3137 {
3138 /* Complicated case: Resize a row of frames. Resize the rightmost
3139 * frame first, frames left of it when needed. */
3140
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003142 if (wfw)
3143 /* Advance past frames with one window with 'wfw' set. */
3144 while (frame_fixed_width(frp))
3145 {
3146 frp = frp->fr_next;
3147 if (frp == NULL)
3148 return; /* no frame without 'wfw', give up */
3149 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003151 {
3152 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 while (frp->fr_next != NULL)
3154 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003155 if (wfw)
3156 /* Advance back for frames with one window with 'wfw' set. */
3157 while (frame_fixed_width(frp))
3158 frp = frp->fr_prev;
3159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160
3161 extra_cols = width - topfrp->fr_width;
3162 if (extra_cols < 0)
3163 {
3164 /* reduce frame width, rightmost frame first */
3165 while (frp != NULL)
3166 {
3167 w = frame_minwidth(frp, NULL);
3168 if (frp->fr_width + extra_cols < w)
3169 {
3170 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003171 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 }
3173 else
3174 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003175 frame_new_width(frp, frp->fr_width + extra_cols,
3176 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 break;
3178 }
3179 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003180 {
3181 do
3182 frp = frp->fr_next;
3183 while (wfw && frp != NULL && frame_fixed_width(frp));
3184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003186 {
3187 do
3188 frp = frp->fr_prev;
3189 while (wfw && frp != NULL && frame_fixed_width(frp));
3190 }
3191 /* Increase "width" if we could not reduce enough frames. */
3192 if (frp == NULL)
3193 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 }
3195 }
3196 else if (extra_cols > 0)
3197 {
3198 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003199 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 }
3201 }
3202 topfrp->fr_width = width;
3203}
3204
3205/*
3206 * Add the vertical separator to windows at the right side of "frp".
3207 * Note: Does not check if there is room!
3208 */
3209 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003210frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211{
3212 win_T *wp;
3213
3214 if (frp->fr_layout == FR_LEAF)
3215 {
3216 wp = frp->fr_win;
3217 if (wp->w_vsep_width == 0)
3218 {
3219 if (wp->w_width > 0) /* don't make it negative */
3220 --wp->w_width;
3221 wp->w_vsep_width = 1;
3222 }
3223 }
3224 else if (frp->fr_layout == FR_COL)
3225 {
3226 /* Handle all the frames in the column. */
3227 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3228 frame_add_vsep(frp);
3229 }
3230 else /* frp->fr_layout == FR_ROW */
3231 {
3232 /* Only need to handle the last frame in the row. */
3233 frp = frp->fr_child;
3234 while (frp->fr_next != NULL)
3235 frp = frp->fr_next;
3236 frame_add_vsep(frp);
3237 }
3238}
3239
3240/*
3241 * Set frame width from the window it contains.
3242 */
3243 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003244frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245{
3246 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3247}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248
3249/*
3250 * Set frame height from the window it contains.
3251 */
3252 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003253frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254{
Bram Moolenaar415a6932017-12-05 20:31:07 +01003255 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256}
3257
3258/*
3259 * Compute the minimal height for frame "topfrp".
3260 * Uses the 'winminheight' option.
3261 * When "next_curwin" isn't NULL, use p_wh for this window.
3262 * When "next_curwin" is NOWIN, don't use at least one line for the current
3263 * window.
3264 */
3265 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003266frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267{
3268 frame_T *frp;
3269 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271
3272 if (topfrp->fr_win != NULL)
3273 {
3274 if (topfrp->fr_win == next_curwin)
3275 m = p_wh + topfrp->fr_win->w_status_height;
3276 else
3277 {
3278 /* window: minimal height of the window plus status line */
3279 m = p_wmh + topfrp->fr_win->w_status_height;
Bram Moolenaar415a6932017-12-05 20:31:07 +01003280 if (topfrp->fr_win == curwin && next_curwin == NULL)
3281 {
3282 /* Current window is minimal one line high and WinBar is
3283 * visible. */
3284 if (p_wmh == 0)
3285 ++m;
3286 m += WINBAR_HEIGHT(curwin);
3287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 }
3289 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 else if (topfrp->fr_layout == FR_ROW)
3291 {
3292 /* get the minimal height from each frame in this row */
3293 m = 0;
3294 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3295 {
3296 n = frame_minheight(frp, next_curwin);
3297 if (n > m)
3298 m = n;
3299 }
3300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 else
3302 {
3303 /* Add up the minimal heights for all frames in this column. */
3304 m = 0;
3305 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3306 m += frame_minheight(frp, next_curwin);
3307 }
3308
3309 return m;
3310}
3311
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312/*
3313 * Compute the minimal width for frame "topfrp".
3314 * When "next_curwin" isn't NULL, use p_wiw for this window.
3315 * When "next_curwin" is NOWIN, don't use at least one column for the current
3316 * window.
3317 */
3318 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003319frame_minwidth(
3320 frame_T *topfrp,
3321 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322{
3323 frame_T *frp;
3324 int m, n;
3325
3326 if (topfrp->fr_win != NULL)
3327 {
3328 if (topfrp->fr_win == next_curwin)
3329 m = p_wiw + topfrp->fr_win->w_vsep_width;
3330 else
3331 {
3332 /* window: minimal width of the window plus separator column */
3333 m = p_wmw + topfrp->fr_win->w_vsep_width;
3334 /* Current window is minimal one column wide */
3335 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3336 ++m;
3337 }
3338 }
3339 else if (topfrp->fr_layout == FR_COL)
3340 {
3341 /* get the minimal width from each frame in this column */
3342 m = 0;
3343 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3344 {
3345 n = frame_minwidth(frp, next_curwin);
3346 if (n > m)
3347 m = n;
3348 }
3349 }
3350 else
3351 {
3352 /* Add up the minimal widths for all frames in this row. */
3353 m = 0;
3354 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3355 m += frame_minwidth(frp, next_curwin);
3356 }
3357
3358 return m;
3359}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360
3361
3362/*
3363 * Try to close all windows except current one.
3364 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3365 * used and the buffer was modified.
3366 *
3367 * Used by ":bdel" and ":only".
3368 */
3369 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003370close_others(
3371 int message,
3372 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 win_T *wp;
3375 win_T *nextwp;
3376 int r;
3377
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003378 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003380 if (message && !autocmd_busy)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003381 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 return;
3383 }
3384
3385 /* Be very careful here: autocommands may change the window layout. */
3386 for (wp = firstwin; win_valid(wp); wp = nextwp)
3387 {
3388 nextwp = wp->w_next;
3389 if (wp != curwin) /* don't close current window */
3390 {
3391
3392 /* Check if it's allowed to abandon this window */
3393 r = can_abandon(wp->w_buffer, forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 if (!win_valid(wp)) /* autocommands messed wp up */
3395 {
3396 nextwp = firstwin;
3397 continue;
3398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 if (!r)
3400 {
3401#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3402 if (message && (p_confirm || cmdmod.confirm) && p_write)
3403 {
3404 dialog_changed(wp->w_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 if (!win_valid(wp)) /* autocommands messed wp up */
3406 {
3407 nextwp = firstwin;
3408 continue;
3409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 }
3411 if (bufIsChanged(wp->w_buffer))
3412#endif
3413 continue;
3414 }
Bram Moolenaareb44a682017-08-03 22:44:55 +02003415 win_close(wp, !buf_hide(wp->w_buffer)
3416 && !bufIsChanged(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 }
3418 }
3419
Bram Moolenaar459ca562016-11-10 18:16:33 +01003420 if (message && !ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 EMSG(_("E445: Other window contains changes"));
3422}
3423
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003425 * Init the current window "curwin".
3426 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 */
3428 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003429curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003431 win_init_empty(curwin);
3432}
3433
3434 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003435win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003436{
3437 redraw_win_later(wp, NOT_VALID);
3438 wp->w_lines_valid = 0;
3439 wp->w_cursor.lnum = 1;
3440 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003442 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003444 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3445 wp->w_pcmark.col = 0;
3446 wp->w_prev_pcmark.lnum = 0;
3447 wp->w_prev_pcmark.col = 0;
3448 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003450 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003452 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003454 if (wp->w_p_rl)
3455 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003457 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003459#ifdef FEAT_SYN_HL
3460 wp->w_s = &wp->w_buffer->b_s;
3461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462}
3463
3464/*
3465 * Allocate the first window and put an empty buffer in it.
3466 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003467 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003469 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003470win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003472 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003473 return FAIL;
3474
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003475 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003476 if (first_tabpage == NULL)
3477 return FAIL;
3478 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003479 curtab = first_tabpage;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003480
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003481 return OK;
3482}
3483
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003484/*
3485 * Init "aucmd_win". This can only be done after the first
3486 * window is fully initialized, thus it can't be in win_alloc_first().
3487 */
3488 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003489win_alloc_aucmd_win(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003490{
3491 aucmd_win = win_alloc(NULL, TRUE);
3492 if (aucmd_win != NULL)
3493 {
3494 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003495 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003496 new_frame(aucmd_win);
3497 }
3498}
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003499
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003500/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003501 * Allocate the first window or the first window in a new tab page.
3502 * When "oldwin" is NULL create an empty buffer for it.
Bram Moolenaar4033c552017-09-16 20:54:51 +02003503 * When "oldwin" is not NULL copy info from it to the new window.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003504 * Return FAIL when something goes wrong (out of memory).
3505 */
3506 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003507win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003508{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003509 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003510 if (oldwin == NULL)
3511 {
3512 /* Very first window, need to create an empty buffer for it and
3513 * initialize from scratch. */
3514 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3515 if (curwin == NULL || curbuf == NULL)
3516 return FAIL;
3517 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003518#ifdef FEAT_SYN_HL
3519 curwin->w_s = &(curbuf->b_s);
3520#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003521 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003522 curwin->w_alist = &global_alist;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003523 curwin_init(); /* init current window */
3524 }
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003525 else
3526 {
3527 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003528 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003529
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003530 /* We don't want cursor- and scroll-binding in the first window. */
3531 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003534 new_frame(curwin);
3535 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003536 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003537 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 topframe->fr_height = Rows - p_ch;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003540
3541 return OK;
3542}
3543
3544/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003545 * Create a frame for window "wp".
3546 */
3547 static void
3548new_frame(win_T *wp)
3549{
3550 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3551
3552 wp->w_frame = frp;
3553 if (frp != NULL)
3554 {
3555 frp->fr_layout = FR_LEAF;
3556 frp->fr_win = wp;
3557 }
3558}
3559
3560/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003561 * Initialize the window and frame size to the maximum.
3562 */
3563 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003564win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003565{
3566 firstwin->w_height = ROWS_AVAIL;
3567 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003568 firstwin->w_width = Columns;
3569 topframe->fr_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570}
3571
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003572/*
3573 * Allocate a new tabpage_T and init the values.
3574 * Returns NULL when out of memory.
3575 */
3576 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003577alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003578{
3579 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003580# ifdef FEAT_GUI
3581 int i;
3582# endif
3583
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003584
3585 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003586 if (tp == NULL)
3587 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003588
Bram Moolenaar429fa852013-04-15 12:27:36 +02003589# ifdef FEAT_EVAL
3590 /* init t: variables */
3591 tp->tp_vars = dict_alloc();
3592 if (tp->tp_vars == NULL)
3593 {
3594 vim_free(tp);
3595 return NULL;
3596 }
3597 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3598# endif
3599
3600# ifdef FEAT_GUI
3601 for (i = 0; i < 3; i++)
3602 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003603# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003604# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003605 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003606# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003607 tp->tp_ch_used = p_ch;
3608
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003609 return tp;
3610}
3611
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003612 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003613free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003614{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003615 int idx;
3616
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003617# ifdef FEAT_DIFF
3618 diff_clear(tp);
3619# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003620 for (idx = 0; idx < SNAP_COUNT; ++idx)
3621 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003622#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003623 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3624 hash_init(&tp->tp_vars->dv_hashtab);
3625 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003626#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003627
3628#ifdef FEAT_PYTHON
3629 python_tabpage_free(tp);
3630#endif
3631
3632#ifdef FEAT_PYTHON3
3633 python3_tabpage_free(tp);
3634#endif
3635
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003636 vim_free(tp);
3637}
3638
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003639/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003640 * Create a new Tab page with one window.
3641 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003642 * When "after" is 0 put it just after the current Tab page.
3643 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003644 * Return FAIL or OK.
3645 */
3646 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003647win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003648{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003649 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003650 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003651 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003652
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003653 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003654 if (newtp == NULL)
3655 return FAIL;
3656
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003657 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003658 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003659 {
3660 vim_free(newtp);
3661 return FAIL;
3662 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003663 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003664
3665 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003666 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003667 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003668 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003669 if (after == 1)
3670 {
3671 /* New tab page becomes the first one. */
3672 newtp->tp_next = first_tabpage;
3673 first_tabpage = newtp;
3674 }
3675 else
3676 {
3677 if (after > 0)
3678 {
3679 /* Put new tab page before tab page "after". */
3680 n = 2;
3681 for (tp = first_tabpage; tp->tp_next != NULL
3682 && n < after; tp = tp->tp_next)
3683 ++n;
3684 }
3685 newtp->tp_next = tp->tp_next;
3686 tp->tp_next = newtp;
3687 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003688 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003689 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003690 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003691
3692 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003693 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003694
3695#if defined(FEAT_GUI)
3696 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3697 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003698 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003699#endif
Bram Moolenaar6d41c782018-06-06 09:11:12 +02003700#ifdef FEAT_JOB_CHANNEL
3701 entering_window(curwin);
3702#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003703
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003704 redraw_all_later(CLEAR);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003705 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003706 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaarc917da42016-07-19 22:31:36 +02003707 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003708 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003709 return OK;
3710 }
3711
3712 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003713 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003714 return FAIL;
3715}
3716
3717/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003718 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3719 * like with ":split".
3720 * Returns OK if a new tab page was created, FAIL otherwise.
3721 */
3722 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003723may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003724{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003725 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003726
Bram Moolenaard326ce82007-03-11 14:48:29 +00003727 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003728 {
3729 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003730 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003731 return win_new_tabpage(n);
3732 }
3733 return FAIL;
3734}
3735
3736/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003737 * Create up to "maxcount" tabpages with empty windows.
3738 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003739 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003740 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003741make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003742{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003743 int count = maxcount;
3744 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003745
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003746 /* Limit to 'tabpagemax' tabs. */
3747 if (count > p_tpm)
3748 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003749
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003750 /*
3751 * Don't execute autocommands while creating the tab pages. Must do that
3752 * when putting the buffers in the windows.
3753 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003754 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003755
3756 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003757 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003758 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003759
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003760 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003761
3762 /* return actual number of tab pages */
3763 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003764}
3765
3766/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003767 * Return TRUE when "tpc" points to a valid tab page.
3768 */
3769 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003770valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003771{
3772 tabpage_T *tp;
3773
Bram Moolenaar29323592016-07-24 22:04:11 +02003774 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003775 if (tp == tpc)
3776 return TRUE;
3777 return FALSE;
3778}
3779
3780/*
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003781 * Return TRUE when "tpc" points to a valid tab page and at least one window is
3782 * valid.
3783 */
3784 int
3785valid_tabpage_win(tabpage_T *tpc)
3786{
3787 tabpage_T *tp;
3788 win_T *wp;
3789
3790 FOR_ALL_TABPAGES(tp)
3791 {
3792 if (tp == tpc)
3793 {
3794 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
3795 {
3796 if (win_valid_any_tab(wp))
3797 return TRUE;
3798 }
3799 return FALSE;
3800 }
3801 }
3802 /* shouldn't happen */
3803 return FALSE;
3804}
3805
3806/*
3807 * Close tabpage "tab", assuming it has no windows in it.
3808 * There must be another tabpage or this will crash.
3809 */
3810 void
3811close_tabpage(tabpage_T *tab)
3812{
3813 tabpage_T *ptp;
3814
3815 if (tab == first_tabpage)
3816 {
3817 first_tabpage = tab->tp_next;
3818 ptp = first_tabpage;
3819 }
3820 else
3821 {
3822 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tab;
3823 ptp = ptp->tp_next)
3824 ;
Bram Moolenaara37ffaa2017-03-21 21:58:00 +01003825 assert(ptp != NULL);
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01003826 ptp->tp_next = tab->tp_next;
3827 }
3828
3829 goto_tabpage_tp(ptp, FALSE, FALSE);
3830 free_tabpage(tab);
3831}
3832
3833/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003834 * Find tab page "n" (first one is 1). Returns NULL when not found.
3835 */
3836 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003837find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003838{
3839 tabpage_T *tp;
3840 int i = 1;
3841
3842 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3843 ++i;
3844 return tp;
3845}
3846
3847/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003848 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003849 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003850 */
3851 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003852tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003853{
3854 int i = 1;
3855 tabpage_T *tp;
3856
3857 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3858 ++i;
3859 return i;
3860}
3861
3862/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003863 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003864 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003865 * FAIL.
3866 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003867 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003868 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003869leave_tabpage(
3870 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003871 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003872 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003873{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003874 tabpage_T *tp = curtab;
3875
Bram Moolenaar6d41c782018-06-06 09:11:12 +02003876#ifdef FEAT_JOB_CHANNEL
3877 leaving_window(curwin);
3878#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003879 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003880 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003881 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003882 if (new_curbuf != curbuf)
3883 {
3884 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3885 if (curtab != tp)
3886 return FAIL;
3887 }
3888 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3889 if (curtab != tp)
3890 return FAIL;
3891 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003892 if (curtab != tp)
3893 return FAIL;
3894 }
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003895#if defined(FEAT_GUI)
3896 /* Remove the scrollbars. They may be added back later. */
3897 if (gui.in_use)
3898 gui_remove_scrollbars();
3899#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003900 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003901 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003902 tp->tp_firstwin = firstwin;
3903 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003904 tp->tp_old_Rows = Rows;
3905 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003906 firstwin = NULL;
3907 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003908 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003909}
3910
3911/*
3912 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003913 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003914 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3915 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003916 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003917 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003918enter_tabpage(
3919 tabpage_T *tp,
3920 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003921 int trigger_enter_autocmds,
3922 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003923{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003924 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003925 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003926
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003927 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003928 firstwin = tp->tp_firstwin;
3929 lastwin = tp->tp_lastwin;
3930 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003931
3932 /* We would like doing the TabEnter event first, but we don't have a
3933 * valid current window yet, which may break some commands.
3934 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaarc917da42016-07-19 22:31:36 +02003935 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE,
Bram Moolenaard6949742013-06-16 14:18:28 +02003936 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003937 prevwin = next_prevwin;
3938
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003939 last_status(FALSE); /* status line may appear or disappear */
3940 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003941 must_redraw = CLEAR; /* need to redraw everything */
3942#ifdef FEAT_DIFF
3943 diff_need_scrollbind = TRUE;
3944#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003945
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003946 /* The tabpage line may have appeared or disappeared, may need to resize
3947 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003948 * frame sizes too. Use the stored value of p_ch, so that it can be
3949 * different for each tab page. */
3950 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003951 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3952#ifdef FEAT_GUI_TABLINE
3953 && !gui_use_tabline()
3954#endif
3955 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003956 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003957 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003958 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003959
3960#if defined(FEAT_GUI)
3961 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3962 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003963 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003964#endif
3965
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003966 /* Apply autocommands after updating the display, when 'rows' and
3967 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003968 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003969 {
3970 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3971 if (old_curbuf != curbuf)
3972 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3973 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003974
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003975 redraw_all_later(CLEAR);
3976}
3977
3978/*
3979 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003980 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003981 */
3982 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003983goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003984{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003985 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003986 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003987 int i;
3988
Bram Moolenaard68071d2006-05-02 22:08:30 +00003989 if (text_locked())
3990 {
3991 /* Not allowed when editing the command line. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02003992 text_locked_msg();
Bram Moolenaard68071d2006-05-02 22:08:30 +00003993 return;
3994 }
3995
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003996 /* If there is only one it can't work. */
3997 if (first_tabpage->tp_next == NULL)
3998 {
3999 if (n > 1)
4000 beep_flush();
4001 return;
4002 }
4003
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004004 if (n == 0)
4005 {
4006 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004007 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004008 tp = first_tabpage;
4009 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004010 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004011 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004012 else if (n < 0)
4013 {
4014 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
4015 * this N times. */
4016 ttp = curtab;
4017 for (i = n; i < 0; ++i)
4018 {
4019 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
4020 tp = tp->tp_next)
4021 ;
4022 ttp = tp;
4023 }
4024 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004025 else if (n == 9999)
4026 {
4027 /* Go to last tab page. */
4028 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
4029 ;
4030 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004031 else
4032 {
4033 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004034 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00004035 if (tp == NULL)
4036 {
4037 beep_flush();
4038 return;
4039 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004040 }
4041
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004042 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004043
4044#ifdef FEAT_GUI_TABLINE
4045 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00004046 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004047#endif
4048}
4049
4050/*
4051 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004052 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
4053 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004054 * Note: doesn't update the GUI tab.
4055 */
4056 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004057goto_tabpage_tp(
4058 tabpage_T *tp,
4059 int trigger_enter_autocmds,
4060 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004061{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02004062 /* Don't repeat a message in another tab page. */
4063 set_keep_msg(NULL, 0);
4064
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004065 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
4066 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004067 {
4068 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004069 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
4070 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004071 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004072 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
4073 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004074 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004075}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076
4077/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004078 * Enter window "wp" in tab page "tp".
4079 * Also updates the GUI tab.
4080 */
4081 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004082goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004083{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004084 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004085 if (curtab == tp && win_valid(wp))
4086 {
4087 win_enter(wp, TRUE);
4088# ifdef FEAT_GUI_TABLINE
4089 if (gui_use_tabline())
4090 gui_mch_set_curtab(tabpage_index(curtab));
4091# endif
4092 }
4093}
4094
4095/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004096 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004097 */
4098 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004099tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004100{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004101 int n = 1;
4102 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004103
4104 if (first_tabpage->tp_next == NULL)
4105 return;
4106
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004107 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
4108 ++n;
4109
4110 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
4111 && tp->tp_next == curtab))
4112 return;
4113
4114 tp_dst = tp;
4115
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004116 /* Remove the current tab page from the list of tab pages. */
4117 if (curtab == first_tabpage)
4118 first_tabpage = curtab->tp_next;
4119 else
4120 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004121 FOR_ALL_TABPAGES(tp)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004122 if (tp->tp_next == curtab)
4123 break;
4124 if (tp == NULL) /* "cannot happen" */
4125 return;
4126 tp->tp_next = curtab->tp_next;
4127 }
4128
4129 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004130 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004131 {
4132 curtab->tp_next = first_tabpage;
4133 first_tabpage = curtab;
4134 }
4135 else
4136 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004137 curtab->tp_next = tp_dst->tp_next;
4138 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004139 }
4140
4141 /* Need to redraw the tabline. Tab page contents doesn't change. */
4142 redraw_tabline = TRUE;
4143}
4144
4145
4146/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 * Go to another window.
4148 * When jumping to another buffer, stop Visual mode. Do this before
4149 * changing windows so we can yank the selection into the '*' register.
4150 * When jumping to another window on the same buffer, adjust its cursor
4151 * position to keep the same Visual area.
4152 */
4153 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004154win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004156#ifdef FEAT_CONCEAL
4157 win_T *owp = curwin;
4158#endif
4159
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004160 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 {
4162 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004163 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 return;
4165 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004166 if (curbuf_locked())
4167 return;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004168
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 if (wp->w_buffer != curbuf)
4170 reset_VIsual_and_resel();
4171 else if (VIsual_active)
4172 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173
4174#ifdef FEAT_GUI
4175 need_mouse_correct = TRUE;
4176#endif
4177 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004178
4179#ifdef FEAT_CONCEAL
4180 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004181 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004182 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004183 if (curwin->w_p_cole > 0 && !msg_scrolled)
4184 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004185#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186}
4187
4188#if defined(FEAT_PERL) || defined(PROTO)
4189/*
4190 * Find window number "winnr" (counting top to bottom).
4191 */
4192 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004193win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194{
4195 win_T *wp;
4196
Bram Moolenaar29323592016-07-24 22:04:11 +02004197 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 if (--winnr == 0)
4199 break;
4200 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201}
4202#endif
4203
Bram Moolenaar4033c552017-09-16 20:54:51 +02004204#if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004205/*
4206 * Find the tabpage for window "win".
4207 */
4208 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004209win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004210{
4211 win_T *wp;
4212 tabpage_T *tp;
4213
Bram Moolenaar29323592016-07-24 22:04:11 +02004214 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004215 if (wp == win)
4216 return tp;
4217 return NULL;
4218}
4219#endif
4220
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221/*
4222 * Move to window above or below "count" times.
4223 */
4224 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004225win_goto_ver(
4226 int up, /* TRUE to go to win above */
4227 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228{
4229 frame_T *fr;
4230 frame_T *nfr;
4231 frame_T *foundfr;
4232
4233 foundfr = curwin->w_frame;
4234 while (count--)
4235 {
4236 /*
4237 * First go upwards in the tree of frames until we find a upwards or
4238 * downwards neighbor.
4239 */
4240 fr = foundfr;
4241 for (;;)
4242 {
4243 if (fr == topframe)
4244 goto end;
4245 if (up)
4246 nfr = fr->fr_prev;
4247 else
4248 nfr = fr->fr_next;
4249 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4250 break;
4251 fr = fr->fr_parent;
4252 }
4253
4254 /*
4255 * Now go downwards to find the bottom or top frame in it.
4256 */
4257 for (;;)
4258 {
4259 if (nfr->fr_layout == FR_LEAF)
4260 {
4261 foundfr = nfr;
4262 break;
4263 }
4264 fr = nfr->fr_child;
4265 if (nfr->fr_layout == FR_ROW)
4266 {
4267 /* Find the frame at the cursor row. */
4268 while (fr->fr_next != NULL
4269 && frame2win(fr)->w_wincol + fr->fr_width
4270 <= curwin->w_wincol + curwin->w_wcol)
4271 fr = fr->fr_next;
4272 }
4273 if (nfr->fr_layout == FR_COL && up)
4274 while (fr->fr_next != NULL)
4275 fr = fr->fr_next;
4276 nfr = fr;
4277 }
4278 }
4279end:
4280 if (foundfr != NULL)
4281 win_goto(foundfr->fr_win);
4282}
4283
4284/*
4285 * Move to left or right window.
4286 */
4287 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004288win_goto_hor(
4289 int left, /* TRUE to go to left win */
4290 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291{
4292 frame_T *fr;
4293 frame_T *nfr;
4294 frame_T *foundfr;
4295
4296 foundfr = curwin->w_frame;
4297 while (count--)
4298 {
4299 /*
4300 * First go upwards in the tree of frames until we find a left or
4301 * right neighbor.
4302 */
4303 fr = foundfr;
4304 for (;;)
4305 {
4306 if (fr == topframe)
4307 goto end;
4308 if (left)
4309 nfr = fr->fr_prev;
4310 else
4311 nfr = fr->fr_next;
4312 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4313 break;
4314 fr = fr->fr_parent;
4315 }
4316
4317 /*
4318 * Now go downwards to find the leftmost or rightmost frame in it.
4319 */
4320 for (;;)
4321 {
4322 if (nfr->fr_layout == FR_LEAF)
4323 {
4324 foundfr = nfr;
4325 break;
4326 }
4327 fr = nfr->fr_child;
4328 if (nfr->fr_layout == FR_COL)
4329 {
4330 /* Find the frame at the cursor row. */
4331 while (fr->fr_next != NULL
4332 && frame2win(fr)->w_winrow + fr->fr_height
4333 <= curwin->w_winrow + curwin->w_wrow)
4334 fr = fr->fr_next;
4335 }
4336 if (nfr->fr_layout == FR_ROW && left)
4337 while (fr->fr_next != NULL)
4338 fr = fr->fr_next;
4339 nfr = fr;
4340 }
4341 }
4342end:
4343 if (foundfr != NULL)
4344 win_goto(foundfr->fr_win);
4345}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346
4347/*
4348 * Make window "wp" the current window.
4349 */
4350 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004351win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352{
Bram Moolenaarc917da42016-07-19 22:31:36 +02004353 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354}
4355
4356/*
4357 * Make window wp the current window.
4358 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4359 * been closed and isn't valid.
4360 */
4361 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004362win_enter_ext(
4363 win_T *wp,
4364 int undo_sync,
4365 int curwin_invalid,
Bram Moolenaar6f470022018-04-10 18:47:20 +02004366 int trigger_new_autocmds,
4367 int trigger_enter_autocmds,
4368 int trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 int other_buffer = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371
4372 if (wp == curwin && !curwin_invalid) /* nothing to do */
4373 return;
4374
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004375#ifdef FEAT_JOB_CHANNEL
4376 if (!curwin_invalid)
4377 leaving_window(curwin);
4378#endif
4379
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004380 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 {
4382 /*
4383 * Be careful: If autocommands delete the window, return now.
4384 */
4385 if (wp->w_buffer != curbuf)
4386 {
4387 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4388 other_buffer = TRUE;
4389 if (!win_valid(wp))
4390 return;
4391 }
4392 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4393 if (!win_valid(wp))
4394 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004395#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 /* autocmds may abort script processing */
4397 if (aborting())
4398 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004400 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401
4402 /* sync undo before leaving the current buffer */
4403 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004404 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004405
4406 /* Might need to scroll the old window before switching, e.g., when the
4407 * cursor was moved. */
4408 update_topline();
4409
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 /* may have to copy the buffer options when 'cpo' contains 'S' */
4411 if (wp->w_buffer != curbuf)
4412 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4413 if (!curwin_invalid)
4414 {
4415 prevwin = curwin; /* remember for CTRL-W p */
4416 curwin->w_redr_status = TRUE;
4417 }
4418 curwin = wp;
4419 curbuf = wp->w_buffer;
4420 check_cursor();
4421#ifdef FEAT_VIRTUALEDIT
4422 if (!virtual_active())
4423 curwin->w_cursor.coladd = 0;
4424#endif
4425 changed_line_abv_curs(); /* assume cursor position needs updating */
4426
4427 if (curwin->w_localdir != NULL)
4428 {
4429 /* Window has a local directory: Save current directory as global
4430 * directory (unless that was done already) and change to the local
4431 * directory. */
4432 if (globaldir == NULL)
4433 {
4434 char_u cwd[MAXPATHL];
4435
4436 if (mch_dirname(cwd, MAXPATHL) == OK)
4437 globaldir = vim_strsave(cwd);
4438 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004439 if (mch_chdir((char *)curwin->w_localdir) == 0)
4440 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 }
4442 else if (globaldir != NULL)
4443 {
4444 /* Window doesn't have a local directory and we are not in the global
4445 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004446 ignored = mch_chdir((char *)globaldir);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004447 VIM_CLEAR(globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 shorten_fnames(TRUE);
4449 }
4450
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004451#ifdef FEAT_JOB_CHANNEL
4452 entering_window(curwin);
4453#endif
Bram Moolenaarc917da42016-07-19 22:31:36 +02004454 if (trigger_new_autocmds)
4455 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004456 if (trigger_enter_autocmds)
4457 {
4458 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4459 if (other_buffer)
4460 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462
4463#ifdef FEAT_TITLE
4464 maketitle();
4465#endif
4466 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004467 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 if (restart_edit)
4469 redraw_later(VALID); /* causes status line redraw */
4470
4471 /* set window height to desired minimal value */
4472 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4473 win_setheight((int)p_wh);
4474 else if (curwin->w_height == 0)
4475 win_setheight(1);
4476
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004478 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480
4481#ifdef FEAT_MOUSE
4482 setmouse(); /* in case jumped to/from help buffer */
4483#endif
4484
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004485 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004486 DO_AUTOCHDIR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487}
4488
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004491 * Jump to the first open window that contains buffer "buf", if one exists.
4492 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 */
4494 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004495buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004497 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004499 if (curwin->w_buffer == buf)
4500 wp = curwin;
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004501 else
Bram Moolenaar29323592016-07-24 22:04:11 +02004502 FOR_ALL_WINDOWS(wp)
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004503 if (wp->w_buffer == buf)
4504 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 if (wp != NULL)
4506 win_enter(wp, FALSE);
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004507 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004509
4510/*
4511 * Jump to the first open window in any tab page that contains buffer "buf",
4512 * if one exists.
4513 * Returns a pointer to the window found, otherwise NULL.
4514 */
4515 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004516buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004517{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004518 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004519 tabpage_T *tp;
4520
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004521 if (wp != NULL)
4522 return wp;
4523
Bram Moolenaar29323592016-07-24 22:04:11 +02004524 FOR_ALL_TABPAGES(tp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004525 if (tp != curtab)
4526 {
4527 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4528 if (wp->w_buffer == buf)
4529 break;
4530 if (wp != NULL)
4531 {
4532 goto_tabpage_win(tp, wp);
4533 if (curwin != wp)
4534 wp = NULL; /* something went wrong */
4535 break;
4536 }
4537 }
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004538 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004539}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004541static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004542
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004544 * Allocate a window structure and link it in the window list when "hidden" is
4545 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004548win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004550 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551
4552 /*
4553 * allocate window structure and linesizes arrays
4554 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004555 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004556 if (new_wp == NULL)
4557 return NULL;
4558
4559 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004561 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004562 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 }
4564
Bram Moolenaar86edef62016-03-13 18:07:30 +01004565 new_wp->w_id = ++last_win_id;
4566
Bram Moolenaar429fa852013-04-15 12:27:36 +02004567#ifdef FEAT_EVAL
4568 /* init w: variables */
4569 new_wp->w_vars = dict_alloc();
4570 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004572 win_free_lsize(new_wp);
4573 vim_free(new_wp);
4574 return NULL;
4575 }
4576 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004577#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004578
Bram Moolenaar429fa852013-04-15 12:27:36 +02004579 /* Don't execute autocommands while the window is not properly
4580 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4581 * event. */
4582 block_autocmds();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004583
Bram Moolenaar429fa852013-04-15 12:27:36 +02004584 /*
4585 * link the window in the window list
4586 */
Bram Moolenaar429fa852013-04-15 12:27:36 +02004587 if (!hidden)
4588 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004589 new_wp->w_wincol = 0;
4590 new_wp->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591
Bram Moolenaar429fa852013-04-15 12:27:36 +02004592 /* position the display and the cursor at the top of the file. */
4593 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004595 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004597 new_wp->w_botline = 2;
4598 new_wp->w_cursor.lnum = 1;
Bram Moolenaar429fa852013-04-15 12:27:36 +02004599 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600
Bram Moolenaar429fa852013-04-15 12:27:36 +02004601 /* We won't calculate w_fraction until resizing the window */
4602 new_wp->w_fraction = 0;
4603 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604
4605#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004606 if (gui.in_use)
4607 {
4608 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4609 SBAR_LEFT, new_wp);
4610 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4611 SBAR_RIGHT, new_wp);
4612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613#endif
4614#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004615 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004617 unblock_autocmds();
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004618#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004619 new_wp->w_match_head = NULL;
4620 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004621#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004622 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623}
4624
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004626 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 */
4628 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004629win_free(
4630 win_T *wp,
4631 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632{
4633 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004634 buf_T *buf;
4635 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004637#ifdef FEAT_FOLDING
4638 clearFolding(wp);
4639#endif
4640
4641 /* reduce the reference count to the argument list. */
4642 alist_unlink(wp->w_alist);
4643
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004644 /* Don't execute autocommands while the window is halfway being deleted.
4645 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004646 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004647
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004648#ifdef FEAT_LUA
4649 lua_window_free(wp);
4650#endif
4651
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004652#ifdef FEAT_MZSCHEME
4653 mzscheme_window_free(wp);
4654#endif
4655
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656#ifdef FEAT_PERL
4657 perl_win_free(wp);
4658#endif
4659
4660#ifdef FEAT_PYTHON
4661 python_window_free(wp);
4662#endif
4663
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004664#ifdef FEAT_PYTHON3
4665 python3_window_free(wp);
4666#endif
4667
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668#ifdef FEAT_TCL
4669 tcl_window_free(wp);
4670#endif
4671
4672#ifdef FEAT_RUBY
4673 ruby_window_free(wp);
4674#endif
4675
4676 clear_winopt(&wp->w_onebuf_opt);
4677 clear_winopt(&wp->w_allbuf_opt);
4678
4679#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004680 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4681 hash_init(&wp->w_vars->dv_hashtab);
4682 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683#endif
4684
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004685 {
4686 tabpage_T *ttp;
4687
4688 if (prevwin == wp)
4689 prevwin = NULL;
Bram Moolenaar29323592016-07-24 22:04:11 +02004690 FOR_ALL_TABPAGES(ttp)
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004691 if (ttp->tp_prevwin == wp)
4692 ttp->tp_prevwin = NULL;
4693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 win_free_lsize(wp);
4695
4696 for (i = 0; i < wp->w_tagstacklen; ++i)
4697 vim_free(wp->w_tagstack[i].tagname);
4698
4699 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004700
Bram Moolenaarff18df02013-07-24 17:51:57 +02004701 /* Remove the window from the b_wininfo lists, it may happen that the
4702 * freed memory is re-used for another window. */
Bram Moolenaar29323592016-07-24 22:04:11 +02004703 FOR_ALL_BUFFERS(buf)
Bram Moolenaarff18df02013-07-24 17:51:57 +02004704 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4705 if (wip->wi_win == wp)
4706 wip->wi_win = NULL;
4707
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004709 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004711
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712#ifdef FEAT_JUMPLIST
4713 free_jumplist(wp);
4714#endif
4715
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004716#ifdef FEAT_QUICKFIX
4717 qf_free_all(wp);
4718#endif
4719
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720#ifdef FEAT_GUI
4721 if (gui.in_use)
4722 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4724 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4725 }
4726#endif /* FEAT_GUI */
4727
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02004728#ifdef FEAT_MENU
4729 remove_winbar(wp);
4730#endif
4731
Bram Moolenaar860cae12010-06-05 23:22:07 +02004732#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004733 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004734#endif
4735
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004736 if (wp != aucmd_win)
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004737 win_remove(wp, tp);
Bram Moolenaar3be85852014-06-12 14:01:31 +02004738 if (autocmd_busy)
4739 {
4740 wp->w_next = au_pending_free_win;
4741 au_pending_free_win = wp;
4742 }
4743 else
4744 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004745
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004746 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747}
4748
4749/*
4750 * Append window "wp" in the window list after window "after".
4751 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004752 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004753win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754{
4755 win_T *before;
4756
4757 if (after == NULL) /* after NULL is in front of the first */
4758 before = firstwin;
4759 else
4760 before = after->w_next;
4761
4762 wp->w_next = before;
4763 wp->w_prev = after;
4764 if (after == NULL)
4765 firstwin = wp;
4766 else
4767 after->w_next = wp;
4768 if (before == NULL)
4769 lastwin = wp;
4770 else
4771 before->w_prev = wp;
4772}
4773
4774/*
4775 * Remove a window from the window list.
4776 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004777 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004778win_remove(
4779 win_T *wp,
4780 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781{
4782 if (wp->w_prev != NULL)
4783 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004784 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004785 firstwin = curtab->tp_firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004786 else
4787 tp->tp_firstwin = wp->w_next;
Bram Moolenaar816968d2017-09-29 21:29:18 +02004788
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 if (wp->w_next != NULL)
4790 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004791 else if (tp == NULL)
Bram Moolenaar816968d2017-09-29 21:29:18 +02004792 lastwin = curtab->tp_lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004793 else
4794 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795}
4796
4797/*
4798 * Append frame "frp" in a frame list after frame "after".
4799 */
4800 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004801frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802{
4803 frp->fr_next = after->fr_next;
4804 after->fr_next = frp;
4805 if (frp->fr_next != NULL)
4806 frp->fr_next->fr_prev = frp;
4807 frp->fr_prev = after;
4808}
4809
4810/*
4811 * Insert frame "frp" in a frame list before frame "before".
4812 */
4813 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004814frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815{
4816 frp->fr_next = before;
4817 frp->fr_prev = before->fr_prev;
4818 before->fr_prev = frp;
4819 if (frp->fr_prev != NULL)
4820 frp->fr_prev->fr_next = frp;
4821 else
4822 frp->fr_parent->fr_child = frp;
4823}
4824
4825/*
4826 * Remove a frame from a frame list.
4827 */
4828 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004829frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830{
4831 if (frp->fr_prev != NULL)
4832 frp->fr_prev->fr_next = frp->fr_next;
4833 else
Bram Moolenaar6f361c92018-01-31 19:06:50 +01004834 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 frp->fr_parent->fr_child = frp->fr_next;
Bram Moolenaar6f361c92018-01-31 19:06:50 +01004836 /* special case: topframe->fr_child == frp */
4837 if (topframe->fr_child == frp)
4838 topframe->fr_child = frp->fr_next;
4839 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 if (frp->fr_next != NULL)
4841 frp->fr_next->fr_prev = frp->fr_prev;
4842}
4843
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844/*
4845 * Allocate w_lines[] for window "wp".
4846 * Return FAIL for failure, OK for success.
4847 */
4848 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004849win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850{
4851 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004852 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 if (wp->w_lines == NULL)
4854 return FAIL;
4855 return OK;
4856}
4857
4858/*
4859 * free lsize arrays for a window
4860 */
4861 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004862win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004864 /* TODO: why would wp be NULL here? */
4865 if (wp != NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01004866 VIM_CLEAR(wp->w_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867}
4868
4869/*
4870 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004871 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 */
4873 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004874shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004876 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877
4878 if (firstwin == NULL) /* not initialized yet */
4879 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 if (h < frame_minheight(topframe, NULL))
4881 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004882
4883 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 * that doesn't result in the right height, forget about that option. */
4885 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004886 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 frame_new_height(topframe, h, FALSE, FALSE);
4888
4889 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 compute_cmdrow();
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004891 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004892
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893#if 0
4894 /* Disabled: don't want making the screen smaller make a window larger. */
4895 if (p_ea)
4896 win_equal(curwin, FALSE, 'v');
4897#endif
4898}
4899
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900/*
4901 * Called from win_new_shellsize() after Columns changed.
4902 */
4903 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004904shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905{
4906 if (firstwin == NULL) /* not initialized yet */
4907 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004908
4909 /* First try setting the widths of windows with 'winfixwidth'. If that
4910 * doesn't result in the right width, forget about that option. */
4911 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004912 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004913 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4914
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4916#if 0
4917 /* Disabled: don't want making the screen smaller make a window larger. */
4918 if (p_ea)
4919 win_equal(curwin, FALSE, 'h');
4920#endif
4921}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922
4923#if defined(FEAT_CMDWIN) || defined(PROTO)
4924/*
4925 * Save the size of all windows in "gap".
4926 */
4927 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004928win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929
4930{
4931 win_T *wp;
4932
4933 ga_init2(gap, (int)sizeof(int), 1);
4934 if (ga_grow(gap, win_count() * 2) == OK)
Bram Moolenaar29323592016-07-24 22:04:11 +02004935 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 {
4937 ((int *)gap->ga_data)[gap->ga_len++] =
4938 wp->w_width + wp->w_vsep_width;
4939 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4940 }
4941}
4942
4943/*
4944 * Restore window sizes, but only if the number of windows is still the same.
4945 * Does not free the growarray.
4946 */
4947 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004948win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949{
4950 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004951 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952
4953 if (win_count() * 2 == gap->ga_len)
4954 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004955 /* The order matters, because frames contain other frames, but it's
4956 * difficult to get right. The easy way out is to do it twice. */
4957 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004959 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02004960 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb643e772014-07-16 15:18:26 +02004961 {
4962 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4963 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 }
4966 /* recompute the window positions */
4967 (void)win_comp_pos();
4968 }
4969}
4970#endif /* FEAT_CMDWIN */
4971
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972/*
4973 * Update the position for all windows, using the width and height of the
4974 * frames.
4975 * Returns the row just after the last window.
4976 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004977 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004978win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004980 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 int col = 0;
4982
4983 frame_comp_pos(topframe, &row, &col);
4984 return row;
4985}
4986
4987/*
4988 * Update the position of the windows in frame "topfrp", using the width and
4989 * height of the frames.
4990 * "*row" and "*col" are the top-left position of the frame. They are updated
4991 * to the bottom-right position plus one.
4992 */
4993 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004994frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995{
4996 win_T *wp;
4997 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 int startcol;
4999 int startrow;
Bram Moolenaar415a6932017-12-05 20:31:07 +01005000 int h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001
5002 wp = topfrp->fr_win;
5003 if (wp != NULL)
5004 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005005 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
5007 /* position changed, redraw */
5008 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 redraw_win_later(wp, NOT_VALID);
5011 wp->w_redr_status = TRUE;
5012 }
Bram Moolenaar415a6932017-12-05 20:31:07 +01005013 /* WinBar will not show if the window height is zero */
5014 h = VISIBLE_HEIGHT(wp) + wp->w_status_height;
5015 *row += h > topfrp->fr_height ? topfrp->fr_height : h;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 }
5018 else
5019 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 startrow = *row;
5021 startcol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
5023 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 if (topfrp->fr_layout == FR_ROW)
5025 *row = startrow; /* all frames are at the same row */
5026 else
5027 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 frame_comp_pos(frp, row, col);
5029 }
5030 }
5031}
5032
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033/*
5034 * Set current window height and take care of repositioning other windows to
5035 * fit around it.
5036 */
5037 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005038win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039{
5040 win_setheight_win(height, curwin);
5041}
5042
5043/*
5044 * Set the window height of window "win" and take care of repositioning other
5045 * windows to fit around it.
5046 */
5047 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005048win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049{
5050 int row;
5051
5052 if (win == curwin)
5053 {
5054 /* Always keep current window at least one line high, even when
5055 * 'winminheight' is zero. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 if (height < p_wmh)
5057 height = p_wmh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 if (height == 0)
5059 height = 1;
Bram Moolenaar415a6932017-12-05 20:31:07 +01005060 height += WINBAR_HEIGHT(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 }
5062
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 frame_setheight(win->w_frame, height + win->w_status_height);
5064
5065 /* recompute the window positions */
5066 row = win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067
5068 /*
5069 * If there is extra space created between the last window and the command
5070 * line, clear it.
5071 */
5072 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
5073 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5074 cmdline_row = row;
5075 msg_row = row;
5076 msg_col = 0;
5077
5078 redraw_all_later(NOT_VALID);
5079}
5080
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081/*
5082 * Set the height of a frame to "height" and take care that all frames and
5083 * windows inside it are resized. Also resize frames on the left and right if
5084 * the are in the same FR_ROW frame.
5085 *
5086 * Strategy:
5087 * If the frame is part of a FR_COL frame, try fitting the frame in that
5088 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5089 * go to containing frames to resize them and make room.
5090 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5091 * Check for the minimal height of the FR_ROW frame.
5092 * At the top level we can also use change the command line height.
5093 */
5094 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005095frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096{
5097 int room; /* total number of lines available */
5098 int take; /* number of lines taken from other windows */
5099 int room_cmdline; /* lines available from cmdline */
5100 int run;
5101 frame_T *frp;
5102 int h;
5103 int room_reserved;
5104
5105 /* If the height already is the desired value, nothing to do. */
5106 if (curfrp->fr_height == height)
5107 return;
5108
5109 if (curfrp->fr_parent == NULL)
5110 {
5111 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005112 if (height > ROWS_AVAIL)
5113 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 if (height > 0)
5115 frame_new_height(curfrp, height, FALSE, FALSE);
5116 }
5117 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5118 {
5119 /* Row of frames: Also need to resize frames left and right of this
5120 * one. First check for the minimal height of these. */
5121 h = frame_minheight(curfrp->fr_parent, NULL);
5122 if (height < h)
5123 height = h;
5124 frame_setheight(curfrp->fr_parent, height);
5125 }
5126 else
5127 {
5128 /*
5129 * Column of frames: try to change only frames in this column.
5130 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 /*
5132 * Do this twice:
5133 * 1: compute room available, if it's not enough try resizing the
5134 * containing frame.
5135 * 2: compute the room available and adjust the height to it.
5136 * Try not to reduce the height of a window with 'winfixheight' set.
5137 */
5138 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 {
5140 room = 0;
5141 room_reserved = 0;
5142 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5143 frp = frp->fr_next)
5144 {
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 Moolenaar071d4272004-06-13 20:20:40 +00005336 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5337 frp = frp->fr_next)
5338 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005339 if (frp != curfrp
5340 && frp->fr_win != NULL
5341 && frp->fr_win->w_p_wfw)
5342 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 room += frp->fr_width;
5344 if (frp != curfrp)
5345 room -= frame_minwidth(frp, NULL);
5346 }
5347
5348 if (width <= room)
5349 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005350 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 {
5352 if (width > room)
5353 width = room;
5354 break;
5355 }
5356 frame_setwidth(curfrp->fr_parent, width
5357 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5358 }
5359
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 /*
5361 * Compute the number of lines we will take from others frames (can be
5362 * negative!).
5363 */
5364 take = width - curfrp->fr_width;
5365
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005366 /* If there is not enough room, also reduce the width of a window
5367 * with 'winfixwidth' set. */
5368 if (width > room - room_reserved)
5369 room_reserved = room - width;
5370 /* If there is only a 'winfixwidth' window and making the
5371 * window smaller, need to make the other window narrower. */
5372 if (take < 0 && room - curfrp->fr_width < room_reserved)
5373 room_reserved = 0;
5374
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 /*
5376 * set the current frame to the new width
5377 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005378 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379
5380 /*
5381 * First take lines from the frames right of the current frame. If
5382 * that is not enough, takes lines from frames left of the current
5383 * frame.
5384 */
5385 for (run = 0; run < 2; ++run)
5386 {
5387 if (run == 0)
5388 frp = curfrp->fr_next; /* 1st run: start with next window */
5389 else
5390 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5391 while (frp != NULL && take != 0)
5392 {
5393 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005394 if (room_reserved > 0
5395 && frp->fr_win != NULL
5396 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005398 if (room_reserved >= frp->fr_width)
5399 room_reserved -= frp->fr_width;
5400 else
5401 {
5402 if (frp->fr_width - room_reserved > take)
5403 room_reserved = frp->fr_width - take;
5404 take -= frp->fr_width - room_reserved;
5405 frame_new_width(frp, room_reserved, FALSE, FALSE);
5406 room_reserved = 0;
5407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 }
5409 else
5410 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005411 if (frp->fr_width - take < w)
5412 {
5413 take -= frp->fr_width - w;
5414 frame_new_width(frp, w, FALSE, FALSE);
5415 }
5416 else
5417 {
5418 frame_new_width(frp, frp->fr_width - take,
5419 FALSE, FALSE);
5420 take = 0;
5421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 }
5423 if (run == 0)
5424 frp = frp->fr_next;
5425 else
5426 frp = frp->fr_prev;
5427 }
5428 }
5429 }
5430}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431
5432/*
5433 * Check 'winminheight' for a valid value.
5434 */
5435 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005436win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437{
5438 int room;
5439 int first = TRUE;
5440 win_T *wp;
5441
5442 /* loop until there is a 'winminheight' that is possible */
5443 while (p_wmh > 0)
5444 {
5445 /* TODO: handle vertical splits */
5446 room = -p_wh;
Bram Moolenaar29323592016-07-24 22:04:11 +02005447 FOR_ALL_WINDOWS(wp)
Bram Moolenaar415a6932017-12-05 20:31:07 +01005448 room += VISIBLE_HEIGHT(wp) - p_wmh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 if (room >= 0)
5450 break;
5451 --p_wmh;
5452 if (first)
5453 {
5454 EMSG(_(e_noroom));
5455 first = FALSE;
5456 }
5457 }
5458}
5459
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005460#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461
5462/*
5463 * Status line of dragwin is dragged "offset" lines down (negative is up).
5464 */
5465 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005466win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467{
5468 frame_T *curfr;
5469 frame_T *fr;
5470 int room;
5471 int row;
5472 int up; /* if TRUE, drag status line up, otherwise down */
5473 int n;
5474
5475 fr = dragwin->w_frame;
5476 curfr = fr;
5477 if (fr != topframe) /* more than one window */
5478 {
5479 fr = fr->fr_parent;
5480 /* When the parent frame is not a column of frames, its parent should
5481 * be. */
5482 if (fr->fr_layout != FR_COL)
5483 {
5484 curfr = fr;
5485 if (fr != topframe) /* only a row of windows, may drag statusline */
5486 fr = fr->fr_parent;
5487 }
5488 }
5489
5490 /* If this is the last frame in a column, may want to resize the parent
5491 * frame instead (go two up to skip a row of frames). */
5492 while (curfr != topframe && curfr->fr_next == NULL)
5493 {
5494 if (fr != topframe)
5495 fr = fr->fr_parent;
5496 curfr = fr;
5497 if (fr != topframe)
5498 fr = fr->fr_parent;
5499 }
5500
5501 if (offset < 0) /* drag up */
5502 {
5503 up = TRUE;
5504 offset = -offset;
5505 /* sum up the room of the current frame and above it */
5506 if (fr == curfr)
5507 {
5508 /* only one window */
5509 room = fr->fr_height - frame_minheight(fr, NULL);
5510 }
5511 else
5512 {
5513 room = 0;
5514 for (fr = fr->fr_child; ; fr = fr->fr_next)
5515 {
5516 room += fr->fr_height - frame_minheight(fr, NULL);
5517 if (fr == curfr)
5518 break;
5519 }
5520 }
5521 fr = curfr->fr_next; /* put fr at frame that grows */
5522 }
5523 else /* drag down */
5524 {
5525 up = FALSE;
5526 /*
5527 * Only dragging the last status line can reduce p_ch.
5528 */
5529 room = Rows - cmdline_row;
5530 if (curfr->fr_next == NULL)
5531 room -= 1;
5532 else
5533 room -= p_ch;
5534 if (room < 0)
5535 room = 0;
5536 /* sum up the room of frames below of the current one */
5537 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5538 room += fr->fr_height - frame_minheight(fr, NULL);
5539 fr = curfr; /* put fr at window that grows */
5540 }
5541
5542 if (room < offset) /* Not enough room */
5543 offset = room; /* Move as far as we can */
5544 if (offset <= 0)
5545 return;
5546
5547 /*
5548 * Grow frame fr by "offset" lines.
5549 * Doesn't happen when dragging the last status line up.
5550 */
5551 if (fr != NULL)
5552 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5553
5554 if (up)
5555 fr = curfr; /* current frame gets smaller */
5556 else
5557 fr = curfr->fr_next; /* next frame gets smaller */
5558
5559 /*
5560 * Now make the other frames smaller.
5561 */
5562 while (fr != NULL && offset > 0)
5563 {
5564 n = frame_minheight(fr, NULL);
5565 if (fr->fr_height - offset <= n)
5566 {
5567 offset -= fr->fr_height - n;
5568 frame_new_height(fr, n, !up, FALSE);
5569 }
5570 else
5571 {
5572 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5573 break;
5574 }
5575 if (up)
5576 fr = fr->fr_prev;
5577 else
5578 fr = fr->fr_next;
5579 }
5580 row = win_comp_pos();
5581 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5582 cmdline_row = row;
5583 p_ch = Rows - cmdline_row;
5584 if (p_ch < 1)
5585 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005586 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005587 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 showmode();
5589}
5590
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591/*
5592 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5593 */
5594 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005595win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596{
5597 frame_T *curfr;
5598 frame_T *fr;
5599 int room;
5600 int left; /* if TRUE, drag separator line left, otherwise right */
5601 int n;
5602
5603 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005604 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 return;
5606 curfr = fr;
5607 fr = fr->fr_parent;
5608 /* When the parent frame is not a row of frames, its parent should be. */
5609 if (fr->fr_layout != FR_ROW)
5610 {
5611 if (fr == topframe) /* only a column of windows (cannot happen?) */
5612 return;
5613 curfr = fr;
5614 fr = fr->fr_parent;
5615 }
5616
5617 /* If this is the last frame in a row, may want to resize a parent
5618 * frame instead. */
5619 while (curfr->fr_next == NULL)
5620 {
5621 if (fr == topframe)
5622 break;
5623 curfr = fr;
5624 fr = fr->fr_parent;
5625 if (fr != topframe)
5626 {
5627 curfr = fr;
5628 fr = fr->fr_parent;
5629 }
5630 }
5631
5632 if (offset < 0) /* drag left */
5633 {
5634 left = TRUE;
5635 offset = -offset;
5636 /* sum up the room of the current frame and left of it */
5637 room = 0;
5638 for (fr = fr->fr_child; ; fr = fr->fr_next)
5639 {
5640 room += fr->fr_width - frame_minwidth(fr, NULL);
5641 if (fr == curfr)
5642 break;
5643 }
5644 fr = curfr->fr_next; /* put fr at frame that grows */
5645 }
5646 else /* drag right */
5647 {
5648 left = FALSE;
5649 /* sum up the room of frames right of the current one */
5650 room = 0;
5651 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5652 room += fr->fr_width - frame_minwidth(fr, NULL);
5653 fr = curfr; /* put fr at window that grows */
5654 }
5655
5656 if (room < offset) /* Not enough room */
5657 offset = room; /* Move as far as we can */
5658 if (offset <= 0) /* No room at all, quit. */
5659 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005660 if (fr == NULL)
5661 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662
5663 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005664 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665
5666 /* shrink other frames: current and at the left or at the right */
5667 if (left)
5668 fr = curfr; /* current frame gets smaller */
5669 else
5670 fr = curfr->fr_next; /* next frame gets smaller */
5671
5672 while (fr != NULL && offset > 0)
5673 {
5674 n = frame_minwidth(fr, NULL);
5675 if (fr->fr_width - offset <= n)
5676 {
5677 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005678 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 }
5680 else
5681 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005682 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 break;
5684 }
5685 if (left)
5686 fr = fr->fr_prev;
5687 else
5688 fr = fr->fr_next;
5689 }
5690 (void)win_comp_pos();
5691 redraw_all_later(NOT_VALID);
5692}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693#endif /* FEAT_MOUSE */
5694
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005695#define FRACTION_MULT 16384L
5696
5697/*
5698 * Set wp->w_fraction for the current w_wrow and w_height.
Bram Moolenaar3679c172017-11-22 22:22:11 +01005699 * Has no effect when the window is less than two lines.
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005700 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005701 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005702set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005703{
Bram Moolenaar3679c172017-11-22 22:22:11 +01005704 if (wp->w_height > 1)
5705 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005706 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005707}
5708
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709/*
5710 * Set the height of a window.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02005711 * "height" excludes any window toolbar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 * This takes care of the things inside the window, not what happens to the
5713 * window position, the frame or to other windows.
5714 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005715 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005716win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717{
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005718 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719
5720 /* Don't want a negative height. Happens when splitting a tiny window.
5721 * Will equalize heights soon to fix it. */
5722 if (height < 0)
5723 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005724 if (wp->w_height == height)
5725 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005727 if (wp->w_height > 0)
5728 {
5729 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005730 /* w_wrow needs to be valid. When setting 'laststatus' this may
5731 * call win_new_height() recursively. */
5732 validate_cursor();
5733 if (wp->w_height != prev_height)
5734 return; /* Recursive call already changed the size, bail out here
5735 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005736 if (wp->w_wrow != wp->w_prev_fraction_row)
5737 set_fraction(wp);
5738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739
5740 wp->w_height = height;
5741 wp->w_skipcol = 0;
5742
Bram Moolenaar955f1982017-02-05 15:10:51 +01005743 /* There is no point in adjusting the scroll position when exiting. Some
5744 * values might be invalid. */
5745 if (!exiting)
5746 scroll_to_fraction(wp, prev_height);
Bram Moolenaar46328f92016-08-28 15:39:57 +02005747}
5748
5749 void
5750scroll_to_fraction(win_T *wp, int prev_height)
5751{
5752 linenr_T lnum;
5753 int sline, line_size;
5754 int height = wp->w_height;
5755
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 /* Don't change w_topline when height is zero. Don't set w_topline when
5757 * 'scrollbind' is set and this isn't the current window. */
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01005758 if (height > 0 && (!wp->w_p_scb || wp == curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005760 /*
5761 * Find a value for w_topline that shows the cursor at the same
5762 * relative position in the window as before (more or less).
5763 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 lnum = wp->w_cursor.lnum;
5765 if (lnum < 1) /* can happen when starting up */
5766 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005767 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5768 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5770 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005771
5772 if (sline >= 0)
5773 {
5774 /* Make sure the whole cursor line is visible, if possible. */
5775 int rows = plines_win(wp, lnum, FALSE);
5776
5777 if (sline > wp->w_height - rows)
5778 {
5779 sline = wp->w_height - rows;
5780 wp->w_wrow -= rows - line_size;
5781 }
5782 }
5783
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 if (sline < 0)
5785 {
5786 /*
5787 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005788 * Make cursor line the first line in the window. If not enough
5789 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 */
5791 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005792 if (wp->w_wrow >= wp->w_height
Bram Moolenaar02631462017-09-22 15:20:32 +02005793 && (wp->w_width - win_col_off(wp)) > 0)
Bram Moolenaar26470632006-10-24 19:12:40 +00005794 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005795 wp->w_skipcol += wp->w_width - win_col_off(wp);
Bram Moolenaar26470632006-10-24 19:12:40 +00005796 --wp->w_wrow;
5797 while (wp->w_wrow >= wp->w_height)
5798 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005799 wp->w_skipcol += wp->w_width - win_col_off(wp)
Bram Moolenaar26470632006-10-24 19:12:40 +00005800 + win_col_off2(wp);
5801 --wp->w_wrow;
5802 }
5803 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005804 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005806 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005808 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 {
5810#ifdef FEAT_FOLDING
5811 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5812 if (lnum == 1)
5813 {
5814 /* first line in buffer is folded */
5815 line_size = 1;
5816 --sline;
5817 break;
5818 }
5819#endif
5820 --lnum;
5821#ifdef FEAT_DIFF
5822 if (lnum == wp->w_topline)
5823 line_size = plines_win_nofill(wp, lnum, TRUE)
5824 + wp->w_topfill;
5825 else
5826#endif
5827 line_size = plines_win(wp, lnum, TRUE);
5828 sline -= line_size;
5829 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005830
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 if (sline < 0)
5832 {
5833 /*
5834 * Line we want at top would go off top of screen. Use next
5835 * line instead.
5836 */
5837#ifdef FEAT_FOLDING
5838 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5839#endif
5840 lnum++;
5841 wp->w_wrow -= line_size + sline;
5842 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005843 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 {
5845 /* First line of file reached, use that as topline. */
5846 lnum = 1;
5847 wp->w_wrow -= sline;
5848 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005849
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005850 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 }
5853
5854 if (wp == curwin)
5855 {
5856 if (p_so)
5857 update_topline();
5858 curs_columns(FALSE); /* validate w_wrow */
5859 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005860 if (prev_height > 0)
5861 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862
5863 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005864 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 wp->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 invalidate_botline_win(wp);
5867}
5868
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869/*
5870 * Set the width of a window.
5871 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005872 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005873win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874{
5875 wp->w_width = width;
5876 wp->w_lines_valid = 0;
5877 changed_line_abv_curs_win(wp);
5878 invalidate_botline_win(wp);
5879 if (wp == curwin)
5880 {
5881 update_topline();
5882 curs_columns(TRUE); /* validate w_wrow */
5883 }
5884 redraw_win_later(wp, NOT_VALID);
5885 wp->w_redr_status = TRUE;
5886}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887
5888 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005889win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890{
5891 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5892 if (wp->w_p_scr == 0)
5893 wp->w_p_scr = 1;
5894}
5895
5896/*
5897 * command_height: called whenever p_ch has been changed
5898 */
5899 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005900command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 int h;
5903 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005904 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005906 /* Use the value of p_ch that we remembered. This is needed for when the
5907 * GUI starts up, we can't be sure in what order things happen. And when
5908 * p_ch was changed in another tab page. */
5909 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005910
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911 /* Find bottom frame with width of screen. */
5912 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5914 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915
5916 /* Avoid changing the height of a window with 'winfixheight' set. */
5917 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5918 && frp->fr_win->w_p_wfh)
5919 frp = frp->fr_prev;
5920
5921 if (starting != NO_SCREEN)
5922 {
5923 cmdline_row = Rows - p_ch;
5924
5925 if (p_ch > old_p_ch) /* p_ch got bigger */
5926 {
5927 while (p_ch > old_p_ch)
5928 {
5929 if (frp == NULL)
5930 {
5931 EMSG(_(e_noroom));
5932 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005933 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 cmdline_row = Rows - p_ch;
5935 break;
5936 }
5937 h = frp->fr_height - frame_minheight(frp, NULL);
5938 if (h > p_ch - old_p_ch)
5939 h = p_ch - old_p_ch;
5940 old_p_ch += h;
5941 frame_add_height(frp, -h);
5942 frp = frp->fr_prev;
5943 }
5944
5945 /* Recompute window positions. */
5946 (void)win_comp_pos();
5947
5948 /* clear the lines added to cmdline */
5949 if (full_screen)
5950 screen_fill((int)(cmdline_row), (int)Rows, 0,
5951 (int)Columns, ' ', ' ', 0);
5952 msg_row = cmdline_row;
5953 redraw_cmdline = TRUE;
5954 return;
5955 }
5956
5957 if (msg_row < cmdline_row)
5958 msg_row = cmdline_row;
5959 redraw_cmdline = TRUE;
5960 }
5961 frame_add_height(frp, (int)(old_p_ch - p_ch));
5962
5963 /* Recompute window positions. */
5964 if (frp != lastwin->w_frame)
5965 (void)win_comp_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966}
5967
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968/*
5969 * Resize frame "frp" to be "n" lines higher (negative for less high).
5970 * Also resize the frames it is contained in.
5971 */
5972 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005973frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974{
5975 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5976 for (;;)
5977 {
5978 frp = frp->fr_parent;
5979 if (frp == NULL)
5980 break;
5981 frp->fr_height += n;
5982 }
5983}
5984
5985/*
5986 * Add or remove a status line for the bottom window(s), according to the
5987 * value of 'laststatus'.
5988 */
5989 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005990last_status(
5991 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992{
5993 /* Don't make a difference between horizontal or vertical split. */
5994 last_status_rec(topframe, (p_ls == 2
Bram Moolenaar459ca562016-11-10 18:16:33 +01005995 || (p_ls == 1 && (morewin || !ONE_WINDOW))));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996}
5997
5998 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005999last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000{
6001 frame_T *fp;
6002 win_T *wp;
6003
6004 if (fr->fr_layout == FR_LEAF)
6005 {
6006 wp = fr->fr_win;
6007 if (wp->w_status_height != 0 && !statusline)
6008 {
6009 /* remove status line */
6010 win_new_height(wp, wp->w_height + 1);
6011 wp->w_status_height = 0;
6012 comp_col();
6013 }
6014 else if (wp->w_status_height == 0 && statusline)
6015 {
6016 /* Find a frame to take a line from. */
6017 fp = fr;
6018 while (fp->fr_height <= frame_minheight(fp, NULL))
6019 {
6020 if (fp == topframe)
6021 {
6022 EMSG(_(e_noroom));
6023 return;
6024 }
6025 /* In a column of frames: go to frame above. If already at
6026 * the top or in a row of frames: go to parent. */
6027 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
6028 fp = fp->fr_prev;
6029 else
6030 fp = fp->fr_parent;
6031 }
6032 wp->w_status_height = 1;
6033 if (fp != fr)
6034 {
6035 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
6036 frame_fix_height(wp);
6037 (void)win_comp_pos();
6038 }
6039 else
6040 win_new_height(wp, wp->w_height - 1);
6041 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006042 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 }
6044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 else if (fr->fr_layout == FR_ROW)
6046 {
6047 /* vertically split windows, set status line for each one */
6048 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
6049 last_status_rec(fp, statusline);
6050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 else
6052 {
6053 /* horizontally split window, set status line for last one */
6054 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
6055 ;
6056 last_status_rec(fp, statusline);
6057 }
6058}
6059
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006060/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006061 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006062 */
6063 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006064tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006065{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006066#ifdef FEAT_GUI_TABLINE
6067 /* When the GUI has the tabline then this always returns zero. */
6068 if (gui_use_tabline())
6069 return 0;
6070#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006071 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006072 {
6073 case 0: return 0;
6074 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6075 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006076 return 1;
6077}
6078
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6080/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006081 * Get the file name at the cursor.
6082 * If Visual mode is active, use the selected text if it's in one line.
6083 * Returns the name in allocated memory, NULL for failure.
6084 */
6085 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006086grab_file_name(long count, linenr_T *file_lnum)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006087{
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006088 int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC;
6089
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006090 if (VIsual_active)
6091 {
6092 int len;
6093 char_u *ptr;
6094
6095 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6096 return NULL;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006097 return find_file_name_in_path(ptr, len, options,
6098 count, curbuf->b_ffname);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006099 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006100 return file_name_at_cursor(options | FNAME_HYP, count, file_lnum);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006101}
6102
6103/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 * Return the file name under or after the cursor.
6105 *
6106 * The 'path' option is searched if the file name is not absolute.
6107 * The string returned has been alloc'ed and should be freed by the caller.
6108 * NULL is returned if the file name or file is not found.
6109 *
6110 * options:
6111 * FNAME_MESS give error messages
6112 * FNAME_EXP expand to path
6113 * FNAME_HYP check for hypertext link
6114 * FNAME_INCL apply "includeexpr"
6115 */
6116 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006117file_name_at_cursor(int options, long count, linenr_T *file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118{
6119 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006120 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6121 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122}
6123
6124/*
6125 * Return the name of the file under or after ptr[col].
6126 * Otherwise like file_name_at_cursor().
6127 */
6128 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006129file_name_in_line(
6130 char_u *line,
6131 int col,
6132 int options,
6133 long count,
6134 char_u *rel_fname, /* file we are searching relative to */
6135 linenr_T *file_lnum) /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136{
6137 char_u *ptr;
6138 int len;
Bram Moolenaar9e3dfc62017-12-25 14:29:18 +01006139 int in_type = TRUE;
6140 int is_url = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141
6142 /*
6143 * search forward for what could be the start of a file name
6144 */
6145 ptr = line + col;
6146 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006147 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 if (*ptr == NUL) /* nothing found */
6149 {
6150 if (options & FNAME_MESS)
6151 EMSG(_("E446: No file name under cursor"));
6152 return NULL;
6153 }
6154
6155 /*
6156 * Search backward for first char of the file name.
6157 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6158 */
6159 while (ptr > line)
6160 {
6161#ifdef FEAT_MBYTE
6162 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6163 ptr -= len + 1;
6164 else
6165#endif
6166 if (vim_isfilec(ptr[-1])
6167 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6168 --ptr;
6169 else
6170 break;
6171 }
6172
6173 /*
6174 * Search forward for the last char of the file name.
6175 * Also allow "://" when ':' is not in 'isfname'.
6176 */
6177 len = 0;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006178 while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
Bram Moolenaar9e3dfc62017-12-25 14:29:18 +01006179 || ((options & FNAME_HYP) && path_is_url(ptr + len))
6180 || (is_url && vim_strchr((char_u *)"?&=", ptr[len]) != NULL))
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006181 {
Bram Moolenaar9e3dfc62017-12-25 14:29:18 +01006182 /* After type:// we also include ?, & and = as valid characters, so that
6183 * http://google.com?q=this&that=ok works. */
6184 if ((ptr[len] >= 'A' && ptr[len] <= 'Z') || (ptr[len] >= 'a' && ptr[len] <= 'z'))
6185 {
6186 if (in_type && path_is_url(ptr + len + 1))
6187 is_url = TRUE;
6188 }
6189 else
6190 in_type = FALSE;
6191
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006192 if (ptr[len] == '\\')
6193 /* Skip over the "\" in "\ ". */
6194 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195#ifdef FEAT_MBYTE
6196 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006197 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198 else
6199#endif
6200 ++len;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202
6203 /*
6204 * If there is trailing punctuation, remove it.
6205 * But don't remove "..", could be a directory name.
6206 */
6207 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6208 && ptr[len - 2] != '.')
6209 --len;
6210
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006211 if (file_lnum != NULL)
6212 {
6213 char_u *p;
6214
6215 /* Get the number after the file name and a separator character */
6216 p = ptr + len;
6217 p = skipwhite(p);
6218 if (*p != NUL)
6219 {
6220 if (!isdigit(*p))
6221 ++p; /* skip the separator */
6222 p = skipwhite(p);
6223 if (isdigit(*p))
6224 *file_lnum = (int)getdigits(&p);
6225 }
6226 }
6227
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6229}
6230
6231# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006232static char_u *eval_includeexpr(char_u *ptr, int len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233
6234 static char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006235eval_includeexpr(char_u *ptr, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236{
6237 char_u *res;
6238
6239 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006240 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006241 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 set_vim_var_string(VV_FNAME, NULL, 0);
6243 return res;
6244}
6245#endif
6246
6247/*
6248 * Return the name of the file ptr[len] in 'path'.
6249 * Otherwise like file_name_at_cursor().
6250 */
6251 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006252find_file_name_in_path(
6253 char_u *ptr,
6254 int len,
6255 int options,
6256 long count,
6257 char_u *rel_fname) /* file we are searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258{
6259 char_u *file_name;
6260 int c;
6261# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6262 char_u *tofree = NULL;
6263
6264 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6265 {
6266 tofree = eval_includeexpr(ptr, len);
6267 if (tofree != NULL)
6268 {
6269 ptr = tofree;
6270 len = (int)STRLEN(ptr);
6271 }
6272 }
6273# endif
6274
6275 if (options & FNAME_EXP)
6276 {
6277 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6278 TRUE, rel_fname);
6279
6280# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6281 /*
6282 * If the file could not be found in a normal way, try applying
6283 * 'includeexpr' (unless done already).
6284 */
6285 if (file_name == NULL
6286 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6287 {
6288 tofree = eval_includeexpr(ptr, len);
6289 if (tofree != NULL)
6290 {
6291 ptr = tofree;
6292 len = (int)STRLEN(ptr);
6293 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6294 TRUE, rel_fname);
6295 }
6296 }
6297# endif
6298 if (file_name == NULL && (options & FNAME_MESS))
6299 {
6300 c = ptr[len];
6301 ptr[len] = NUL;
6302 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6303 ptr[len] = c;
6304 }
6305
6306 /* Repeat finding the file "count" times. This matters when it
6307 * appears several times in the path. */
6308 while (file_name != NULL && --count > 0)
6309 {
6310 vim_free(file_name);
6311 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6312 }
6313 }
6314 else
6315 file_name = vim_strnsave(ptr, len);
6316
6317# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6318 vim_free(tofree);
6319# endif
6320
6321 return file_name;
6322}
6323#endif /* FEAT_SEARCHPATH */
6324
6325/*
6326 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6327 * Also check for ":\\", which MS Internet Explorer accepts, return
6328 * URL_BACKSLASH.
6329 */
6330 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006331path_is_url(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332{
6333 if (STRNCMP(p, "://", (size_t)3) == 0)
6334 return URL_SLASH;
6335 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6336 return URL_BACKSLASH;
6337 return 0;
6338}
6339
6340/*
6341 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6342 * Return URL_BACKSLASH for "name:\\".
6343 * Return zero otherwise.
6344 */
6345 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006346path_with_url(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347{
6348 char_u *p;
6349
6350 for (p = fname; isalpha(*p); ++p)
6351 ;
6352 return path_is_url(p);
6353}
6354
6355/*
6356 * Return TRUE if "name" is a full (absolute) path name or URL.
6357 */
6358 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006359vim_isAbsName(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360{
6361 return (path_with_url(name) != 0 || mch_isFullName(name));
6362}
6363
6364/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006365 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 *
6367 * return FAIL for failure, OK otherwise
6368 */
6369 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006370vim_FullName(
6371 char_u *fname,
6372 char_u *buf,
6373 int len,
6374 int force) /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375{
6376 int retval = OK;
6377 int url;
6378
6379 *buf = NUL;
6380 if (fname == NULL)
6381 return FAIL;
6382
6383 url = path_with_url(fname);
6384 if (!url)
6385 retval = mch_FullName(fname, buf, len, force);
6386 if (url || retval == FAIL)
6387 {
6388 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006389 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 }
Bram Moolenaard0573012017-10-28 21:11:06 +02006391#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392 slash_adjust(buf);
6393#endif
6394 return retval;
6395}
6396
6397/*
6398 * Return the minimal number of rows that is needed on the screen to display
6399 * the current number of windows.
6400 */
6401 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006402min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403{
6404 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006405 tabpage_T *tp;
6406 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407
6408 if (firstwin == NULL) /* not initialized yet */
6409 return MIN_LINES;
6410
Bram Moolenaarf740b292006-02-16 22:11:02 +00006411 total = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02006412 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006413 {
6414 n = frame_minheight(tp->tp_topframe, NULL);
6415 if (total < n)
6416 total = n;
6417 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006418 total += tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006419 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 return total;
6421}
6422
6423/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006424 * Return TRUE if there is only one window (in the current tab page), not
6425 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006426 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 */
6428 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006429only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 int count = 0;
6432 win_T *wp;
6433
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006434 /* If there is another tab page there always is another window. */
6435 if (first_tabpage->tp_next != NULL)
6436 return FALSE;
6437
Bram Moolenaar29323592016-07-24 22:04:11 +02006438 FOR_ALL_WINDOWS(wp)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006439 if (wp->w_buffer != NULL
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006440 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441# ifdef FEAT_QUICKFIX
6442 || wp->w_p_pvw
6443# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006444 ) || wp == curwin) && wp != aucmd_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 ++count;
6446 return (count <= 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447}
6448
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449/*
6450 * Correct the cursor line number in other windows. Used after changing the
6451 * current buffer, and before applying autocommands.
6452 * When "do_curwin" is TRUE, also check current window.
6453 */
6454 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006455check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456{
6457 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006458 tabpage_T *tp;
6459
6460 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462 {
6463 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6464 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6465 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6466 wp->w_topline = curbuf->b_ml.ml_line_count;
6467 }
6468}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469
6470/*
6471 * A snapshot of the window sizes, to restore them after closing the help
6472 * window.
6473 * Only these fields are used:
6474 * fr_layout
6475 * fr_width
6476 * fr_height
6477 * fr_next
6478 * fr_child
6479 * fr_win (only valid for the old curwin, NULL otherwise)
6480 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481
6482/*
6483 * Create a snapshot of the current frame sizes.
6484 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006485 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006486make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006488 clear_snapshot(curtab, idx);
6489 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490}
6491
6492 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006493make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494{
6495 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6496 if (*frp == NULL)
6497 return;
6498 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 (*frp)->fr_height = fr->fr_height;
6501 if (fr->fr_next != NULL)
6502 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6503 if (fr->fr_child != NULL)
6504 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6505 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6506 (*frp)->fr_win = curwin;
6507}
6508
6509/*
6510 * Remove any existing snapshot.
6511 */
6512 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006513clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006515 clear_snapshot_rec(tp->tp_snapshot[idx]);
6516 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517}
6518
6519 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006520clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521{
6522 if (fr != NULL)
6523 {
6524 clear_snapshot_rec(fr->fr_next);
6525 clear_snapshot_rec(fr->fr_child);
6526 vim_free(fr);
6527 }
6528}
6529
6530/*
6531 * Restore a previously created snapshot, if there is any.
6532 * This is only done if the screen size didn't change and the window layout is
6533 * still the same.
6534 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006535 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006536restore_snapshot(
6537 int idx,
6538 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539{
6540 win_T *wp;
6541
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006542 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006543 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006544 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6545 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006547 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548 win_comp_pos();
6549 if (wp != NULL && close_curwin)
6550 win_goto(wp);
6551 redraw_all_later(CLEAR);
6552 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006553 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006554}
6555
6556/*
6557 * Check if frames "sn" and "fr" have the same layout, same following frames
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006558 * and same children. And the window pointer is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 */
6560 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006561check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562{
6563 if (sn->fr_layout != fr->fr_layout
6564 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6565 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6566 || (sn->fr_next != NULL
6567 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6568 || (sn->fr_child != NULL
Bram Moolenaar343b8c02017-02-17 12:04:56 +01006569 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL)
Bram Moolenaar2c90d512017-03-18 22:35:30 +01006570 || (sn->fr_win != NULL && !win_valid(sn->fr_win)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 return FAIL;
6572 return OK;
6573}
6574
6575/*
6576 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6577 * following frames and children.
6578 * Returns a pointer to the old current window, or NULL.
6579 */
6580 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006581restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582{
6583 win_T *wp = NULL;
6584 win_T *wp2;
6585
6586 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 if (fr->fr_layout == FR_LEAF)
6589 {
6590 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006591 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 wp = sn->fr_win;
6593 }
6594 if (sn->fr_next != NULL)
6595 {
6596 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6597 if (wp2 != NULL)
6598 wp = wp2;
6599 }
6600 if (sn->fr_child != NULL)
6601 {
6602 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6603 if (wp2 != NULL)
6604 wp = wp2;
6605 }
6606 return wp;
6607}
6608
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006609#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6610 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006611/*
6612 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006613 * restore_win() MUST be called to undo, also when FAIL is returned.
6614 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006615 * When "no_display" is TRUE the display won't be affected, no redraw is
6616 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006617 * Returns FAIL if switching to "win" failed.
6618 */
6619 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006620switch_win(
Bram Moolenaar816968d2017-09-29 21:29:18 +02006621 win_T **save_curwin,
6622 tabpage_T **save_curtab,
6623 win_T *win,
6624 tabpage_T *tp,
6625 int no_display)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006626{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006627 block_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006628 *save_curwin = curwin;
6629 if (tp != NULL)
6630 {
6631 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006632 if (no_display)
6633 {
6634 curtab->tp_firstwin = firstwin;
6635 curtab->tp_lastwin = lastwin;
6636 curtab = tp;
6637 firstwin = curtab->tp_firstwin;
6638 lastwin = curtab->tp_lastwin;
6639 }
6640 else
6641 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006642 }
6643 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006644 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006645 curwin = win;
6646 curbuf = curwin->w_buffer;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006647 return OK;
6648}
6649
6650/*
6651 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006652 * When "no_display" is TRUE the display won't be affected, no redraw is
6653 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006654 */
6655 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006656restore_win(
6657 win_T *save_curwin UNUSED,
6658 tabpage_T *save_curtab UNUSED,
6659 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006660{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006661 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006662 {
6663 if (no_display)
6664 {
6665 curtab->tp_firstwin = firstwin;
6666 curtab->tp_lastwin = lastwin;
6667 curtab = save_curtab;
6668 firstwin = curtab->tp_firstwin;
6669 lastwin = curtab->tp_lastwin;
6670 }
6671 else
6672 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6673 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006674 if (win_valid(save_curwin))
6675 {
6676 curwin = save_curwin;
6677 curbuf = curwin->w_buffer;
6678 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006679 unblock_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006680}
6681
6682/*
6683 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6684 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6685 */
6686 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006687switch_buffer(bufref_T *save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006688{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006689 block_autocmds();
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006690 set_bufref(save_curbuf, curbuf);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006691 --curbuf->b_nwindows;
6692 curbuf = buf;
6693 curwin->w_buffer = buf;
6694 ++curbuf->b_nwindows;
6695}
6696
6697/*
6698 * Restore the current buffer after using switch_buffer().
6699 */
6700 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006701restore_buffer(bufref_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006702{
Bram Moolenaar105bc352013-05-17 16:03:57 +02006703 unblock_autocmds();
Bram Moolenaar105bc352013-05-17 16:03:57 +02006704 /* Check for valid buffer, just in case. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006705 if (bufref_valid(save_curbuf))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006706 {
6707 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006708 curwin->w_buffer = save_curbuf->br_buf;
6709 curbuf = save_curbuf->br_buf;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006710 ++curbuf->b_nwindows;
6711 }
6712}
6713#endif
6714
Bram Moolenaar4033c552017-09-16 20:54:51 +02006715#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716/*
6717 * Return TRUE if there is any vertically split window.
6718 */
6719 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006720win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006721{
6722 frame_T *fr;
6723
6724 if (topframe->fr_layout == FR_ROW)
6725 return TRUE;
6726
6727 if (topframe->fr_layout == FR_COL)
6728 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6729 if (fr->fr_layout == FR_ROW)
6730 return TRUE;
6731
6732 return FALSE;
6733}
6734#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006735
6736#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6737/*
6738 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006739 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006740 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6741 * If no particular ID is desired, -1 must be specified for 'id'.
6742 * Return ID of added match, -1 on failure.
6743 */
6744 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006745match_add(
6746 win_T *wp,
6747 char_u *grp,
6748 char_u *pat,
6749 int prio,
6750 int id,
6751 list_T *pos_list,
6752 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006753{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006754 matchitem_T *cur;
6755 matchitem_T *prev;
6756 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006757 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006758 regprog_T *regprog = NULL;
6759 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006760
Bram Moolenaarb3414592014-06-17 17:48:32 +02006761 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006762 return -1;
6763 if (id < -1 || id == 0)
6764 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02006765 EMSGN(_("E799: Invalid ID: %ld (must be greater than or equal to 1)"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006766 return -1;
6767 }
6768 if (id != -1)
6769 {
6770 cur = wp->w_match_head;
6771 while (cur != NULL)
6772 {
6773 if (cur->id == id)
6774 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02006775 EMSGN(_("E801: ID already taken: %ld"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006776 return -1;
6777 }
6778 cur = cur->next;
6779 }
6780 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006781 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006782 {
6783 EMSG2(_(e_nogroup), grp);
6784 return -1;
6785 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006786 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006787 {
6788 EMSG2(_(e_invarg2), pat);
6789 return -1;
6790 }
6791
6792 /* Find available match ID. */
6793 while (id == -1)
6794 {
6795 cur = wp->w_match_head;
6796 while (cur != NULL && cur->id != wp->w_next_match_id)
6797 cur = cur->next;
6798 if (cur == NULL)
6799 id = wp->w_next_match_id;
6800 wp->w_next_match_id++;
6801 }
6802
6803 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006804 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006805 m->id = id;
6806 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006807 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006808 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006809 m->match.regprog = regprog;
6810 m->match.rmm_ic = FALSE;
6811 m->match.rmm_maxcol = 0;
Bram Moolenaar42356152016-03-31 22:27:40 +02006812# if defined(FEAT_CONCEAL) && defined(FEAT_MBYTE)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006813 m->conceal_char = 0;
6814 if (conceal_char != NULL)
6815 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006816# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006817
Bram Moolenaarb3414592014-06-17 17:48:32 +02006818 /* Set up position matches */
6819 if (pos_list != NULL)
6820 {
6821 linenr_T toplnum = 0;
6822 linenr_T botlnum = 0;
6823 listitem_T *li;
6824 int i;
6825
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006826 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006827 i++, li = li->li_next)
6828 {
6829 linenr_T lnum = 0;
6830 colnr_T col = 0;
6831 int len = 1;
6832 list_T *subl;
6833 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006834 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006835
Bram Moolenaarb3414592014-06-17 17:48:32 +02006836 if (li->li_tv.v_type == VAR_LIST)
6837 {
6838 subl = li->li_tv.vval.v_list;
6839 if (subl == NULL)
6840 goto fail;
6841 subli = subl->lv_first;
6842 if (subli == NULL)
6843 goto fail;
6844 lnum = get_tv_number_chk(&subli->li_tv, &error);
6845 if (error == TRUE)
6846 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006847 if (lnum == 0)
6848 {
6849 --i;
6850 continue;
6851 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006852 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006853 subli = subli->li_next;
6854 if (subli != NULL)
6855 {
6856 col = get_tv_number_chk(&subli->li_tv, &error);
6857 if (error == TRUE)
6858 goto fail;
6859 subli = subli->li_next;
6860 if (subli != NULL)
6861 {
6862 len = get_tv_number_chk(&subli->li_tv, &error);
6863 if (error == TRUE)
6864 goto fail;
6865 }
6866 }
6867 m->pos.pos[i].col = col;
6868 m->pos.pos[i].len = len;
6869 }
6870 else if (li->li_tv.v_type == VAR_NUMBER)
6871 {
6872 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006873 {
6874 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006875 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006876 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006877 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6878 m->pos.pos[i].col = 0;
6879 m->pos.pos[i].len = 0;
6880 }
6881 else
6882 {
6883 EMSG(_("List or number required"));
6884 goto fail;
6885 }
6886 if (toplnum == 0 || lnum < toplnum)
6887 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006888 if (botlnum == 0 || lnum >= botlnum)
6889 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006890 }
6891
6892 /* Calculate top and bottom lines for redrawing area */
6893 if (toplnum != 0)
6894 {
6895 if (wp->w_buffer->b_mod_set)
6896 {
6897 if (wp->w_buffer->b_mod_top > toplnum)
6898 wp->w_buffer->b_mod_top = toplnum;
6899 if (wp->w_buffer->b_mod_bot < botlnum)
6900 wp->w_buffer->b_mod_bot = botlnum;
6901 }
6902 else
6903 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006904 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006905 wp->w_buffer->b_mod_top = toplnum;
6906 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006907 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006908 }
6909 m->pos.toplnum = toplnum;
6910 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006911 rtype = VALID;
6912 }
6913 }
6914
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006915 /* Insert new match. The match list is in ascending order with regard to
6916 * the match priorities. */
6917 cur = wp->w_match_head;
6918 prev = cur;
6919 while (cur != NULL && prio >= cur->priority)
6920 {
6921 prev = cur;
6922 cur = cur->next;
6923 }
6924 if (cur == prev)
6925 wp->w_match_head = m;
6926 else
6927 prev->next = m;
6928 m->next = cur;
6929
Bram Moolenaarb3414592014-06-17 17:48:32 +02006930 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006931 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006932
6933fail:
6934 vim_free(m);
6935 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006936}
6937
6938/*
6939 * Delete match with ID 'id' in the match list of window 'wp'.
6940 * Print error messages if 'perr' is TRUE.
6941 */
6942 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006943match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006944{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006945 matchitem_T *cur = wp->w_match_head;
6946 matchitem_T *prev = cur;
6947 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006948
6949 if (id < 1)
6950 {
6951 if (perr == TRUE)
Bram Moolenaar5b302912016-08-24 22:11:55 +02006952 EMSGN(_("E802: Invalid ID: %ld (must be greater than or equal to 1)"),
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006953 id);
6954 return -1;
6955 }
6956 while (cur != NULL && cur->id != id)
6957 {
6958 prev = cur;
6959 cur = cur->next;
6960 }
6961 if (cur == NULL)
6962 {
6963 if (perr == TRUE)
Bram Moolenaar5b302912016-08-24 22:11:55 +02006964 EMSGN(_("E803: ID not found: %ld"), id);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006965 return -1;
6966 }
6967 if (cur == prev)
6968 wp->w_match_head = cur->next;
6969 else
6970 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006971 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006972 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006973 if (cur->pos.toplnum != 0)
6974 {
6975 if (wp->w_buffer->b_mod_set)
6976 {
6977 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6978 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6979 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
6980 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
6981 }
6982 else
6983 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006984 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006985 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6986 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006987 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006988 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006989 rtype = VALID;
6990 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006991 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006992 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006993 return 0;
6994}
6995
6996/*
6997 * Delete all matches in the match list of window 'wp'.
6998 */
6999 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007000clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007001{
7002 matchitem_T *m;
7003
7004 while (wp->w_match_head != NULL)
7005 {
7006 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02007007 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007008 vim_free(wp->w_match_head->pattern);
7009 vim_free(wp->w_match_head);
7010 wp->w_match_head = m;
7011 }
7012 redraw_later(SOME_VALID);
7013}
7014
7015/*
7016 * Get match from ID 'id' in window 'wp'.
7017 * Return NULL if match not found.
7018 */
7019 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007020get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007021{
7022 matchitem_T *cur = wp->w_match_head;
7023
7024 while (cur != NULL && cur->id != id)
7025 cur = cur->next;
7026 return cur;
7027}
7028#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02007029
7030#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
7031 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007032get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02007033{
7034 int i = 1;
7035 win_T *w;
7036
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007037 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02007038 ++i;
7039
7040 if (w == NULL)
7041 return 0;
7042 else
7043 return i;
7044}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007045
7046 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007047get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007048{
7049 int i = 1;
7050 tabpage_T *t;
7051
7052 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7053 ++i;
7054
7055 if (t == NULL)
7056 return 0;
7057 else
7058 return i;
7059}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007060#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007061
7062/*
7063 * Return TRUE if "topfrp" and its children are at the right height.
7064 */
7065 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007066frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007067{
7068 frame_T *frp;
7069
7070 if (topfrp->fr_height != height)
7071 return FALSE;
7072
7073 if (topfrp->fr_layout == FR_ROW)
7074 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7075 if (frp->fr_height != height)
7076 return FALSE;
7077
7078 return TRUE;
7079}
7080
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007081/*
7082 * Return TRUE if "topfrp" and its children are at the right width.
7083 */
7084 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007085frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007086{
7087 frame_T *frp;
7088
7089 if (topfrp->fr_width != width)
7090 return FALSE;
7091
7092 if (topfrp->fr_layout == FR_COL)
7093 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7094 if (frp->fr_width != width)
7095 return FALSE;
7096
7097 return TRUE;
7098}
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007099
Bram Moolenaar86edef62016-03-13 18:07:30 +01007100#if defined(FEAT_EVAL) || defined(PROTO)
7101 int
7102win_getid(typval_T *argvars)
7103{
7104 int winnr;
7105 win_T *wp;
7106
7107 if (argvars[0].v_type == VAR_UNKNOWN)
7108 return curwin->w_id;
7109 winnr = get_tv_number(&argvars[0]);
7110 if (winnr > 0)
7111 {
7112 if (argvars[1].v_type == VAR_UNKNOWN)
7113 wp = firstwin;
7114 else
7115 {
7116 tabpage_T *tp;
7117 int tabnr = get_tv_number(&argvars[1]);
7118
Bram Moolenaar29323592016-07-24 22:04:11 +02007119 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007120 if (--tabnr == 0)
7121 break;
7122 if (tp == NULL)
7123 return -1;
Bram Moolenaar8e639052016-11-13 14:31:40 +01007124 if (tp == curtab)
7125 wp = firstwin;
7126 else
7127 wp = tp->tp_firstwin;
Bram Moolenaar86edef62016-03-13 18:07:30 +01007128 }
7129 for ( ; wp != NULL; wp = wp->w_next)
7130 if (--winnr == 0)
7131 return wp->w_id;
7132 }
7133 return 0;
7134}
7135
7136 int
7137win_gotoid(typval_T *argvars)
7138{
7139 win_T *wp;
7140 tabpage_T *tp;
7141 int id = get_tv_number(&argvars[0]);
7142
Bram Moolenaar29323592016-07-24 22:04:11 +02007143 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007144 if (wp->w_id == id)
7145 {
7146 goto_tabpage_win(tp, wp);
7147 return 1;
7148 }
7149 return 0;
7150}
7151
7152 void
7153win_id2tabwin(typval_T *argvars, list_T *list)
7154{
7155 win_T *wp;
7156 tabpage_T *tp;
7157 int winnr = 1;
7158 int tabnr = 1;
7159 int id = get_tv_number(&argvars[0]);
7160
Bram Moolenaar29323592016-07-24 22:04:11 +02007161 FOR_ALL_TABPAGES(tp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007162 {
Bram Moolenaar29323592016-07-24 22:04:11 +02007163 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007164 {
7165 if (wp->w_id == id)
7166 {
7167 list_append_number(list, tabnr);
7168 list_append_number(list, winnr);
7169 return;
7170 }
7171 ++winnr;
7172 }
7173 ++tabnr;
7174 winnr = 1;
7175 }
7176 list_append_number(list, 0);
7177 list_append_number(list, 0);
7178}
7179
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02007180 win_T *
7181win_id2wp(typval_T *argvars)
7182{
7183 win_T *wp;
7184 tabpage_T *tp;
7185 int id = get_tv_number(&argvars[0]);
7186
7187 FOR_ALL_TAB_WINDOWS(tp, wp)
7188 if (wp->w_id == id)
7189 return wp;
7190
7191 return NULL;
7192}
7193
Bram Moolenaar86edef62016-03-13 18:07:30 +01007194 int
7195win_id2win(typval_T *argvars)
7196{
7197 win_T *wp;
7198 int nr = 1;
7199 int id = get_tv_number(&argvars[0]);
7200
Bram Moolenaar29323592016-07-24 22:04:11 +02007201 FOR_ALL_WINDOWS(wp)
Bram Moolenaar86edef62016-03-13 18:07:30 +01007202 {
7203 if (wp->w_id == id)
7204 return nr;
7205 ++nr;
7206 }
7207 return 0;
7208}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007209
7210 void
7211win_findbuf(typval_T *argvars, list_T *list)
7212{
7213 win_T *wp;
7214 tabpage_T *tp;
7215 int bufnr = get_tv_number(&argvars[0]);
7216
Bram Moolenaar29323592016-07-24 22:04:11 +02007217 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007218 if (wp->w_buffer->b_fnum == bufnr)
7219 list_append_number(list, wp->w_id);
7220}
7221
Bram Moolenaar86edef62016-03-13 18:07:30 +01007222#endif