blob: c3cd7a233906878a967ca4908936fcca4a625007 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read a list of people who contributed.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10#include "vim.h"
11
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010012static int path_is_url(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010014static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum);
15static void win_init(win_T *newp, win_T *oldp, int flags);
16static void win_init_some(win_T *newp, win_T *oldp);
17static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
18static void frame_setheight(frame_T *curfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static void frame_setwidth(frame_T *curfrp, int width);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010020static void win_exchange(long);
21static void win_rotate(int, int);
22static void win_totop(int size, int flags);
23static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height);
24static int last_window(void);
25static int close_last_window_tabpage(win_T *win, int free_buf, tabpage_T *prev_curtab);
26static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp);
27static frame_T *win_altframe(win_T *win, tabpage_T *tp);
28static tabpage_T *alt_tabpage(void);
29static win_T *frame2win(frame_T *frp);
30static int frame_has_win(frame_T *frp, win_T *wp);
31static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
32static int frame_fixed_height(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010033static int frame_fixed_width(frame_T *frp);
34static void frame_add_statusline(frame_T *frp);
35static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
36static void frame_add_vsep(frame_T *frp);
37static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
38static void frame_fix_width(win_T *wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010040static int win_alloc_firstwin(win_T *oldwin);
41static void new_frame(win_T *wp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000042#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010043static tabpage_T *alloc_tabpage(void);
44static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds);
45static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds);
46static void frame_fix_height(win_T *wp);
47static int frame_minheight(frame_T *topfrp, win_T *next_curwin);
48static void win_enter_ext(win_T *wp, int undo_sync, int no_curwin, int trigger_enter_autocmds, int trigger_leave_autocmds);
49static void win_free(win_T *wp, tabpage_T *tp);
50static void frame_append(frame_T *after, frame_T *frp);
51static void frame_insert(frame_T *before, frame_T *frp);
52static void frame_remove(frame_T *frp);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010053static void win_goto_ver(int up, long count);
54static void win_goto_hor(int left, long count);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010055static void frame_add_height(frame_T *frp, int n);
56static void last_status_rec(frame_T *fr, int statusline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010058static void make_snapshot_rec(frame_T *fr, frame_T **frp);
59static void clear_snapshot(tabpage_T *tp, int idx);
60static void clear_snapshot_rec(frame_T *fr);
61static int check_snapshot_rec(frame_T *sn, frame_T *fr);
62static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010064static int frame_check_height(frame_T *topfrp, int height);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010065static int frame_check_width(frame_T *topfrp, int width);
Bram Moolenaarb893ac22013-06-26 14:04:47 +020066
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#endif /* FEAT_WINDOWS */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000068
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010069static win_T *win_alloc(win_T *after, int hidden);
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
71#define URL_SLASH 1 /* path_is_url() has found "://" */
72#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
73
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000074#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
Bram Moolenaar05159a02005-02-26 23:04:13 +000076#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +000077# define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000078#else
79# define ROWS_AVAIL (Rows - p_ch)
Bram Moolenaar05159a02005-02-26 23:04:13 +000080#endif
81
Bram Moolenaar071d4272004-06-13 20:20:40 +000082#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000083
84static char *m_onlyone = N_("Already only one window");
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086/*
87 * all CTRL-W window commands are handled here, called from normal_cmd().
88 */
89 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +010090do_window(
91 int nchar,
92 long Prenum,
93 int xchar) /* extra char from ":wincmd gx" or NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +000094{
95 long Prenum1;
96 win_T *wp;
97#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
98 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +000099 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#endif
101#ifdef FEAT_FIND_ID
102 int type = FIND_DEFINE;
103 int len;
104#endif
105 char_u cbuf[40];
106
107 if (Prenum == 0)
108 Prenum1 = 1;
109 else
110 Prenum1 = Prenum;
111
112#ifdef FEAT_CMDWIN
113# define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
114#else
115# define CHECK_CMDWIN
116#endif
117
118 switch (nchar)
119 {
120/* split current window in two parts, horizontally */
121 case 'S':
122 case Ctrl_S:
123 case 's':
124 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000126#ifdef FEAT_QUICKFIX
127 /* When splitting the quickfix window open a new buffer in it,
128 * don't replicate the quickfix buffer. */
129 if (bt_quickfix(curbuf))
130 goto newwindow;
131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#ifdef FEAT_GUI
133 need_mouse_correct = TRUE;
134#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200135 (void)win_split((int)Prenum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 break;
137
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138/* split current window in two parts, vertically */
139 case Ctrl_V:
140 case 'v':
141 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100143#ifdef FEAT_QUICKFIX
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000144 /* When splitting the quickfix window open a new buffer in it,
145 * don't replicate the quickfix buffer. */
146 if (bt_quickfix(curbuf))
147 goto newwindow;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100148#endif
149#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100151#endif
Bram Moolenaarcde88542015-08-11 19:14:00 +0200152 (void)win_split((int)Prenum, WSP_VERT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
155/* split current window and edit alternate file */
156 case Ctrl_HAT:
157 case '^':
158 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100160 cmd_with_count("split #", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 do_cmdline_cmd(cbuf);
162 break;
163
164/* open new window */
165 case Ctrl_N:
166 case 'n':
167 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000169#ifdef FEAT_QUICKFIX
170newwindow:
171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000173 /* window height */
174 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 else
176 cbuf[0] = NUL;
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100177#if defined(FEAT_QUICKFIX)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000178 if (nchar == 'v' || nchar == Ctrl_V)
179 STRCAT(cbuf, "v");
180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 STRCAT(cbuf, "new");
182 do_cmdline_cmd(cbuf);
183 break;
184
185/* quit current window */
186 case Ctrl_Q:
187 case 'q':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100189 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100190 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 break;
192
193/* close current window */
194 case Ctrl_C:
195 case 'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100197 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100198 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 break;
200
201#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
202/* close preview window */
203 case Ctrl_Z:
204 case 'z':
205 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 do_cmdline_cmd((char_u *)"pclose");
208 break;
209
210/* cursor to preview window */
211 case 'P':
212 for (wp = firstwin; wp != NULL; wp = wp->w_next)
213 if (wp->w_p_pvw)
214 break;
215 if (wp == NULL)
216 EMSG(_("E441: There is no preview window"));
217 else
218 win_goto(wp);
219 break;
220#endif
221
222/* close all but current window */
223 case Ctrl_O:
224 case 'o':
225 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100227 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100228 do_cmdline_cmd(cbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 break;
230
231/* cursor to next window with wrap around */
232 case Ctrl_W:
233 case 'w':
234/* cursor to previous window with wrap around */
235 case 'W':
236 CHECK_CMDWIN
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000237 if (firstwin == lastwin && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 beep_flush();
239 else
240 {
241 if (Prenum) /* go to specified window */
242 {
243 for (wp = firstwin; --Prenum > 0; )
244 {
245 if (wp->w_next == NULL)
246 break;
247 else
248 wp = wp->w_next;
249 }
250 }
251 else
252 {
253 if (nchar == 'W') /* go to previous window */
254 {
255 wp = curwin->w_prev;
256 if (wp == NULL)
257 wp = lastwin; /* wrap around */
258 }
259 else /* go to next window */
260 {
261 wp = curwin->w_next;
262 if (wp == NULL)
263 wp = firstwin; /* wrap around */
264 }
265 }
266 win_goto(wp);
267 }
268 break;
269
270/* cursor to window below */
271 case 'j':
272 case K_DOWN:
273 case Ctrl_J:
274 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 win_goto_ver(FALSE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 break;
277
278/* cursor to window above */
279 case 'k':
280 case K_UP:
281 case Ctrl_K:
282 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 win_goto_ver(TRUE, Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 break;
285
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286/* cursor to left window */
287 case 'h':
288 case K_LEFT:
289 case Ctrl_H:
290 case K_BS:
291 CHECK_CMDWIN
292 win_goto_hor(TRUE, Prenum1);
293 break;
294
295/* cursor to right window */
296 case 'l':
297 case K_RIGHT:
298 case Ctrl_L:
299 CHECK_CMDWIN
300 win_goto_hor(FALSE, Prenum1);
301 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000303/* move window to new tab page */
304 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000305 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000306 MSG(_(m_onlyone));
307 else
308 {
309 tabpage_T *oldtab = curtab;
310 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000311
312 /* First create a new tab with the window, then go back to
313 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000314 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000315 if (win_new_tabpage((int)Prenum) == OK
316 && valid_tabpage(oldtab))
317 {
318 newtab = curtab;
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200319 goto_tabpage_tp(oldtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000320 if (curwin == wp)
321 win_close(curwin, FALSE);
322 if (valid_tabpage(newtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +0200323 goto_tabpage_tp(newtab, TRUE, TRUE);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000324 }
325 }
326 break;
327
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328/* cursor to top-left window */
329 case 't':
330 case Ctrl_T:
331 win_goto(firstwin);
332 break;
333
334/* cursor to bottom-right window */
335 case 'b':
336 case Ctrl_B:
337 win_goto(lastwin);
338 break;
339
340/* cursor to last accessed (previous) window */
341 case 'p':
342 case Ctrl_P:
Bram Moolenaar3dda7db2016-04-03 21:22:58 +0200343 if (!win_valid(prevwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 beep_flush();
345 else
346 win_goto(prevwin);
347 break;
348
349/* exchange current and next window */
350 case 'x':
351 case Ctrl_X:
352 CHECK_CMDWIN
353 win_exchange(Prenum);
354 break;
355
356/* rotate windows downwards */
357 case Ctrl_R:
358 case 'r':
359 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 win_rotate(FALSE, (int)Prenum1); /* downwards */
362 break;
363
364/* rotate windows upwards */
365 case 'R':
366 CHECK_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 win_rotate(TRUE, (int)Prenum1); /* upwards */
369 break;
370
371/* move window to the very top/bottom/left/right */
372 case 'K':
373 case 'J':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 case 'H':
375 case 'L':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 CHECK_CMDWIN
377 win_totop((int)Prenum,
378 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
379 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
380 break;
381
382/* make all windows the same height */
383 case '=':
384#ifdef FEAT_GUI
385 need_mouse_correct = TRUE;
386#endif
387 win_equal(NULL, FALSE, 'b');
388 break;
389
390/* increase current window height */
391 case '+':
392#ifdef FEAT_GUI
393 need_mouse_correct = TRUE;
394#endif
395 win_setheight(curwin->w_height + (int)Prenum1);
396 break;
397
398/* decrease current window height */
399 case '-':
400#ifdef FEAT_GUI
401 need_mouse_correct = TRUE;
402#endif
403 win_setheight(curwin->w_height - (int)Prenum1);
404 break;
405
406/* set current window height */
407 case Ctrl__:
408 case '_':
409#ifdef FEAT_GUI
410 need_mouse_correct = TRUE;
411#endif
412 win_setheight(Prenum ? (int)Prenum : 9999);
413 break;
414
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415/* increase current window width */
416 case '>':
417#ifdef FEAT_GUI
418 need_mouse_correct = TRUE;
419#endif
420 win_setwidth(curwin->w_width + (int)Prenum1);
421 break;
422
423/* decrease current window width */
424 case '<':
425#ifdef FEAT_GUI
426 need_mouse_correct = TRUE;
427#endif
428 win_setwidth(curwin->w_width - (int)Prenum1);
429 break;
430
431/* set current window width */
432 case '|':
433#ifdef FEAT_GUI
434 need_mouse_correct = TRUE;
435#endif
436 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
437 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438
439/* jump to tag and split window if tag exists (in preview window) */
440#if defined(FEAT_QUICKFIX)
441 case '}':
442 CHECK_CMDWIN
443 if (Prenum)
444 g_do_tagpreview = Prenum;
445 else
446 g_do_tagpreview = p_pvh;
447 /*FALLTHROUGH*/
448#endif
449 case ']':
450 case Ctrl_RSB:
451 CHECK_CMDWIN
Bram Moolenaard355c502014-09-23 13:48:43 +0200452 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 if (Prenum)
454 postponed_split = Prenum;
455 else
456 postponed_split = -1;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200457#ifdef FEAT_QUICKFIX
Bram Moolenaar56095e12014-10-09 10:44:37 +0200458 if (nchar != '}')
459 g_do_tagpreview = 0;
Bram Moolenaarda014b92014-09-24 13:26:44 +0200460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461
Bram Moolenaard355c502014-09-23 13:48:43 +0200462 /* Execute the command right here, required when "wincmd ]"
463 * was used in a function. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 do_nv_ident(Ctrl_RSB, NUL);
465 break;
466
467#ifdef FEAT_SEARCHPATH
468/* edit file name under cursor in a new window */
469 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000470 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000472wingotofile:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 CHECK_CMDWIN
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000474
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000475 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 if (ptr != NULL)
477 {
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200478 tabpage_T *oldtab = curtab;
479 win_T *oldwin = curwin;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000480# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000482# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 setpcmark();
484 if (win_split(0, 0) == OK)
485 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200486 RESET_BINDING(curwin);
Bram Moolenaar5d2ca042016-06-26 17:11:21 +0200487 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
488 ECMD_HIDE, NULL) == FAIL)
489 {
490 /* Failed to open the file, close the window
491 * opened for it. */
492 win_close(curwin, FALSE);
493 goto_tabpage_win(oldtab, oldwin);
494 }
495 else if (nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000496 {
497 curwin->w_cursor.lnum = lnum;
498 check_cursor_lnum();
499 beginline(BL_SOL | BL_FIX);
500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 }
502 vim_free(ptr);
503 }
504 break;
505#endif
506
507#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000508/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 * new window -- webb
510 */
511 case 'i': /* Go to any match */
512 case Ctrl_I:
513 type = FIND_ANY;
514 /* FALLTHROUGH */
515 case 'd': /* Go to definition, using 'define' */
516 case Ctrl_D:
517 CHECK_CMDWIN
518 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
519 break;
520 find_pattern_in_path(ptr, 0, len, TRUE,
521 Prenum == 0 ? TRUE : FALSE, type,
522 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
523 curwin->w_set_curswant = TRUE;
524 break;
525#endif
526
Bram Moolenaar05159a02005-02-26 23:04:13 +0000527 case K_KENTER:
528 case CAR:
529#if defined(FEAT_QUICKFIX)
530 /*
531 * In a quickfix window a <CR> jumps to the error under the
532 * cursor in a new window.
533 */
534 if (bt_quickfix(curbuf))
535 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000536 sprintf((char *)cbuf, "split +%ld%s",
537 (long)curwin->w_cursor.lnum,
538 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000539 do_cmdline_cmd(cbuf);
540 }
541#endif
542 break;
543
544
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545/* CTRL-W g extended commands */
546 case 'g':
547 case Ctrl_G:
548 CHECK_CMDWIN
549#ifdef USE_ON_FLY_SCROLL
550 dont_scroll = TRUE; /* disallow scrolling here */
551#endif
552 ++no_mapping;
553 ++allow_keys; /* no mapping for xchar, but allow key codes */
554 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000555 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 --no_mapping;
558 --allow_keys;
559#ifdef FEAT_CMDL_INFO
560 (void)add_to_showcmd(xchar);
561#endif
562 switch (xchar)
563 {
564#if defined(FEAT_QUICKFIX)
565 case '}':
566 xchar = Ctrl_RSB;
567 if (Prenum)
568 g_do_tagpreview = Prenum;
569 else
570 g_do_tagpreview = p_pvh;
571 /*FALLTHROUGH*/
572#endif
573 case ']':
574 case Ctrl_RSB:
Bram Moolenaard355c502014-09-23 13:48:43 +0200575 /* keep Visual mode, can select words to use as a tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 if (Prenum)
577 postponed_split = Prenum;
578 else
579 postponed_split = -1;
580
581 /* Execute the command right here, required when
582 * "wincmd g}" was used in a function. */
583 do_nv_ident('g', xchar);
584 break;
585
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000586#ifdef FEAT_SEARCHPATH
587 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000588 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100589 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000590 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000591 goto wingotofile;
592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 default:
594 beep_flush();
595 break;
596 }
597 break;
598
599 default: beep_flush();
600 break;
601 }
602}
603
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100604/*
605 * Figure out the address type for ":wnncmd".
606 */
607 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100608get_wincmd_addr_type(char_u *arg, exarg_T *eap)
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100609{
610 switch (*arg)
611 {
612 case 'S':
613 case Ctrl_S:
614 case 's':
615 case Ctrl_N:
616 case 'n':
617 case 'j':
618 case Ctrl_J:
619 case 'k':
620 case Ctrl_K:
621 case 'T':
622 case Ctrl_R:
623 case 'r':
624 case 'R':
625 case 'K':
626 case 'J':
627 case '+':
628 case '-':
629 case Ctrl__:
630 case '_':
631 case '|':
632 case ']':
633 case Ctrl_RSB:
634 case 'g':
635 case Ctrl_G:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100636 case Ctrl_V:
637 case 'v':
638 case 'h':
639 case Ctrl_H:
640 case 'l':
641 case Ctrl_L:
642 case 'H':
643 case 'L':
644 case '>':
645 case '<':
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +0100646#if defined(FEAT_QUICKFIX)
647 case '}':
648#endif
649#ifdef FEAT_SEARCHPATH
650 case 'f':
651 case 'F':
652 case Ctrl_F:
653#endif
654#ifdef FEAT_FIND_ID
655 case 'i':
656 case Ctrl_I:
657 case 'd':
658 case Ctrl_D:
659#endif
660 /* window size or any count */
661 eap->addr_type = ADDR_LINES;
662 break;
663
664 case Ctrl_HAT:
665 case '^':
666 /* buffer number */
667 eap->addr_type = ADDR_BUFFERS;
668 break;
669
670 case Ctrl_Q:
671 case 'q':
672 case Ctrl_C:
673 case 'c':
674 case Ctrl_O:
675 case 'o':
676 case Ctrl_W:
677 case 'w':
678 case 'W':
679 case 'x':
680 case Ctrl_X:
681 /* window number */
682 eap->addr_type = ADDR_WINDOWS;
683 break;
684
685#if defined(FEAT_QUICKFIX)
686 case Ctrl_Z:
687 case 'z':
688 case 'P':
689#endif
690 case 't':
691 case Ctrl_T:
692 case 'b':
693 case Ctrl_B:
694 case 'p':
695 case Ctrl_P:
696 case '=':
697 case CAR:
698 /* no count */
699 eap->addr_type = 0;
700 break;
701 }
702}
703
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100704 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100705cmd_with_count(
706 char *cmd,
707 char_u *bufp,
708 size_t bufsize,
709 long Prenum)
Bram Moolenaar2f1e51a2014-12-13 03:58:09 +0100710{
711 size_t len = STRLEN(cmd);
712
713 STRCPY(bufp, cmd);
714 if (Prenum > 0)
715 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum);
716}
717
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718/*
719 * split the current window, implements CTRL-W s and :split
720 *
721 * "size" is the height or width for the new window, 0 to use half of current
722 * height or width.
723 *
724 * "flags":
725 * WSP_ROOM: require enough room for new window
726 * WSP_VERT: vertical split.
727 * WSP_TOP: open window at the top-left of the shell (help window).
728 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
729 * WSP_HELP: creating the help window, keep layout snapshot
730 *
731 * return FAIL for failure, OK otherwise
732 */
733 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100734win_split(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000736 /* When the ":tab" modifier was used open a new tab page instead. */
737 if (may_open_tabpage() == OK)
738 return OK;
739
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 /* Add flags from ":vertical", ":topleft" and ":botright". */
741 flags |= cmdmod.split;
742 if ((flags & WSP_TOP) && (flags & WSP_BOT))
743 {
744 EMSG(_("E442: Can't split topleft and botright at the same time"));
745 return FAIL;
746 }
747
748 /* When creating the help window make a snapshot of the window layout.
749 * Otherwise clear the snapshot, it's now invalid. */
750 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000751 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000753 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755 return win_split_ins(size, flags, NULL, 0);
756}
757
758/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100759 * When "new_wp" is NULL: split the current window in two.
760 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 * top/left/right/bottom.
762 * return FAIL for failure, OK otherwise
763 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000764 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +0100765win_split_ins(
766 int size,
767 int flags,
768 win_T *new_wp,
769 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100771 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 win_T *oldwin;
773 int new_size = size;
774 int i;
775 int need_status = 0;
776 int do_equal = FALSE;
777 int needed;
778 int available;
779 int oldwin_height = 0;
780 int layout;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200781 frame_T *frp, *curfrp, *frp2, *prevfrp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 int before;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200783 int minheight;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200784 int wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
786 if (flags & WSP_TOP)
787 oldwin = firstwin;
788 else if (flags & WSP_BOT)
789 oldwin = lastwin;
790 else
791 oldwin = curwin;
792
793 /* add a status line when p_ls == 1 and splitting the first window */
794 if (lastwin == firstwin && p_ls == 1 && oldwin->w_status_height == 0)
795 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100796 if (oldwin->w_height <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {
798 EMSG(_(e_noroom));
799 return FAIL;
800 }
801 need_status = STATUS_HEIGHT;
802 }
803
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000804#ifdef FEAT_GUI
805 /* May be needed for the scrollbars that are going to change. */
806 if (gui.in_use)
807 out_flush();
808#endif
809
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 if (flags & WSP_VERT)
811 {
Bram Moolenaara0485492014-07-16 23:39:54 +0200812 int wmw1;
813 int minwidth;
814
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816
817 /*
818 * Check if we are able to split the current window and compute its
819 * width.
820 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200821 /* Current window requires at least 1 space. */
822 wmw1 = (p_wmw == 0 ? 1 : p_wmw);
823 needed = wmw1 + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200825 needed += p_wiw - wmw1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200826 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200828 minwidth = frame_minwidth(topframe, NOWIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 available = topframe->fr_width;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200830 needed += minwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200832 else if (p_ea)
833 {
834 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
835 prevfrp = oldwin->w_frame;
836 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
837 frp = frp->fr_parent)
838 {
839 if (frp->fr_layout == FR_ROW)
840 for (frp2 = frp->fr_child; frp2 != NULL;
841 frp2 = frp2->fr_next)
842 if (frp2 != prevfrp)
843 minwidth += frame_minwidth(frp2, NOWIN);
844 prevfrp = frp;
845 }
846 available = topframe->fr_width;
847 needed += minwidth;
848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 else
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200850 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200851 minwidth = frame_minwidth(oldwin->w_frame, NOWIN);
852 available = oldwin->w_frame->fr_width;
853 needed += minwidth;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200854 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100855 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 {
857 EMSG(_(e_noroom));
858 return FAIL;
859 }
860 if (new_size == 0)
861 new_size = oldwin->w_width / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200862 if (new_size > available - minwidth - 1)
863 new_size = available - minwidth - 1;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200864 if (new_size < wmw1)
865 new_size = wmw1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866
867 /* if it doesn't fit in the current window, need win_equal() */
868 if (oldwin->w_width - new_size - 1 < p_wmw)
869 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000870
871 /* We don't like to take lines for the new window from a
872 * 'winfixwidth' window. Take them from a window to the left or right
873 * instead, if possible. */
874 if (oldwin->w_p_wfw)
875 win_setwidth_win(oldwin->w_width + new_size, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000876
877 /* Only make all windows the same width if one of them (except oldwin)
878 * is wider than one of the split windows. */
879 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
880 && oldwin->w_frame->fr_parent != NULL)
881 {
882 frp = oldwin->w_frame->fr_parent->fr_child;
883 while (frp != NULL)
884 {
885 if (frp->fr_win != oldwin && frp->fr_win != NULL
886 && (frp->fr_win->w_width > new_size
887 || frp->fr_win->w_width > oldwin->w_width
Bram Moolenaardf46f6f2014-11-19 13:40:08 +0100888 - new_size - 1))
Bram Moolenaar67f71312007-08-12 14:55:56 +0000889 {
890 do_equal = TRUE;
891 break;
892 }
893 frp = frp->fr_next;
894 }
895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 }
897 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 {
899 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901 /*
902 * Check if we are able to split the current window and compute its
903 * height.
904 */
Bram Moolenaar1f538352014-07-16 18:19:27 +0200905 /* Current window requires at least 1 space. */
906 wmh1 = (p_wmh == 0 ? 1 : p_wmh);
907 needed = wmh1 + STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (flags & WSP_ROOM)
Bram Moolenaar1f538352014-07-16 18:19:27 +0200909 needed += p_wh - wmh1;
Bram Moolenaar54368f22014-07-23 15:21:20 +0200910 if (flags & (WSP_BOT | WSP_TOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200912 minheight = frame_minheight(topframe, NOWIN) + need_status;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 available = topframe->fr_height;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200914 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 }
Bram Moolenaar54368f22014-07-23 15:21:20 +0200916 else if (p_ea)
917 {
918 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
919 prevfrp = oldwin->w_frame;
920 for (frp = oldwin->w_frame->fr_parent; frp != NULL;
921 frp = frp->fr_parent)
922 {
923 if (frp->fr_layout == FR_COL)
924 for (frp2 = frp->fr_child; frp2 != NULL;
925 frp2 = frp2->fr_next)
926 if (frp2 != prevfrp)
927 minheight += frame_minheight(frp2, NOWIN);
928 prevfrp = frp;
929 }
930 available = topframe->fr_height;
931 needed += minheight;
932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 else
934 {
Bram Moolenaar1f538352014-07-16 18:19:27 +0200935 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status;
936 available = oldwin->w_frame->fr_height;
937 needed += minheight;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100939 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 {
941 EMSG(_(e_noroom));
942 return FAIL;
943 }
944 oldwin_height = oldwin->w_height;
945 if (need_status)
946 {
947 oldwin->w_status_height = STATUS_HEIGHT;
948 oldwin_height -= STATUS_HEIGHT;
949 }
950 if (new_size == 0)
951 new_size = oldwin_height / 2;
Bram Moolenaarb4d21352014-07-16 14:16:46 +0200952 if (new_size > available - minheight - STATUS_HEIGHT)
953 new_size = available - minheight - STATUS_HEIGHT;
Bram Moolenaar1f538352014-07-16 18:19:27 +0200954 if (new_size < wmh1)
955 new_size = wmh1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
957 /* if it doesn't fit in the current window, need win_equal() */
958 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
959 do_equal = TRUE;
960
961 /* We don't like to take lines for the new window from a
962 * 'winfixheight' window. Take them from a window above or below
963 * instead, if possible. */
964 if (oldwin->w_p_wfh)
965 {
966 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
967 oldwin);
968 oldwin_height = oldwin->w_height;
969 if (need_status)
970 oldwin_height -= STATUS_HEIGHT;
971 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000972
973 /* Only make all windows the same height if one of them (except oldwin)
974 * is higher than one of the split windows. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100975 if (!do_equal && p_ea && size == 0 && *p_ead != 'h'
Bram Moolenaar67f71312007-08-12 14:55:56 +0000976 && oldwin->w_frame->fr_parent != NULL)
977 {
978 frp = oldwin->w_frame->fr_parent->fr_child;
979 while (frp != NULL)
980 {
981 if (frp->fr_win != oldwin && frp->fr_win != NULL
982 && (frp->fr_win->w_height > new_size
983 || frp->fr_win->w_height > oldwin_height - new_size
984 - STATUS_HEIGHT))
985 {
986 do_equal = TRUE;
987 break;
988 }
989 frp = frp->fr_next;
990 }
991 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 }
993
994 /*
995 * allocate new window structure and link it in the window list
996 */
997 if ((flags & WSP_TOP) == 0
998 && ((flags & WSP_BOT)
999 || (flags & WSP_BELOW)
1000 || (!(flags & WSP_ABOVE)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001001 && ( (flags & WSP_VERT) ? p_spr : p_sb))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 {
1003 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001004 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001005 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 else
1007 win_append(oldwin, wp);
1008 }
1009 else
1010 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001011 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001012 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 else
1014 win_append(oldwin->w_prev, wp);
1015 }
1016
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001017 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 {
1019 if (wp == NULL)
1020 return FAIL;
1021
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001022 new_frame(wp);
1023 if (wp->w_frame == NULL)
1024 {
1025 win_free(wp, NULL);
1026 return FAIL;
1027 }
1028
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001029 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001030 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 }
1032
1033 /*
1034 * Reorganise the tree of frames to insert the new window.
1035 */
1036 if (flags & (WSP_TOP | WSP_BOT))
1037 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
1039 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 {
1041 curfrp = topframe->fr_child;
1042 if (flags & WSP_BOT)
1043 while (curfrp->fr_next != NULL)
1044 curfrp = curfrp->fr_next;
1045 }
1046 else
1047 curfrp = topframe;
1048 before = (flags & WSP_TOP);
1049 }
1050 else
1051 {
1052 curfrp = oldwin->w_frame;
1053 if (flags & WSP_BELOW)
1054 before = FALSE;
1055 else if (flags & WSP_ABOVE)
1056 before = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001057 else if (flags & WSP_VERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 before = !p_spr;
1059 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 before = !p_sb;
1061 }
1062 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
1063 {
1064 /* Need to create a new frame in the tree to make a branch. */
1065 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
1066 *frp = *curfrp;
1067 curfrp->fr_layout = layout;
1068 frp->fr_parent = curfrp;
1069 frp->fr_next = NULL;
1070 frp->fr_prev = NULL;
1071 curfrp->fr_child = frp;
1072 curfrp->fr_win = NULL;
1073 curfrp = frp;
1074 if (frp->fr_win != NULL)
1075 oldwin->w_frame = frp;
1076 else
1077 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
1078 frp->fr_parent = curfrp;
1079 }
1080
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001081 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001082 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001084 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 frp->fr_parent = curfrp->fr_parent;
1086
1087 /* Insert the new frame at the right place in the frame list. */
1088 if (before)
1089 frame_insert(curfrp, frp);
1090 else
1091 frame_append(curfrp, frp);
1092
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001093 /* Set w_fraction now so that the cursor keeps the same relative
1094 * vertical position. */
Bram Moolenaar13d831f2011-01-08 14:46:03 +01001095 if (oldwin->w_height > 0)
1096 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001097 wp->w_fraction = oldwin->w_fraction;
1098
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 if (flags & WSP_VERT)
1100 {
1101 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01001102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 if (need_status)
1104 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001105 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 oldwin->w_status_height = need_status;
1107 }
1108 if (flags & (WSP_TOP | WSP_BOT))
1109 {
1110 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001111 wp->w_winrow = tabline_height();
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001112 win_new_height(wp, curfrp->fr_height - (p_ls > 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 wp->w_status_height = (p_ls > 0);
1114 }
1115 else
1116 {
1117 /* height and row of new window is same as current window */
1118 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001119 win_new_height(wp, oldwin->w_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 wp->w_status_height = oldwin->w_status_height;
1121 }
1122 frp->fr_height = curfrp->fr_height;
1123
1124 /* "new_size" of the current window goes to the new window, use
1125 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001126 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 if (before)
1128 wp->w_vsep_width = 1;
1129 else
1130 {
1131 wp->w_vsep_width = oldwin->w_vsep_width;
1132 oldwin->w_vsep_width = 1;
1133 }
1134 if (flags & (WSP_TOP | WSP_BOT))
1135 {
1136 if (flags & WSP_BOT)
1137 frame_add_vsep(curfrp);
1138 /* Set width of neighbor frame */
1139 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001140 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1141 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 }
1143 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001144 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 if (before) /* new window left of current one */
1146 {
1147 wp->w_wincol = oldwin->w_wincol;
1148 oldwin->w_wincol += new_size + 1;
1149 }
1150 else /* new window right of current one */
1151 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1152 frame_fix_width(oldwin);
1153 frame_fix_width(wp);
1154 }
1155 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 {
1157 /* width and column of new window is same as current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 if (flags & (WSP_TOP | WSP_BOT))
1159 {
1160 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001161 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 wp->w_vsep_width = 0;
1163 }
1164 else
1165 {
1166 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001167 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 wp->w_vsep_width = oldwin->w_vsep_width;
1169 }
1170 frp->fr_width = curfrp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171
1172 /* "new_size" of the current window goes to the new window, use
1173 * one row for the status line */
1174 win_new_height(wp, new_size);
1175 if (flags & (WSP_TOP | WSP_BOT))
Bram Moolenaar991dea32016-05-24 11:31:32 +02001176 {
1177 int new_fr_height = curfrp->fr_height - new_size;
1178
1179 if (!((flags & WSP_BOT) && p_ls == 0))
1180 new_fr_height -= STATUS_HEIGHT;
1181 frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, FALSE);
1182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 else
1184 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1185 if (before) /* new window above current one */
1186 {
1187 wp->w_winrow = oldwin->w_winrow;
1188 wp->w_status_height = STATUS_HEIGHT;
1189 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1190 }
1191 else /* new window below current one */
1192 {
1193 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
1194 wp->w_status_height = oldwin->w_status_height;
Bram Moolenaar991dea32016-05-24 11:31:32 +02001195 if (!(flags & WSP_BOT))
1196 oldwin->w_status_height = STATUS_HEIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (flags & WSP_BOT)
1199 frame_add_statusline(curfrp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 frame_fix_height(wp);
1201 frame_fix_height(oldwin);
1202 }
1203
1204 if (flags & (WSP_TOP | WSP_BOT))
1205 (void)win_comp_pos();
1206
1207 /*
1208 * Both windows need redrawing
1209 */
1210 redraw_win_later(wp, NOT_VALID);
1211 wp->w_redr_status = TRUE;
1212 redraw_win_later(oldwin, NOT_VALID);
1213 oldwin->w_redr_status = TRUE;
1214
1215 if (need_status)
1216 {
1217 msg_row = Rows - 1;
1218 msg_col = sc_col;
1219 msg_clr_eos_force(); /* Old command/ruler may still be there */
1220 comp_col();
1221 msg_row = Rows - 1;
1222 msg_col = 0; /* put position back at start of line */
1223 }
1224
1225 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001226 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 */
1228 if (do_equal || dir != 0)
1229 win_equal(wp, TRUE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001231 : dir == 'h' ? 'b' : 'v');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232
1233 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1234 * size was given. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (flags & WSP_VERT)
1236 {
1237 i = p_wiw;
1238 if (size != 0)
1239 p_wiw = size;
1240
1241# ifdef FEAT_GUI
1242 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1243 if (gui.in_use)
1244 gui_init_which_components(NULL);
1245# endif
1246 }
1247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
1249 i = p_wh;
1250 if (size != 0)
1251 p_wh = size;
1252 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001253
Bram Moolenaar23fb7a92014-07-30 14:05:00 +02001254#ifdef FEAT_JUMPLIST
1255 /* Keep same changelist position in new window. */
1256 wp->w_changelistidx = oldwin->w_changelistidx;
1257#endif
1258
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001259 /*
1260 * make the new window the current window
1261 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 win_enter(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 if (flags & WSP_VERT)
1264 p_wiw = i;
1265 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 p_wh = i;
1267
1268 return OK;
1269}
1270
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001271
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001272/*
1273 * Initialize window "newp" from window "oldp".
1274 * Used when splitting a window and when creating a new tab page.
1275 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001276 * WSP_NEWLOC may be specified in flags to prevent the location list from
1277 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001278 */
1279 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001280win_init(win_T *newp, win_T *oldp, int flags UNUSED)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001281{
1282 int i;
1283
1284 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001285#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001286 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001287#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001288 oldp->w_buffer->b_nwindows++;
1289 newp->w_cursor = oldp->w_cursor;
1290 newp->w_valid = 0;
1291 newp->w_curswant = oldp->w_curswant;
1292 newp->w_set_curswant = oldp->w_set_curswant;
1293 newp->w_topline = oldp->w_topline;
1294#ifdef FEAT_DIFF
1295 newp->w_topfill = oldp->w_topfill;
1296#endif
1297 newp->w_leftcol = oldp->w_leftcol;
1298 newp->w_pcmark = oldp->w_pcmark;
1299 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1300 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001301 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001302 newp->w_fraction = oldp->w_fraction;
1303 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1304#ifdef FEAT_JUMPLIST
1305 copy_jumplist(oldp, newp);
1306#endif
1307#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001308 if (flags & WSP_NEWLOC)
1309 {
1310 /* Don't copy the location list. */
1311 newp->w_llist = NULL;
1312 newp->w_llist_ref = NULL;
1313 }
1314 else
1315 copy_loclist(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001316#endif
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01001317 newp->w_localdir = (oldp->w_localdir == NULL)
1318 ? NULL : vim_strsave(oldp->w_localdir);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001319
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001320 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001321 for (i = 0; i < oldp->w_tagstacklen; i++)
1322 {
1323 newp->w_tagstack[i] = oldp->w_tagstack[i];
1324 if (newp->w_tagstack[i].tagname != NULL)
1325 newp->w_tagstack[i].tagname =
1326 vim_strsave(newp->w_tagstack[i].tagname);
1327 }
1328 newp->w_tagstackidx = oldp->w_tagstackidx;
1329 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001330#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001331 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001332#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001333
1334 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001335
Bram Moolenaara971b822011-09-14 14:43:25 +02001336#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001337 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001338#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001339}
1340
1341/*
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001342 * Initialize window "newp" from window "old".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001343 * Only the essential things are copied.
1344 */
1345 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001346win_init_some(win_T *newp, win_T *oldp)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001347{
1348 /* Use the same argument list. */
1349 newp->w_alist = oldp->w_alist;
1350 ++newp->w_alist->al_refcount;
1351 newp->w_arg_idx = oldp->w_arg_idx;
1352
1353 /* copy options from existing window */
1354 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001355}
1356
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357#endif /* FEAT_WINDOWS */
1358
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359#if defined(FEAT_WINDOWS) || defined(PROTO)
1360/*
1361 * Check if "win" is a pointer to an existing window.
1362 */
1363 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001364win_valid(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365{
1366 win_T *wp;
1367
1368 if (win == NULL)
1369 return FALSE;
1370 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1371 if (wp == win)
1372 return TRUE;
1373 return FALSE;
1374}
1375
1376/*
1377 * Return the number of windows.
1378 */
1379 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001380win_count(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381{
1382 win_T *wp;
1383 int count = 0;
1384
1385 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1386 ++count;
1387 return count;
1388}
1389
1390/*
1391 * Make "count" windows on the screen.
1392 * Return actual number of windows on the screen.
1393 * Must be called when there is just one window, filling the whole screen
1394 * (excluding the command line).
1395 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001397make_windows(
1398 int count,
1399 int vertical UNUSED) /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400{
1401 int maxcount;
1402 int todo;
1403
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (vertical)
1405 {
1406 /* Each windows needs at least 'winminwidth' lines and a separator
1407 * column. */
1408 maxcount = (curwin->w_width + curwin->w_vsep_width
1409 - (p_wiw - p_wmw)) / (p_wmw + 1);
1410 }
1411 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 {
1413 /* Each window needs at least 'winminheight' lines and a status line. */
1414 maxcount = (curwin->w_height + curwin->w_status_height
1415 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1416 }
1417
1418 if (maxcount < 2)
1419 maxcount = 2;
1420 if (count > maxcount)
1421 count = maxcount;
1422
1423 /*
1424 * add status line now, otherwise first window will be too big
1425 */
1426 if (count > 1)
1427 last_status(TRUE);
1428
1429#ifdef FEAT_AUTOCMD
1430 /*
1431 * Don't execute autocommands while creating the windows. Must do that
1432 * when putting the buffers in the windows.
1433 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001434 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435#endif
1436
1437 /* todo is number of windows left to create */
1438 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 if (vertical)
1440 {
1441 if (win_split(curwin->w_width - (curwin->w_width - todo)
1442 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1443 break;
1444 }
1445 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 {
1447 if (win_split(curwin->w_height - (curwin->w_height - todo
1448 * STATUS_HEIGHT) / (todo + 1)
1449 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1450 break;
1451 }
1452
1453#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001454 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455#endif
1456
1457 /* return actual number of windows */
1458 return (count - todo);
1459}
1460
1461/*
1462 * Exchange current and next window
1463 */
1464 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001465win_exchange(long Prenum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466{
1467 frame_T *frp;
1468 frame_T *frp2;
1469 win_T *wp;
1470 win_T *wp2;
1471 int temp;
1472
1473 if (lastwin == firstwin) /* just one window */
1474 {
1475 beep_flush();
1476 return;
1477 }
1478
1479#ifdef FEAT_GUI
1480 need_mouse_correct = TRUE;
1481#endif
1482
1483 /*
1484 * find window to exchange with
1485 */
1486 if (Prenum)
1487 {
1488 frp = curwin->w_frame->fr_parent->fr_child;
1489 while (frp != NULL && --Prenum > 0)
1490 frp = frp->fr_next;
1491 }
1492 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1493 frp = curwin->w_frame->fr_next;
1494 else /* Swap last window in row/col with previous */
1495 frp = curwin->w_frame->fr_prev;
1496
1497 /* We can only exchange a window with another window, not with a frame
1498 * containing windows. */
1499 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1500 return;
1501 wp = frp->fr_win;
1502
1503/*
1504 * 1. remove curwin from the list. Remember after which window it was in wp2
1505 * 2. insert curwin before wp in the list
1506 * if wp != wp2
1507 * 3. remove wp from the list
1508 * 4. insert wp after wp2
1509 * 5. exchange the status line height and vsep width.
1510 */
1511 wp2 = curwin->w_prev;
1512 frp2 = curwin->w_frame->fr_prev;
1513 if (wp->w_prev != curwin)
1514 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001515 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 frame_remove(curwin->w_frame);
1517 win_append(wp->w_prev, curwin);
1518 frame_insert(frp, curwin->w_frame);
1519 }
1520 if (wp != wp2)
1521 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001522 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 frame_remove(wp->w_frame);
1524 win_append(wp2, wp);
1525 if (frp2 == NULL)
1526 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1527 else
1528 frame_append(frp2, wp->w_frame);
1529 }
1530 temp = curwin->w_status_height;
1531 curwin->w_status_height = wp->w_status_height;
1532 wp->w_status_height = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 temp = curwin->w_vsep_width;
1534 curwin->w_vsep_width = wp->w_vsep_width;
1535 wp->w_vsep_width = temp;
1536
1537 /* If the windows are not in the same frame, exchange the sizes to avoid
1538 * messing up the window layout. Otherwise fix the frame sizes. */
1539 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1540 {
1541 temp = curwin->w_height;
1542 curwin->w_height = wp->w_height;
1543 wp->w_height = temp;
1544 temp = curwin->w_width;
1545 curwin->w_width = wp->w_width;
1546 wp->w_width = temp;
1547 }
1548 else
1549 {
1550 frame_fix_height(curwin);
1551 frame_fix_height(wp);
1552 frame_fix_width(curwin);
1553 frame_fix_width(wp);
1554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
1556 (void)win_comp_pos(); /* recompute window positions */
1557
1558 win_enter(wp, TRUE);
1559 redraw_later(CLEAR);
1560}
1561
1562/*
1563 * rotate windows: if upwards TRUE the second window becomes the first one
1564 * if upwards FALSE the first window becomes the second one
1565 */
1566 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001567win_rotate(int upwards, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568{
1569 win_T *wp1;
1570 win_T *wp2;
1571 frame_T *frp;
1572 int n;
1573
1574 if (firstwin == lastwin) /* nothing to do */
1575 {
1576 beep_flush();
1577 return;
1578 }
1579
1580#ifdef FEAT_GUI
1581 need_mouse_correct = TRUE;
1582#endif
1583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 /* Check if all frames in this row/col have one window. */
1585 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1586 frp = frp->fr_next)
1587 if (frp->fr_win == NULL)
1588 {
1589 EMSG(_("E443: Cannot rotate when another window is split"));
1590 return;
1591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592
1593 while (count--)
1594 {
1595 if (upwards) /* first window becomes last window */
1596 {
1597 /* remove first window/frame from the list */
1598 frp = curwin->w_frame->fr_parent->fr_child;
1599 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001600 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 frame_remove(frp);
1602
1603 /* find last frame and append removed window/frame after it */
1604 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1605 ;
1606 win_append(frp->fr_win, wp1);
1607 frame_append(frp, wp1->w_frame);
1608
1609 wp2 = frp->fr_win; /* previously last window */
1610 }
1611 else /* last window becomes first window */
1612 {
1613 /* find last window/frame in the list and remove it */
1614 for (frp = curwin->w_frame; frp->fr_next != NULL;
1615 frp = frp->fr_next)
1616 ;
1617 wp1 = frp->fr_win;
1618 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001619 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 frame_remove(frp);
1621
1622 /* append the removed window/frame before the first in the list */
1623 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1624 frame_insert(frp->fr_parent->fr_child, frp);
1625 }
1626
1627 /* exchange status height and vsep width of old and new last window */
1628 n = wp2->w_status_height;
1629 wp2->w_status_height = wp1->w_status_height;
1630 wp1->w_status_height = n;
1631 frame_fix_height(wp1);
1632 frame_fix_height(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 n = wp2->w_vsep_width;
1634 wp2->w_vsep_width = wp1->w_vsep_width;
1635 wp1->w_vsep_width = n;
1636 frame_fix_width(wp1);
1637 frame_fix_width(wp2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001639 /* recompute w_winrow and w_wincol for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 (void)win_comp_pos();
1641 }
1642
1643 redraw_later(CLEAR);
1644}
1645
1646/*
1647 * Move the current window to the very top/bottom/left/right of the screen.
1648 */
1649 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001650win_totop(int size, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651{
1652 int dir;
1653 int height = curwin->w_height;
1654
1655 if (lastwin == firstwin)
1656 {
1657 beep_flush();
1658 return;
1659 }
1660
1661 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001662 (void)winframe_remove(curwin, &dir, NULL);
1663 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 last_status(FALSE); /* may need to remove last status line */
1665 (void)win_comp_pos(); /* recompute window positions */
1666
1667 /* Split a window on the desired side and put the window there. */
1668 (void)win_split_ins(size, flags, curwin, dir);
1669 if (!(flags & WSP_VERT))
1670 {
1671 win_setheight(height);
1672 if (p_ea)
1673 win_equal(curwin, TRUE, 'v');
1674 }
1675
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001676#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1678 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001679 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681}
1682
1683/*
1684 * Move window "win1" to below/right of "win2" and make "win1" the current
1685 * window. Only works within the same frame!
1686 */
1687 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001688win_move_after(win_T *win1, win_T *win2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689{
1690 int height;
1691
1692 /* check if the arguments are reasonable */
1693 if (win1 == win2)
1694 return;
1695
1696 /* check if there is something to do */
1697 if (win2->w_next != win1)
1698 {
1699 /* may need move the status line/vertical separator of the last window
1700 * */
1701 if (win1 == lastwin)
1702 {
1703 height = win1->w_prev->w_status_height;
1704 win1->w_prev->w_status_height = win1->w_status_height;
1705 win1->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001706 if (win1->w_prev->w_vsep_width == 1)
1707 {
1708 /* Remove the vertical separator from the last-but-one window,
1709 * add it to the last window. Adjust the frame widths. */
1710 win1->w_prev->w_vsep_width = 0;
1711 win1->w_prev->w_frame->fr_width -= 1;
1712 win1->w_vsep_width = 1;
1713 win1->w_frame->fr_width += 1;
1714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 }
1716 else if (win2 == lastwin)
1717 {
1718 height = win1->w_status_height;
1719 win1->w_status_height = win2->w_status_height;
1720 win2->w_status_height = height;
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001721 if (win1->w_vsep_width == 1)
1722 {
1723 /* Remove the vertical separator from win1, add it to the last
1724 * window, win2. Adjust the frame widths. */
1725 win2->w_vsep_width = 1;
1726 win2->w_frame->fr_width += 1;
1727 win1->w_vsep_width = 0;
1728 win1->w_frame->fr_width -= 1;
1729 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001731 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 frame_remove(win1->w_frame);
1733 win_append(win2, win1);
1734 frame_append(win2->w_frame, win1->w_frame);
1735
1736 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1737 redraw_later(NOT_VALID);
1738 }
1739 win_enter(win1, FALSE);
1740}
1741
1742/*
1743 * Make all windows the same height.
1744 * 'next_curwin' will soon be the current window, make sure it has enough
1745 * rows.
1746 */
1747 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001748win_equal(
1749 win_T *next_curwin, /* pointer to current window to be or NULL */
1750 int current, /* do only frame with current window */
1751 int dir) /* 'v' for vertically, 'h' for horizontally,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 'b' for both, 0 for using p_ead */
1753{
1754 if (dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 dir = *p_ead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001757 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001758 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759}
1760
1761/*
1762 * Set a frame to a new position and height, spreading the available room
1763 * equally over contained frames.
1764 * The window "next_curwin" (if not NULL) should at least get the size from
1765 * 'winheight' and 'winwidth' if possible.
1766 */
1767 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01001768win_equal_rec(
1769 win_T *next_curwin, /* pointer to current window to be or NULL */
1770 int current, /* do only frame with current window */
1771 frame_T *topfr, /* frame to set size off */
1772 int dir, /* 'v', 'h' or 'b', see win_equal() */
1773 int col, /* horizontal position for frame */
1774 int row, /* vertical position for frame */
1775 int width, /* new width of frame */
1776 int height) /* new height of frame */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777{
1778 int n, m;
1779 int extra_sep = 0;
1780 int wincount, totwincount = 0;
1781 frame_T *fr;
1782 int next_curwin_size = 0;
1783 int room = 0;
1784 int new_size;
1785 int has_next_curwin = 0;
1786 int hnc;
1787
1788 if (topfr->fr_layout == FR_LEAF)
1789 {
1790 /* Set the width/height of this frame.
1791 * Redraw when size or position changes */
1792 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 )
1795 {
1796 topfr->fr_win->w_winrow = row;
1797 frame_new_height(topfr, height, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001799 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 redraw_all_later(CLEAR);
1801 }
1802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 else if (topfr->fr_layout == FR_ROW)
1804 {
1805 topfr->fr_width = width;
1806 topfr->fr_height = height;
1807
1808 if (dir != 'v') /* equalize frame widths */
1809 {
1810 /* Compute the maximum number of windows horizontally in this
1811 * frame. */
1812 n = frame_minwidth(topfr, NOWIN);
1813 /* add one for the rightmost window, it doesn't have a separator */
1814 if (col + width == Columns)
1815 extra_sep = 1;
1816 else
1817 extra_sep = 0;
1818 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001819 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001821 /*
1822 * Compute width for "next_curwin" window and room available for
1823 * other windows.
1824 * "m" is the minimal width when counting p_wiw for "next_curwin".
1825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 m = frame_minwidth(topfr, next_curwin);
1827 room = width - m;
1828 if (room < 0)
1829 {
1830 next_curwin_size = p_wiw + room;
1831 room = 0;
1832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 else
1834 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001835 next_curwin_size = -1;
1836 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1837 {
1838 /* If 'winfixwidth' set keep the window width if
1839 * possible.
1840 * Watch out for this window being the next_curwin. */
1841 if (frame_fixed_width(fr))
1842 {
1843 n = frame_minwidth(fr, NOWIN);
1844 new_size = fr->fr_width;
1845 if (frame_has_win(fr, next_curwin))
1846 {
1847 room += p_wiw - p_wmw;
1848 next_curwin_size = 0;
1849 if (new_size < p_wiw)
1850 new_size = p_wiw;
1851 }
1852 else
1853 /* These windows don't use up room. */
1854 totwincount -= (n + (fr->fr_next == NULL
1855 ? extra_sep : 0)) / (p_wmw + 1);
1856 room -= new_size - n;
1857 if (room < 0)
1858 {
1859 new_size += room;
1860 room = 0;
1861 }
1862 fr->fr_newwidth = new_size;
1863 }
1864 }
1865 if (next_curwin_size == -1)
1866 {
1867 if (!has_next_curwin)
1868 next_curwin_size = 0;
1869 else if (totwincount > 1
1870 && (room + (totwincount - 2))
1871 / (totwincount - 1) > p_wiw)
1872 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001873 /* Can make all windows wider than 'winwidth', spread
1874 * the room equally. */
1875 next_curwin_size = (room + p_wiw
1876 + (totwincount - 1) * p_wmw
1877 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001878 room -= next_curwin_size - p_wiw;
1879 }
1880 else
1881 next_curwin_size = p_wiw;
1882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001884
1885 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 --totwincount; /* don't count curwin */
1887 }
1888
1889 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1890 {
1891 n = m = 0;
1892 wincount = 1;
1893 if (fr->fr_next == NULL)
1894 /* last frame gets all that remains (avoid roundoff error) */
1895 new_size = width;
1896 else if (dir == 'v')
1897 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001898 else if (frame_fixed_width(fr))
1899 {
1900 new_size = fr->fr_newwidth;
1901 wincount = 0; /* doesn't count as a sizeable window */
1902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 else
1904 {
1905 /* Compute the maximum number of windows horiz. in "fr". */
1906 n = frame_minwidth(fr, NOWIN);
1907 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1908 / (p_wmw + 1);
1909 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001910 if (has_next_curwin)
1911 hnc = frame_has_win(fr, next_curwin);
1912 else
1913 hnc = FALSE;
1914 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001916 if (totwincount == 0)
1917 new_size = room;
1918 else
1919 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001921 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 {
1923 next_curwin_size -= p_wiw - (m - n);
1924 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001925 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001927 else
1928 room -= new_size;
1929 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 }
1931
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001932 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 * window, unless equalizing all frames. */
1934 if (!current || dir != 'v' || topfr->fr_parent != NULL
1935 || (new_size != fr->fr_width)
1936 || frame_has_win(fr, next_curwin))
1937 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001938 new_size, height);
1939 col += new_size;
1940 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 totwincount -= wincount;
1942 }
1943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 else /* topfr->fr_layout == FR_COL */
1945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 topfr->fr_width = width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 topfr->fr_height = height;
1948
1949 if (dir != 'h') /* equalize frame heights */
1950 {
1951 /* Compute maximum number of windows vertically in this frame. */
1952 n = frame_minheight(topfr, NOWIN);
1953 /* add one for the bottom window if it doesn't have a statusline */
1954 if (row + height == cmdline_row && p_ls == 0)
1955 extra_sep = 1;
1956 else
1957 extra_sep = 0;
1958 totwincount = (n + extra_sep) / (p_wmh + 1);
1959 has_next_curwin = frame_has_win(topfr, next_curwin);
1960
1961 /*
1962 * Compute height for "next_curwin" window and room available for
1963 * other windows.
1964 * "m" is the minimal height when counting p_wh for "next_curwin".
1965 */
1966 m = frame_minheight(topfr, next_curwin);
1967 room = height - m;
1968 if (room < 0)
1969 {
1970 /* The room is less then 'winheight', use all space for the
1971 * current window. */
1972 next_curwin_size = p_wh + room;
1973 room = 0;
1974 }
1975 else
1976 {
1977 next_curwin_size = -1;
1978 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1979 {
1980 /* If 'winfixheight' set keep the window height if
1981 * possible.
1982 * Watch out for this window being the next_curwin. */
1983 if (frame_fixed_height(fr))
1984 {
1985 n = frame_minheight(fr, NOWIN);
1986 new_size = fr->fr_height;
1987 if (frame_has_win(fr, next_curwin))
1988 {
1989 room += p_wh - p_wmh;
1990 next_curwin_size = 0;
1991 if (new_size < p_wh)
1992 new_size = p_wh;
1993 }
1994 else
1995 /* These windows don't use up room. */
1996 totwincount -= (n + (fr->fr_next == NULL
1997 ? extra_sep : 0)) / (p_wmh + 1);
1998 room -= new_size - n;
1999 if (room < 0)
2000 {
2001 new_size += room;
2002 room = 0;
2003 }
2004 fr->fr_newheight = new_size;
2005 }
2006 }
2007 if (next_curwin_size == -1)
2008 {
2009 if (!has_next_curwin)
2010 next_curwin_size = 0;
2011 else if (totwincount > 1
2012 && (room + (totwincount - 2))
2013 / (totwincount - 1) > p_wh)
2014 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002015 /* can make all windows higher than 'winheight',
2016 * spread the room equally. */
2017 next_curwin_size = (room + p_wh
2018 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 + (totwincount - 1)) / totwincount;
2020 room -= next_curwin_size - p_wh;
2021 }
2022 else
2023 next_curwin_size = p_wh;
2024 }
2025 }
2026
2027 if (has_next_curwin)
2028 --totwincount; /* don't count curwin */
2029 }
2030
2031 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
2032 {
2033 n = m = 0;
2034 wincount = 1;
2035 if (fr->fr_next == NULL)
2036 /* last frame gets all that remains (avoid roundoff error) */
2037 new_size = height;
2038 else if (dir == 'h')
2039 new_size = fr->fr_height;
2040 else if (frame_fixed_height(fr))
2041 {
2042 new_size = fr->fr_newheight;
2043 wincount = 0; /* doesn't count as a sizeable window */
2044 }
2045 else
2046 {
2047 /* Compute the maximum number of windows vert. in "fr". */
2048 n = frame_minheight(fr, NOWIN);
2049 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
2050 / (p_wmh + 1);
2051 m = frame_minheight(fr, next_curwin);
2052 if (has_next_curwin)
2053 hnc = frame_has_win(fr, next_curwin);
2054 else
2055 hnc = FALSE;
2056 if (hnc) /* don't count next_curwin */
2057 --wincount;
2058 if (totwincount == 0)
2059 new_size = room;
2060 else
2061 new_size = (wincount * room + ((unsigned)totwincount >> 1))
2062 / totwincount;
2063 if (hnc) /* add next_curwin size */
2064 {
2065 next_curwin_size -= p_wh - (m - n);
2066 new_size += next_curwin_size;
2067 room -= new_size - next_curwin_size;
2068 }
2069 else
2070 room -= new_size;
2071 new_size += n;
2072 }
2073 /* Skip frame that is full width when splitting or closing a
2074 * window, unless equalizing all frames. */
2075 if (!current || dir != 'h' || topfr->fr_parent != NULL
2076 || (new_size != fr->fr_height)
2077 || frame_has_win(fr, next_curwin))
2078 win_equal_rec(next_curwin, current, fr, dir, col, row,
2079 width, new_size);
2080 row += new_size;
2081 height -= new_size;
2082 totwincount -= wincount;
2083 }
2084 }
2085}
2086
2087/*
2088 * close all windows for buffer 'buf'
2089 */
2090 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002091close_windows(
2092 buf_T *buf,
2093 int keep_curwin) /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002095 win_T *wp;
2096 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002097 int h = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098
2099 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002100
2101 for (wp = firstwin; wp != NULL && lastwin != firstwin; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 {
Bram Moolenaar362ce482012-06-06 19:02:45 +02002103 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin)
2104#ifdef FEAT_AUTOCMD
2105 && !(wp->w_closing || wp->w_buffer->b_closing)
2106#endif
2107 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002109 win_close(wp, FALSE);
2110
2111 /* Start all over, autocommands may change the window layout. */
2112 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 }
2114 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002115 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002117
2118 /* Also check windows in other tab pages. */
2119 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2120 {
2121 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002122 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002123 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002124 if (wp->w_buffer == buf
2125#ifdef FEAT_AUTOCMD
2126 && !(wp->w_closing || wp->w_buffer->b_closing)
2127#endif
2128 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00002129 {
2130 win_close_othertab(wp, FALSE, tp);
2131
2132 /* Start all over, the tab page may be closed and
2133 * autocommands may change the window layout. */
2134 nexttp = first_tabpage;
2135 break;
2136 }
2137 }
2138
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002140
Bram Moolenaar4c7e9db2013-04-15 15:55:19 +02002141 redraw_tabline = TRUE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002142 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002143 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144}
2145
2146/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002147 * Return TRUE if the current window is the only window that exists (ignoring
2148 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002149 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002150 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002151 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002152last_window(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002153{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002154 return (one_window() && first_tabpage->tp_next == NULL);
2155}
2156
2157/*
2158 * Return TRUE if there is only one window other than "aucmd_win" in the
2159 * current tab page.
2160 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002161 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002162one_window(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002163{
2164#ifdef FEAT_AUTOCMD
2165 win_T *wp;
2166 int seen_one = FALSE;
2167
2168 FOR_ALL_WINDOWS(wp)
2169 {
2170 if (wp != aucmd_win)
2171 {
2172 if (seen_one)
2173 return FALSE;
2174 seen_one = TRUE;
2175 }
2176 }
2177 return TRUE;
2178#else
2179 return firstwin == lastwin;
2180#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002181}
2182
2183/*
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002184 * Close the possibly last window in a tab page.
2185 * Returns TRUE when the window was closed already.
2186 */
2187 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002188close_last_window_tabpage(
2189 win_T *win,
2190 int free_buf,
2191 tabpage_T *prev_curtab)
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002192{
2193 if (firstwin == lastwin)
2194 {
Bram Moolenaar07729b22013-05-15 23:13:10 +02002195#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002196 buf_T *old_curbuf = curbuf;
Bram Moolenaar07729b22013-05-15 23:13:10 +02002197#endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002198
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002199 /*
2200 * Closing the last window in a tab page. First go to another tab
2201 * page and then close the window and the tab page. This avoids that
2202 * curwin and curtab are invalid while we are freeing memory, they may
2203 * be used in GUI events.
Bram Moolenaara8596c42012-06-13 14:28:20 +02002204 * Don't trigger autocommands yet, they may use wrong values, so do
2205 * that below.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002206 */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002207 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002208 redraw_tabline = TRUE;
2209
2210 /* Safety check: Autocommands may have closed the window when jumping
2211 * to the other tab page. */
2212 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2213 {
2214 int h = tabline_height();
2215
2216 win_close_othertab(win, free_buf, prev_curtab);
2217 if (h != tabline_height())
2218 shell_new_rows();
2219 }
Bram Moolenaara8596c42012-06-13 14:28:20 +02002220 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
2221 * that now. */
2222#ifdef FEAT_AUTOCMD
Bram Moolenaara8596c42012-06-13 14:28:20 +02002223 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002224 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
2225 if (old_curbuf != curbuf)
2226 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaara8596c42012-06-13 14:28:20 +02002227#endif
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002228 return TRUE;
2229 }
2230 return FALSE;
2231}
2232
2233/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002234 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 * If "free_buf" is TRUE related buffer may be unloaded.
2236 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002237 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002238 * Returns FAIL when the window was not closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 */
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002240 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002241win_close(win_T *win, int free_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242{
2243 win_T *wp;
2244#ifdef FEAT_AUTOCMD
2245 int other_buffer = FALSE;
2246#endif
2247 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 int dir;
2249 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002250 tabpage_T *prev_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002252 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 {
2254 EMSG(_("E444: Cannot close last window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002255 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 }
2257
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002258#ifdef FEAT_AUTOCMD
Bram Moolenaar756287d2012-07-06 16:39:47 +02002259 if (win->w_closing || (win->w_buffer != NULL && win->w_buffer->b_closing))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002260 return FAIL; /* window is already being closed */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002261 if (win == aucmd_win)
2262 {
2263 EMSG(_("E813: Cannot close autocmd window"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002264 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002265 }
2266 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2267 {
2268 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002269 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002270 }
2271#endif
2272
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002273 /* When closing the last window in a tab page first go to another tab page
2274 * and then close the window and the tab page to avoid that curwin and
2275 * curtab are invalid while we are freeing memory. */
2276 if (close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002277 return FAIL;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002278
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 /* When closing the help window, try restoring a snapshot after closing
2280 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002281 if (win->w_buffer != NULL && win->w_buffer->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 help_window = TRUE;
2283 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002284 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
2286#ifdef FEAT_AUTOCMD
2287 if (win == curwin)
2288 {
2289 /*
2290 * Guess which window is going to be the new current window.
2291 * This may change because of the autocommands (sigh).
2292 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002293 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294
2295 /*
Bram Moolenaar362ce482012-06-06 19:02:45 +02002296 * Be careful: If autocommands delete the window or cause this window
2297 * to be the last one left, return now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 */
2299 if (wp->w_buffer != curbuf)
2300 {
2301 other_buffer = TRUE;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002302 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002304 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002305 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002306 win->w_closing = FALSE;
2307 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002308 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 }
Bram Moolenaar362ce482012-06-06 19:02:45 +02002310 win->w_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002312 if (!win_valid(win))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002313 return FAIL;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002314 win->w_closing = FALSE;
2315 if (last_window())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002316 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317# ifdef FEAT_EVAL
2318 /* autocmds may abort script processing */
2319 if (aborting())
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002320 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321# endif
2322 }
2323#endif
2324
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002325#ifdef FEAT_GUI
2326 /* Avoid trouble with scrollbars that are going to be deleted in
2327 * win_free(). */
2328 if (gui.in_use)
2329 out_flush();
2330#endif
2331
Bram Moolenaara971b822011-09-14 14:43:25 +02002332#ifdef FEAT_SYN_HL
2333 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002334 if (win->w_buffer != NULL)
2335 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002336#endif
2337
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 /*
2339 * Close the link to the buffer.
2340 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002341 if (win->w_buffer != NULL)
Bram Moolenaar362ce482012-06-06 19:02:45 +02002342 {
2343#ifdef FEAT_AUTOCMD
2344 win->w_closing = TRUE;
2345#endif
Bram Moolenaar8f913992012-08-29 15:50:26 +02002346 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002347#ifdef FEAT_AUTOCMD
2348 if (win_valid(win))
2349 win->w_closing = FALSE;
2350#endif
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002351 /* Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2352 * "wipe". */
2353 if (!buf_valid(curbuf))
2354 curbuf = firstbuf;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002355 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002356
Bram Moolenaar802418d2013-01-17 14:00:11 +01002357 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2358 && (last_window() || curtab != prev_curtab
2359 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002360 {
2361 /* Autocommands have close all windows, quit now. Restore
2362 * curwin->w_buffer, otherwise writing viminfo may fail. */
2363 if (curwin->w_buffer == NULL)
2364 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002365 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002366 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002367
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 /* Autocommands may have closed the window already, or closed the only
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002369 * other window or moved to another tab page. */
Bram Moolenaar802418d2013-01-17 14:00:11 +01002370 else if (!win_valid(win) || last_window() || curtab != prev_curtab
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002371 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002372 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
Bram Moolenaara971b822011-09-14 14:43:25 +02002374 /* Free the memory used for the window and get the window that received
2375 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002376 wp = win_free_mem(win, &dir, NULL);
2377
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 /* Make sure curwin isn't invalid. It can cause severe trouble when
2379 * printing an error message. For win_equal() curbuf needs to be valid
2380 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002381 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 {
2383 curwin = wp;
2384#ifdef FEAT_QUICKFIX
2385 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2386 {
2387 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002388 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 * finding another window to go to.
2390 */
2391 for (;;)
2392 {
2393 if (wp->w_next == NULL)
2394 wp = firstwin;
2395 else
2396 wp = wp->w_next;
2397 if (wp == curwin)
2398 break;
2399 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2400 {
2401 curwin = wp;
2402 break;
2403 }
2404 }
2405 }
2406#endif
2407 curbuf = curwin->w_buffer;
2408 close_curwin = TRUE;
2409 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002410 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
2411 win_equal(curwin, TRUE, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 else
2413 win_comp_pos();
2414 if (close_curwin)
2415 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002416 win_enter_ext(wp, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417#ifdef FEAT_AUTOCMD
2418 if (other_buffer)
2419 /* careful: after this wp and win may be invalid! */
2420 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2421#endif
2422 }
2423
2424 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002425 * If last window has a status line now and we don't want one,
2426 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 */
2428 last_status(FALSE);
2429
2430 /* After closing the help window, try restoring the window layout from
2431 * before it was opened. */
2432 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002433 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002435#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2437 if (gui.in_use && !win_hasvertsplit())
2438 gui_init_which_components(NULL);
2439#endif
2440
2441 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002442 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443}
2444
2445/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002446 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002447 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002448 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002449 * Caller must check if buffer is hidden and whether the tabline needs to be
2450 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002451 */
2452 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002453win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002454{
2455 win_T *wp;
2456 int dir;
2457 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002458 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002459
Bram Moolenaar362ce482012-06-06 19:02:45 +02002460#ifdef FEAT_AUTOCMD
2461 if (win->w_closing || win->w_buffer->b_closing)
2462 return; /* window is already being closed */
2463#endif
2464
Bram Moolenaarf740b292006-02-16 22:11:02 +00002465 /* Close the link to the buffer. */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002466 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002467
2468 /* Careful: Autocommands may have closed the tab page or made it the
2469 * current tab page. */
2470 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2471 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002472 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002473 return;
2474
2475 /* Autocommands may have closed the window already. */
2476 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2477 ;
2478 if (wp == NULL)
2479 return;
2480
Bram Moolenaarf740b292006-02-16 22:11:02 +00002481 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002482 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002483 {
2484 if (tp == first_tabpage)
2485 first_tabpage = tp->tp_next;
2486 else
2487 {
2488 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2489 ptp = ptp->tp_next)
2490 ;
2491 if (ptp == NULL)
2492 {
2493 EMSG2(_(e_intern2), "win_close_othertab()");
2494 return;
2495 }
2496 ptp->tp_next = tp->tp_next;
2497 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002498 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002499 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002500
2501 /* Free the memory used for the window. */
2502 win_free_mem(win, &dir, tp);
2503
2504 if (free_tp)
2505 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002506}
2507
2508/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002509 * Free the memory used for a window.
2510 * Returns a pointer to the window that got the freed up space.
2511 */
2512 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002513win_free_mem(
2514 win_T *win,
2515 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2516 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002517{
2518 frame_T *frp;
2519 win_T *wp;
2520
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002521 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002522 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002523 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002524 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002525 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002526
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002527 /* When deleting the current window of another tab page select a new
2528 * current window. */
2529 if (tp != NULL && win == tp->tp_curwin)
2530 tp->tp_curwin = wp;
2531
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002532 return wp;
2533}
2534
2535#if defined(EXITFREE) || defined(PROTO)
2536 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002537win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002538{
2539 int dummy;
2540
Bram Moolenaarf740b292006-02-16 22:11:02 +00002541# ifdef FEAT_WINDOWS
2542 while (first_tabpage->tp_next != NULL)
2543 tabpage_close(TRUE);
2544# endif
2545
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002546# ifdef FEAT_AUTOCMD
2547 if (aucmd_win != NULL)
2548 {
2549 (void)win_free_mem(aucmd_win, &dummy, NULL);
2550 aucmd_win = NULL;
2551 }
2552# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002553
2554 while (firstwin != NULL)
2555 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002556
2557 /* No window should be used after this. Set curwin to NULL to crash
2558 * instead of using freed memory. */
2559 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002560}
2561#endif
2562
2563/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 * Remove a window and its frame from the tree of frames.
2565 * Returns a pointer to the window that got the freed up space.
2566 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002567 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002568winframe_remove(
2569 win_T *win,
2570 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2571 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572{
2573 frame_T *frp, *frp2, *frp3;
2574 frame_T *frp_close = win->w_frame;
2575 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576
2577 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002578 * If there is only one window there is nothing to remove.
2579 */
2580 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
2581 return NULL;
2582
2583 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 * Remove the window from its frame.
2585 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002586 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 wp = frame2win(frp2);
2588
2589 /* Remove this frame from the list of frames. */
2590 frame_remove(frp_close);
2591
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 if (frp_close->fr_parent->fr_layout == FR_COL)
2593 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002594 /* When 'winfixheight' is set, try to find another frame in the column
2595 * (as close to the closed frame as possible) to distribute the height
2596 * to. */
2597 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2598 {
2599 frp = frp_close->fr_prev;
2600 frp3 = frp_close->fr_next;
2601 while (frp != NULL || frp3 != NULL)
2602 {
2603 if (frp != NULL)
2604 {
2605 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2606 {
2607 frp2 = frp;
2608 wp = frp->fr_win;
2609 break;
2610 }
2611 frp = frp->fr_prev;
2612 }
2613 if (frp3 != NULL)
2614 {
2615 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2616 {
2617 frp2 = frp3;
2618 wp = frp3->fr_win;
2619 break;
2620 }
2621 frp3 = frp3->fr_next;
2622 }
2623 }
2624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2626 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 *dirp = 'v';
2628 }
2629 else
2630 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002631 /* When 'winfixwidth' is set, try to find another frame in the column
2632 * (as close to the closed frame as possible) to distribute the width
2633 * to. */
2634 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2635 {
2636 frp = frp_close->fr_prev;
2637 frp3 = frp_close->fr_next;
2638 while (frp != NULL || frp3 != NULL)
2639 {
2640 if (frp != NULL)
2641 {
2642 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2643 {
2644 frp2 = frp;
2645 wp = frp->fr_win;
2646 break;
2647 }
2648 frp = frp->fr_prev;
2649 }
2650 if (frp3 != NULL)
2651 {
2652 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2653 {
2654 frp2 = frp3;
2655 wp = frp3->fr_win;
2656 break;
2657 }
2658 frp3 = frp3->fr_next;
2659 }
2660 }
2661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002663 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 *dirp = 'h';
2665 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666
2667 /* If rows/columns go to a window below/right its positions need to be
2668 * updated. Can only be done after the sizes have been updated. */
2669 if (frp2 == frp_close->fr_next)
2670 {
2671 int row = win->w_winrow;
2672 int col = W_WINCOL(win);
2673
2674 frame_comp_pos(frp2, &row, &col);
2675 }
2676
2677 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2678 {
2679 /* There is no other frame in this list, move its info to the parent
2680 * and remove it. */
2681 frp2->fr_parent->fr_layout = frp2->fr_layout;
2682 frp2->fr_parent->fr_child = frp2->fr_child;
2683 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2684 frp->fr_parent = frp2->fr_parent;
2685 frp2->fr_parent->fr_win = frp2->fr_win;
2686 if (frp2->fr_win != NULL)
2687 frp2->fr_win->w_frame = frp2->fr_parent;
2688 frp = frp2->fr_parent;
2689 vim_free(frp2);
2690
2691 frp2 = frp->fr_parent;
2692 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2693 {
2694 /* The frame above the parent has the same layout, have to merge
2695 * the frames into this list. */
2696 if (frp2->fr_child == frp)
2697 frp2->fr_child = frp->fr_child;
2698 frp->fr_child->fr_prev = frp->fr_prev;
2699 if (frp->fr_prev != NULL)
2700 frp->fr_prev->fr_next = frp->fr_child;
2701 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2702 {
2703 frp3->fr_parent = frp2;
2704 if (frp3->fr_next == NULL)
2705 {
2706 frp3->fr_next = frp->fr_next;
2707 if (frp->fr_next != NULL)
2708 frp->fr_next->fr_prev = frp3;
2709 break;
2710 }
2711 }
2712 vim_free(frp);
2713 }
2714 }
2715
2716 return wp;
2717}
2718
2719/*
2720 * Find out which frame is going to get the freed up space when "win" is
2721 * closed.
2722 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2723 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2724 * This makes opening a window and closing it immediately keep the same window
2725 * layout.
2726 */
2727 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002728win_altframe(
2729 win_T *win,
2730 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731{
2732 frame_T *frp;
2733 int b;
2734
Bram Moolenaarf740b292006-02-16 22:11:02 +00002735 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002736 /* Last window in this tab page, will go to next tab page. */
2737 return alt_tabpage()->tp_curwin->w_frame;
2738
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 frp = win->w_frame;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002740 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 b = p_spr;
2742 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 b = p_sb;
2744 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2745 return frp->fr_next;
2746 return frp->fr_prev;
2747}
2748
2749/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002750 * Return the tabpage that will be used if the current one is closed.
2751 */
2752 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002753alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002754{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002755 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002756
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002757 /* Use the next tab page if possible. */
2758 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002759 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002760
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002761 /* Find the last but one tab page. */
2762 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2763 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002764 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002765}
2766
2767/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 * Find the left-upper window in frame "frp".
2769 */
2770 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002771frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772{
2773 while (frp->fr_win == NULL)
2774 frp = frp->fr_child;
2775 return frp->fr_win;
2776}
2777
2778/*
2779 * Return TRUE if frame "frp" contains window "wp".
2780 */
2781 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002782frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783{
2784 frame_T *p;
2785
2786 if (frp->fr_layout == FR_LEAF)
2787 return frp->fr_win == wp;
2788
2789 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2790 if (frame_has_win(p, wp))
2791 return TRUE;
2792 return FALSE;
2793}
2794
2795/*
2796 * Set a new height for a frame. Recursively sets the height for contained
2797 * frames and windows. Caller must take care of positions.
2798 */
2799 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002800frame_new_height(
2801 frame_T *topfrp,
2802 int height,
2803 int topfirst, /* resize topmost contained frame first */
2804 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 may cause the height not to be set */
2806{
2807 frame_T *frp;
2808 int extra_lines;
2809 int h;
2810
2811 if (topfrp->fr_win != NULL)
2812 {
2813 /* Simple case: just one window. */
2814 win_new_height(topfrp->fr_win,
2815 height - topfrp->fr_win->w_status_height);
2816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 else if (topfrp->fr_layout == FR_ROW)
2818 {
2819 do
2820 {
2821 /* All frames in this row get the same new height. */
2822 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2823 {
2824 frame_new_height(frp, height, topfirst, wfh);
2825 if (frp->fr_height > height)
2826 {
2827 /* Could not fit the windows, make the whole row higher. */
2828 height = frp->fr_height;
2829 break;
2830 }
2831 }
2832 }
2833 while (frp != NULL);
2834 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002835 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 {
2837 /* Complicated case: Resize a column of frames. Resize the bottom
2838 * frame first, frames above that when needed. */
2839
2840 frp = topfrp->fr_child;
2841 if (wfh)
2842 /* Advance past frames with one window with 'wfh' set. */
2843 while (frame_fixed_height(frp))
2844 {
2845 frp = frp->fr_next;
2846 if (frp == NULL)
2847 return; /* no frame without 'wfh', give up */
2848 }
2849 if (!topfirst)
2850 {
2851 /* Find the bottom frame of this column */
2852 while (frp->fr_next != NULL)
2853 frp = frp->fr_next;
2854 if (wfh)
2855 /* Advance back for frames with one window with 'wfh' set. */
2856 while (frame_fixed_height(frp))
2857 frp = frp->fr_prev;
2858 }
2859
2860 extra_lines = height - topfrp->fr_height;
2861 if (extra_lines < 0)
2862 {
2863 /* reduce height of contained frames, bottom or top frame first */
2864 while (frp != NULL)
2865 {
2866 h = frame_minheight(frp, NULL);
2867 if (frp->fr_height + extra_lines < h)
2868 {
2869 extra_lines += frp->fr_height - h;
2870 frame_new_height(frp, h, topfirst, wfh);
2871 }
2872 else
2873 {
2874 frame_new_height(frp, frp->fr_height + extra_lines,
2875 topfirst, wfh);
2876 break;
2877 }
2878 if (topfirst)
2879 {
2880 do
2881 frp = frp->fr_next;
2882 while (wfh && frp != NULL && frame_fixed_height(frp));
2883 }
2884 else
2885 {
2886 do
2887 frp = frp->fr_prev;
2888 while (wfh && frp != NULL && frame_fixed_height(frp));
2889 }
2890 /* Increase "height" if we could not reduce enough frames. */
2891 if (frp == NULL)
2892 height -= extra_lines;
2893 }
2894 }
2895 else if (extra_lines > 0)
2896 {
2897 /* increase height of bottom or top frame */
2898 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2899 }
2900 }
2901 topfrp->fr_height = height;
2902}
2903
2904/*
2905 * Return TRUE if height of frame "frp" should not be changed because of
2906 * the 'winfixheight' option.
2907 */
2908 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002909frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910{
2911 /* frame with one window: fixed height if 'winfixheight' set. */
2912 if (frp->fr_win != NULL)
2913 return frp->fr_win->w_p_wfh;
2914
2915 if (frp->fr_layout == FR_ROW)
2916 {
2917 /* The frame is fixed height if one of the frames in the row is fixed
2918 * height. */
2919 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2920 if (frame_fixed_height(frp))
2921 return TRUE;
2922 return FALSE;
2923 }
2924
2925 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2926 * frames in the row are fixed height. */
2927 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2928 if (!frame_fixed_height(frp))
2929 return FALSE;
2930 return TRUE;
2931}
2932
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002934 * Return TRUE if width of frame "frp" should not be changed because of
2935 * the 'winfixwidth' option.
2936 */
2937 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002938frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002939{
2940 /* frame with one window: fixed width if 'winfixwidth' set. */
2941 if (frp->fr_win != NULL)
2942 return frp->fr_win->w_p_wfw;
2943
2944 if (frp->fr_layout == FR_COL)
2945 {
2946 /* The frame is fixed width if one of the frames in the row is fixed
2947 * width. */
2948 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2949 if (frame_fixed_width(frp))
2950 return TRUE;
2951 return FALSE;
2952 }
2953
2954 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2955 * frames in the row are fixed width. */
2956 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2957 if (!frame_fixed_width(frp))
2958 return FALSE;
2959 return TRUE;
2960}
2961
2962/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 * Add a status line to windows at the bottom of "frp".
2964 * Note: Does not check if there is room!
2965 */
2966 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002967frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968{
2969 win_T *wp;
2970
2971 if (frp->fr_layout == FR_LEAF)
2972 {
2973 wp = frp->fr_win;
2974 if (wp->w_status_height == 0)
2975 {
2976 if (wp->w_height > 0) /* don't make it negative */
2977 --wp->w_height;
2978 wp->w_status_height = STATUS_HEIGHT;
2979 }
2980 }
2981 else if (frp->fr_layout == FR_ROW)
2982 {
2983 /* Handle all the frames in the row. */
2984 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2985 frame_add_statusline(frp);
2986 }
2987 else /* frp->fr_layout == FR_COL */
2988 {
2989 /* Only need to handle the last frame in the column. */
2990 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
2991 ;
2992 frame_add_statusline(frp);
2993 }
2994}
2995
2996/*
2997 * Set width of a frame. Handles recursively going through contained frames.
2998 * May remove separator line for windows at the right side (for win_close()).
2999 */
3000 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003001frame_new_width(
3002 frame_T *topfrp,
3003 int width,
3004 int leftfirst, /* resize leftmost contained frame first */
3005 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003006 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
3008 frame_T *frp;
3009 int extra_cols;
3010 int w;
3011 win_T *wp;
3012
3013 if (topfrp->fr_layout == FR_LEAF)
3014 {
3015 /* Simple case: just one window. */
3016 wp = topfrp->fr_win;
3017 /* Find out if there are any windows right of this one. */
3018 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3019 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3020 break;
3021 if (frp->fr_parent == NULL)
3022 wp->w_vsep_width = 0;
3023 win_new_width(wp, width - wp->w_vsep_width);
3024 }
3025 else if (topfrp->fr_layout == FR_COL)
3026 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003027 do
3028 {
3029 /* All frames in this column get the same new width. */
3030 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3031 {
3032 frame_new_width(frp, width, leftfirst, wfw);
3033 if (frp->fr_width > width)
3034 {
3035 /* Could not fit the windows, make whole column wider. */
3036 width = frp->fr_width;
3037 break;
3038 }
3039 }
3040 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 }
3042 else /* fr_layout == FR_ROW */
3043 {
3044 /* Complicated case: Resize a row of frames. Resize the rightmost
3045 * frame first, frames left of it when needed. */
3046
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003048 if (wfw)
3049 /* Advance past frames with one window with 'wfw' set. */
3050 while (frame_fixed_width(frp))
3051 {
3052 frp = frp->fr_next;
3053 if (frp == NULL)
3054 return; /* no frame without 'wfw', give up */
3055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003057 {
3058 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 while (frp->fr_next != NULL)
3060 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003061 if (wfw)
3062 /* Advance back for frames with one window with 'wfw' set. */
3063 while (frame_fixed_width(frp))
3064 frp = frp->fr_prev;
3065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066
3067 extra_cols = width - topfrp->fr_width;
3068 if (extra_cols < 0)
3069 {
3070 /* reduce frame width, rightmost frame first */
3071 while (frp != NULL)
3072 {
3073 w = frame_minwidth(frp, NULL);
3074 if (frp->fr_width + extra_cols < w)
3075 {
3076 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003077 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 }
3079 else
3080 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003081 frame_new_width(frp, frp->fr_width + extra_cols,
3082 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 break;
3084 }
3085 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003086 {
3087 do
3088 frp = frp->fr_next;
3089 while (wfw && frp != NULL && frame_fixed_width(frp));
3090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003092 {
3093 do
3094 frp = frp->fr_prev;
3095 while (wfw && frp != NULL && frame_fixed_width(frp));
3096 }
3097 /* Increase "width" if we could not reduce enough frames. */
3098 if (frp == NULL)
3099 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 }
3101 }
3102 else if (extra_cols > 0)
3103 {
3104 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003105 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 }
3107 }
3108 topfrp->fr_width = width;
3109}
3110
3111/*
3112 * Add the vertical separator to windows at the right side of "frp".
3113 * Note: Does not check if there is room!
3114 */
3115 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003116frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117{
3118 win_T *wp;
3119
3120 if (frp->fr_layout == FR_LEAF)
3121 {
3122 wp = frp->fr_win;
3123 if (wp->w_vsep_width == 0)
3124 {
3125 if (wp->w_width > 0) /* don't make it negative */
3126 --wp->w_width;
3127 wp->w_vsep_width = 1;
3128 }
3129 }
3130 else if (frp->fr_layout == FR_COL)
3131 {
3132 /* Handle all the frames in the column. */
3133 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3134 frame_add_vsep(frp);
3135 }
3136 else /* frp->fr_layout == FR_ROW */
3137 {
3138 /* Only need to handle the last frame in the row. */
3139 frp = frp->fr_child;
3140 while (frp->fr_next != NULL)
3141 frp = frp->fr_next;
3142 frame_add_vsep(frp);
3143 }
3144}
3145
3146/*
3147 * Set frame width from the window it contains.
3148 */
3149 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003150frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151{
3152 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3153}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154
3155/*
3156 * Set frame height from the window it contains.
3157 */
3158 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003159frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160{
3161 wp->w_frame->fr_height = wp->w_height + wp->w_status_height;
3162}
3163
3164/*
3165 * Compute the minimal height for frame "topfrp".
3166 * Uses the 'winminheight' option.
3167 * When "next_curwin" isn't NULL, use p_wh for this window.
3168 * When "next_curwin" is NOWIN, don't use at least one line for the current
3169 * window.
3170 */
3171 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003172frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
3174 frame_T *frp;
3175 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177
3178 if (topfrp->fr_win != NULL)
3179 {
3180 if (topfrp->fr_win == next_curwin)
3181 m = p_wh + topfrp->fr_win->w_status_height;
3182 else
3183 {
3184 /* window: minimal height of the window plus status line */
3185 m = p_wmh + topfrp->fr_win->w_status_height;
3186 /* Current window is minimal one line high */
3187 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3188 ++m;
3189 }
3190 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 else if (topfrp->fr_layout == FR_ROW)
3192 {
3193 /* get the minimal height from each frame in this row */
3194 m = 0;
3195 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3196 {
3197 n = frame_minheight(frp, next_curwin);
3198 if (n > m)
3199 m = n;
3200 }
3201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 else
3203 {
3204 /* Add up the minimal heights for all frames in this column. */
3205 m = 0;
3206 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3207 m += frame_minheight(frp, next_curwin);
3208 }
3209
3210 return m;
3211}
3212
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213/*
3214 * Compute the minimal width for frame "topfrp".
3215 * When "next_curwin" isn't NULL, use p_wiw for this window.
3216 * When "next_curwin" is NOWIN, don't use at least one column for the current
3217 * window.
3218 */
3219 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003220frame_minwidth(
3221 frame_T *topfrp,
3222 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223{
3224 frame_T *frp;
3225 int m, n;
3226
3227 if (topfrp->fr_win != NULL)
3228 {
3229 if (topfrp->fr_win == next_curwin)
3230 m = p_wiw + topfrp->fr_win->w_vsep_width;
3231 else
3232 {
3233 /* window: minimal width of the window plus separator column */
3234 m = p_wmw + topfrp->fr_win->w_vsep_width;
3235 /* Current window is minimal one column wide */
3236 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3237 ++m;
3238 }
3239 }
3240 else if (topfrp->fr_layout == FR_COL)
3241 {
3242 /* get the minimal width from each frame in this column */
3243 m = 0;
3244 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3245 {
3246 n = frame_minwidth(frp, next_curwin);
3247 if (n > m)
3248 m = n;
3249 }
3250 }
3251 else
3252 {
3253 /* Add up the minimal widths for all frames in this row. */
3254 m = 0;
3255 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3256 m += frame_minwidth(frp, next_curwin);
3257 }
3258
3259 return m;
3260}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261
3262
3263/*
3264 * Try to close all windows except current one.
3265 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3266 * used and the buffer was modified.
3267 *
3268 * Used by ":bdel" and ":only".
3269 */
3270 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003271close_others(
3272 int message,
3273 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274{
3275 win_T *wp;
3276 win_T *nextwp;
3277 int r;
3278
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003279 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 {
3281 if (message
3282#ifdef FEAT_AUTOCMD
3283 && !autocmd_busy
3284#endif
3285 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003286 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 return;
3288 }
3289
3290 /* Be very careful here: autocommands may change the window layout. */
3291 for (wp = firstwin; win_valid(wp); wp = nextwp)
3292 {
3293 nextwp = wp->w_next;
3294 if (wp != curwin) /* don't close current window */
3295 {
3296
3297 /* Check if it's allowed to abandon this window */
3298 r = can_abandon(wp->w_buffer, forceit);
3299#ifdef FEAT_AUTOCMD
3300 if (!win_valid(wp)) /* autocommands messed wp up */
3301 {
3302 nextwp = firstwin;
3303 continue;
3304 }
3305#endif
3306 if (!r)
3307 {
3308#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3309 if (message && (p_confirm || cmdmod.confirm) && p_write)
3310 {
3311 dialog_changed(wp->w_buffer, FALSE);
3312# ifdef FEAT_AUTOCMD
3313 if (!win_valid(wp)) /* autocommands messed wp up */
3314 {
3315 nextwp = firstwin;
3316 continue;
3317 }
3318# endif
3319 }
3320 if (bufIsChanged(wp->w_buffer))
3321#endif
3322 continue;
3323 }
3324 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer));
3325 }
3326 }
3327
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003328 if (message && lastwin != firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 EMSG(_("E445: Other window contains changes"));
3330}
3331
3332#endif /* FEAT_WINDOWS */
3333
3334/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003335 * Init the current window "curwin".
3336 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 */
3338 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003339curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003341 win_init_empty(curwin);
3342}
3343
3344 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003345win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003346{
3347 redraw_win_later(wp, NOT_VALID);
3348 wp->w_lines_valid = 0;
3349 wp->w_cursor.lnum = 1;
3350 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003352 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003354 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3355 wp->w_pcmark.col = 0;
3356 wp->w_prev_pcmark.lnum = 0;
3357 wp->w_prev_pcmark.col = 0;
3358 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003360 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003362 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003364 if (wp->w_p_rl)
3365 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003367 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003369#ifdef FEAT_SYN_HL
3370 wp->w_s = &wp->w_buffer->b_s;
3371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372}
3373
3374/*
3375 * Allocate the first window and put an empty buffer in it.
3376 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003377 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003379 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003380win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003382 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003383 return FAIL;
3384
3385#ifdef FEAT_WINDOWS
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003386 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003387 if (first_tabpage == NULL)
3388 return FAIL;
3389 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003390 curtab = first_tabpage;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003391#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003392
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003393 return OK;
3394}
3395
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003396#if defined(FEAT_AUTOCMD) || defined(PROTO)
3397/*
3398 * Init "aucmd_win". This can only be done after the first
3399 * window is fully initialized, thus it can't be in win_alloc_first().
3400 */
3401 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003402win_alloc_aucmd_win(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003403{
3404 aucmd_win = win_alloc(NULL, TRUE);
3405 if (aucmd_win != NULL)
3406 {
3407 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003408 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003409 new_frame(aucmd_win);
3410 }
3411}
3412#endif
3413
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003414/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003415 * Allocate the first window or the first window in a new tab page.
3416 * When "oldwin" is NULL create an empty buffer for it.
3417 * When "oldwin" is not NULL copy info from it to the new window (only with
3418 * FEAT_WINDOWS).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003419 * Return FAIL when something goes wrong (out of memory).
3420 */
3421 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003422win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003423{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003424 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003425 if (oldwin == NULL)
3426 {
3427 /* Very first window, need to create an empty buffer for it and
3428 * initialize from scratch. */
3429 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3430 if (curwin == NULL || curbuf == NULL)
3431 return FAIL;
3432 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003433#ifdef FEAT_SYN_HL
3434 curwin->w_s = &(curbuf->b_s);
3435#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003436 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437#ifdef FEAT_WINDOWS
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003438 curwin->w_alist = &global_alist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003440 curwin_init(); /* init current window */
3441 }
3442#ifdef FEAT_WINDOWS
3443 else
3444 {
3445 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003446 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003447
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003448 /* We don't want cursor- and scroll-binding in the first window. */
3449 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003450 }
3451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003453 new_frame(curwin);
3454 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003455 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003456 topframe = curwin->w_frame;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003457#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 topframe->fr_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 topframe->fr_height = Rows - p_ch;
3461 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003462
3463 return OK;
3464}
3465
3466/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003467 * Create a frame for window "wp".
3468 */
3469 static void
3470new_frame(win_T *wp)
3471{
3472 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3473
3474 wp->w_frame = frp;
3475 if (frp != NULL)
3476 {
3477 frp->fr_layout = FR_LEAF;
3478 frp->fr_win = wp;
3479 }
3480}
3481
3482/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003483 * Initialize the window and frame size to the maximum.
3484 */
3485 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003486win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003487{
3488 firstwin->w_height = ROWS_AVAIL;
3489 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003490#ifdef FEAT_WINDOWS
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003491 firstwin->w_width = Columns;
3492 topframe->fr_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003493#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494}
3495
3496#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003497
3498/*
3499 * Allocate a new tabpage_T and init the values.
3500 * Returns NULL when out of memory.
3501 */
3502 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003503alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003504{
3505 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003506# ifdef FEAT_GUI
3507 int i;
3508# endif
3509
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003510
3511 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003512 if (tp == NULL)
3513 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003514
Bram Moolenaar429fa852013-04-15 12:27:36 +02003515# ifdef FEAT_EVAL
3516 /* init t: variables */
3517 tp->tp_vars = dict_alloc();
3518 if (tp->tp_vars == NULL)
3519 {
3520 vim_free(tp);
3521 return NULL;
3522 }
3523 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3524# endif
3525
3526# ifdef FEAT_GUI
3527 for (i = 0; i < 3; i++)
3528 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003529# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003530# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003531 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003532# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003533 tp->tp_ch_used = p_ch;
3534
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003535 return tp;
3536}
3537
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003538 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003539free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003540{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003541 int idx;
3542
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003543# ifdef FEAT_DIFF
3544 diff_clear(tp);
3545# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003546 for (idx = 0; idx < SNAP_COUNT; ++idx)
3547 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003548#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003549 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3550 hash_init(&tp->tp_vars->dv_hashtab);
3551 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003552#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003553
3554#ifdef FEAT_PYTHON
3555 python_tabpage_free(tp);
3556#endif
3557
3558#ifdef FEAT_PYTHON3
3559 python3_tabpage_free(tp);
3560#endif
3561
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003562 vim_free(tp);
3563}
3564
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003565/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003566 * Create a new Tab page with one window.
3567 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003568 * When "after" is 0 put it just after the current Tab page.
3569 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003570 * Return FAIL or OK.
3571 */
3572 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003573win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003574{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003575 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003576 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003577 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003578
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003579 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003580 if (newtp == NULL)
3581 return FAIL;
3582
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003583 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003584 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003585 {
3586 vim_free(newtp);
3587 return FAIL;
3588 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003589 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003590
3591 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003592 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003593 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003594 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003595 if (after == 1)
3596 {
3597 /* New tab page becomes the first one. */
3598 newtp->tp_next = first_tabpage;
3599 first_tabpage = newtp;
3600 }
3601 else
3602 {
3603 if (after > 0)
3604 {
3605 /* Put new tab page before tab page "after". */
3606 n = 2;
3607 for (tp = first_tabpage; tp->tp_next != NULL
3608 && n < after; tp = tp->tp_next)
3609 ++n;
3610 }
3611 newtp->tp_next = tp->tp_next;
3612 tp->tp_next = newtp;
3613 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003614 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003615 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003616 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003617
3618 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003619 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003620
3621#if defined(FEAT_GUI)
3622 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3623 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003624 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003625#endif
3626
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003627 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003628#ifdef FEAT_AUTOCMD
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003629 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003630 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003631#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003632 return OK;
3633 }
3634
3635 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003636 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003637 return FAIL;
3638}
3639
3640/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003641 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3642 * like with ":split".
3643 * Returns OK if a new tab page was created, FAIL otherwise.
3644 */
3645 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003646may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003647{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003648 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003649
Bram Moolenaard326ce82007-03-11 14:48:29 +00003650 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003651 {
3652 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003653 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003654 return win_new_tabpage(n);
3655 }
3656 return FAIL;
3657}
3658
3659/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003660 * Create up to "maxcount" tabpages with empty windows.
3661 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003662 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003663 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003664make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003665{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003666 int count = maxcount;
3667 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003668
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003669 /* Limit to 'tabpagemax' tabs. */
3670 if (count > p_tpm)
3671 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003672
3673#ifdef FEAT_AUTOCMD
3674 /*
3675 * Don't execute autocommands while creating the tab pages. Must do that
3676 * when putting the buffers in the windows.
3677 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003678 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003679#endif
3680
3681 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003682 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003683 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003684
3685#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003686 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003687#endif
3688
3689 /* return actual number of tab pages */
3690 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003691}
3692
3693/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003694 * Return TRUE when "tpc" points to a valid tab page.
3695 */
3696 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003697valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003698{
3699 tabpage_T *tp;
3700
3701 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3702 if (tp == tpc)
3703 return TRUE;
3704 return FALSE;
3705}
3706
3707/*
3708 * Find tab page "n" (first one is 1). Returns NULL when not found.
3709 */
3710 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003711find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003712{
3713 tabpage_T *tp;
3714 int i = 1;
3715
3716 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3717 ++i;
3718 return tp;
3719}
3720
3721/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003722 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003723 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003724 */
3725 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003726tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003727{
3728 int i = 1;
3729 tabpage_T *tp;
3730
3731 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3732 ++i;
3733 return i;
3734}
3735
3736/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003737 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003738 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003739 * FAIL.
3740 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003741 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003742 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003743leave_tabpage(
3744 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003745 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003746 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003747{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003748 tabpage_T *tp = curtab;
3749
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003750 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003751#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003752 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003753 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003754 if (new_curbuf != curbuf)
3755 {
3756 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3757 if (curtab != tp)
3758 return FAIL;
3759 }
3760 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3761 if (curtab != tp)
3762 return FAIL;
3763 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003764 if (curtab != tp)
3765 return FAIL;
3766 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003767#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003768#if defined(FEAT_GUI)
3769 /* Remove the scrollbars. They may be added back later. */
3770 if (gui.in_use)
3771 gui_remove_scrollbars();
3772#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003773 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003774 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003775 tp->tp_firstwin = firstwin;
3776 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003777 tp->tp_old_Rows = Rows;
3778 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003779 firstwin = NULL;
3780 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003781 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003782}
3783
3784/*
3785 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003786 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003787 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3788 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003789 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003790 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003791enter_tabpage(
3792 tabpage_T *tp,
3793 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003794 int trigger_enter_autocmds,
3795 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003796{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003797 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003798 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003799
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003800 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003801 firstwin = tp->tp_firstwin;
3802 lastwin = tp->tp_lastwin;
3803 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003804
3805 /* We would like doing the TabEnter event first, but we don't have a
3806 * valid current window yet, which may break some commands.
3807 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaard6949742013-06-16 14:18:28 +02003808 win_enter_ext(tp->tp_curwin, FALSE, TRUE,
3809 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003810 prevwin = next_prevwin;
3811
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003812 last_status(FALSE); /* status line may appear or disappear */
3813 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003814 must_redraw = CLEAR; /* need to redraw everything */
3815#ifdef FEAT_DIFF
3816 diff_need_scrollbind = TRUE;
3817#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003818
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003819 /* The tabpage line may have appeared or disappeared, may need to resize
3820 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003821 * frame sizes too. Use the stored value of p_ch, so that it can be
3822 * different for each tab page. */
3823 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003824 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3825#ifdef FEAT_GUI_TABLINE
3826 && !gui_use_tabline()
3827#endif
3828 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003829 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003830 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003831 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003832
3833#if defined(FEAT_GUI)
3834 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3835 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003836 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003837#endif
3838
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003839#ifdef FEAT_AUTOCMD
3840 /* Apply autocommands after updating the display, when 'rows' and
3841 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003842 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003843 {
3844 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3845 if (old_curbuf != curbuf)
3846 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3847 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003848#endif
3849
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003850 redraw_all_later(CLEAR);
3851}
3852
3853/*
3854 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003855 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003856 */
3857 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003858goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003859{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003860 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003861 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003862 int i;
3863
Bram Moolenaard68071d2006-05-02 22:08:30 +00003864 if (text_locked())
3865 {
3866 /* Not allowed when editing the command line. */
3867#ifdef FEAT_CMDWIN
3868 if (cmdwin_type != 0)
3869 EMSG(_(e_cmdwin));
3870 else
3871#endif
3872 EMSG(_(e_secure));
3873 return;
3874 }
3875
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003876 /* If there is only one it can't work. */
3877 if (first_tabpage->tp_next == NULL)
3878 {
3879 if (n > 1)
3880 beep_flush();
3881 return;
3882 }
3883
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003884 if (n == 0)
3885 {
3886 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003887 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003888 tp = first_tabpage;
3889 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003890 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003891 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003892 else if (n < 0)
3893 {
3894 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3895 * this N times. */
3896 ttp = curtab;
3897 for (i = n; i < 0; ++i)
3898 {
3899 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
3900 tp = tp->tp_next)
3901 ;
3902 ttp = tp;
3903 }
3904 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003905 else if (n == 9999)
3906 {
3907 /* Go to last tab page. */
3908 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
3909 ;
3910 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003911 else
3912 {
3913 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003914 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00003915 if (tp == NULL)
3916 {
3917 beep_flush();
3918 return;
3919 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003920 }
3921
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003922 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003923
3924#ifdef FEAT_GUI_TABLINE
3925 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003926 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003927#endif
3928}
3929
3930/*
3931 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003932 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3933 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003934 * Note: doesn't update the GUI tab.
3935 */
3936 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003937goto_tabpage_tp(
3938 tabpage_T *tp,
3939 int trigger_enter_autocmds,
3940 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003941{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02003942 /* Don't repeat a message in another tab page. */
3943 set_keep_msg(NULL, 0);
3944
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003945 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
3946 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003947 {
3948 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003949 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
3950 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003951 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003952 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
3953 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003954 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003955}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956
3957/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003958 * Enter window "wp" in tab page "tp".
3959 * Also updates the GUI tab.
3960 */
3961 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003962goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003963{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003964 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003965 if (curtab == tp && win_valid(wp))
3966 {
3967 win_enter(wp, TRUE);
3968# ifdef FEAT_GUI_TABLINE
3969 if (gui_use_tabline())
3970 gui_mch_set_curtab(tabpage_index(curtab));
3971# endif
3972 }
3973}
3974
3975/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003976 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003977 */
3978 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003979tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003980{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003981 int n = 1;
3982 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003983
3984 if (first_tabpage->tp_next == NULL)
3985 return;
3986
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003987 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
3988 ++n;
3989
3990 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
3991 && tp->tp_next == curtab))
3992 return;
3993
3994 tp_dst = tp;
3995
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003996 /* Remove the current tab page from the list of tab pages. */
3997 if (curtab == first_tabpage)
3998 first_tabpage = curtab->tp_next;
3999 else
4000 {
4001 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4002 if (tp->tp_next == curtab)
4003 break;
4004 if (tp == NULL) /* "cannot happen" */
4005 return;
4006 tp->tp_next = curtab->tp_next;
4007 }
4008
4009 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004010 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004011 {
4012 curtab->tp_next = first_tabpage;
4013 first_tabpage = curtab;
4014 }
4015 else
4016 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004017 curtab->tp_next = tp_dst->tp_next;
4018 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004019 }
4020
4021 /* Need to redraw the tabline. Tab page contents doesn't change. */
4022 redraw_tabline = TRUE;
4023}
4024
4025
4026/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 * Go to another window.
4028 * When jumping to another buffer, stop Visual mode. Do this before
4029 * changing windows so we can yank the selection into the '*' register.
4030 * When jumping to another window on the same buffer, adjust its cursor
4031 * position to keep the same Visual area.
4032 */
4033 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004034win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004036#ifdef FEAT_CONCEAL
4037 win_T *owp = curwin;
4038#endif
4039
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004040 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 {
4042 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004043 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 return;
4045 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004046#ifdef FEAT_AUTOCMD
4047 if (curbuf_locked())
4048 return;
4049#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004050
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 if (wp->w_buffer != curbuf)
4052 reset_VIsual_and_resel();
4053 else if (VIsual_active)
4054 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055
4056#ifdef FEAT_GUI
4057 need_mouse_correct = TRUE;
4058#endif
4059 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004060
4061#ifdef FEAT_CONCEAL
4062 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004063 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004064 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004065 if (curwin->w_p_cole > 0 && !msg_scrolled)
4066 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004067#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068}
4069
4070#if defined(FEAT_PERL) || defined(PROTO)
4071/*
4072 * Find window number "winnr" (counting top to bottom).
4073 */
4074 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004075win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076{
4077 win_T *wp;
4078
4079# ifdef FEAT_WINDOWS
4080 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4081 if (--winnr == 0)
4082 break;
4083 return wp;
4084# else
4085 return curwin;
4086# endif
4087}
4088#endif
4089
Bram Moolenaar6fa41fb2013-05-18 20:55:35 +02004090#if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
4091 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004092/*
4093 * Find the tabpage for window "win".
4094 */
4095 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004096win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004097{
4098 win_T *wp;
4099 tabpage_T *tp;
4100
4101 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
Bram Moolenaar5e6d5ca2013-07-03 14:01:56 +02004102 for (wp = (tp == curtab ? firstwin : tp->tp_firstwin);
4103 wp != NULL; wp = wp->w_next)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004104 if (wp == win)
4105 return tp;
4106 return NULL;
4107}
4108#endif
4109
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110/*
4111 * Move to window above or below "count" times.
4112 */
4113 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004114win_goto_ver(
4115 int up, /* TRUE to go to win above */
4116 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117{
4118 frame_T *fr;
4119 frame_T *nfr;
4120 frame_T *foundfr;
4121
4122 foundfr = curwin->w_frame;
4123 while (count--)
4124 {
4125 /*
4126 * First go upwards in the tree of frames until we find a upwards or
4127 * downwards neighbor.
4128 */
4129 fr = foundfr;
4130 for (;;)
4131 {
4132 if (fr == topframe)
4133 goto end;
4134 if (up)
4135 nfr = fr->fr_prev;
4136 else
4137 nfr = fr->fr_next;
4138 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4139 break;
4140 fr = fr->fr_parent;
4141 }
4142
4143 /*
4144 * Now go downwards to find the bottom or top frame in it.
4145 */
4146 for (;;)
4147 {
4148 if (nfr->fr_layout == FR_LEAF)
4149 {
4150 foundfr = nfr;
4151 break;
4152 }
4153 fr = nfr->fr_child;
4154 if (nfr->fr_layout == FR_ROW)
4155 {
4156 /* Find the frame at the cursor row. */
4157 while (fr->fr_next != NULL
4158 && frame2win(fr)->w_wincol + fr->fr_width
4159 <= curwin->w_wincol + curwin->w_wcol)
4160 fr = fr->fr_next;
4161 }
4162 if (nfr->fr_layout == FR_COL && up)
4163 while (fr->fr_next != NULL)
4164 fr = fr->fr_next;
4165 nfr = fr;
4166 }
4167 }
4168end:
4169 if (foundfr != NULL)
4170 win_goto(foundfr->fr_win);
4171}
4172
4173/*
4174 * Move to left or right window.
4175 */
4176 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004177win_goto_hor(
4178 int left, /* TRUE to go to left win */
4179 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180{
4181 frame_T *fr;
4182 frame_T *nfr;
4183 frame_T *foundfr;
4184
4185 foundfr = curwin->w_frame;
4186 while (count--)
4187 {
4188 /*
4189 * First go upwards in the tree of frames until we find a left or
4190 * right neighbor.
4191 */
4192 fr = foundfr;
4193 for (;;)
4194 {
4195 if (fr == topframe)
4196 goto end;
4197 if (left)
4198 nfr = fr->fr_prev;
4199 else
4200 nfr = fr->fr_next;
4201 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4202 break;
4203 fr = fr->fr_parent;
4204 }
4205
4206 /*
4207 * Now go downwards to find the leftmost or rightmost frame in it.
4208 */
4209 for (;;)
4210 {
4211 if (nfr->fr_layout == FR_LEAF)
4212 {
4213 foundfr = nfr;
4214 break;
4215 }
4216 fr = nfr->fr_child;
4217 if (nfr->fr_layout == FR_COL)
4218 {
4219 /* Find the frame at the cursor row. */
4220 while (fr->fr_next != NULL
4221 && frame2win(fr)->w_winrow + fr->fr_height
4222 <= curwin->w_winrow + curwin->w_wrow)
4223 fr = fr->fr_next;
4224 }
4225 if (nfr->fr_layout == FR_ROW && left)
4226 while (fr->fr_next != NULL)
4227 fr = fr->fr_next;
4228 nfr = fr;
4229 }
4230 }
4231end:
4232 if (foundfr != NULL)
4233 win_goto(foundfr->fr_win);
4234}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235
4236/*
4237 * Make window "wp" the current window.
4238 */
4239 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004240win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004242 win_enter_ext(wp, undo_sync, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243}
4244
4245/*
4246 * Make window wp the current window.
4247 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4248 * been closed and isn't valid.
4249 */
4250 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004251win_enter_ext(
4252 win_T *wp,
4253 int undo_sync,
4254 int curwin_invalid,
4255 int trigger_enter_autocmds UNUSED,
4256 int trigger_leave_autocmds UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257{
4258#ifdef FEAT_AUTOCMD
4259 int other_buffer = FALSE;
4260#endif
4261
4262 if (wp == curwin && !curwin_invalid) /* nothing to do */
4263 return;
4264
4265#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004266 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 {
4268 /*
4269 * Be careful: If autocommands delete the window, return now.
4270 */
4271 if (wp->w_buffer != curbuf)
4272 {
4273 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4274 other_buffer = TRUE;
4275 if (!win_valid(wp))
4276 return;
4277 }
4278 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4279 if (!win_valid(wp))
4280 return;
4281# ifdef FEAT_EVAL
4282 /* autocmds may abort script processing */
4283 if (aborting())
4284 return;
4285# endif
4286 }
4287#endif
4288
4289 /* sync undo before leaving the current buffer */
4290 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004291 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004292
4293 /* Might need to scroll the old window before switching, e.g., when the
4294 * cursor was moved. */
4295 update_topline();
4296
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 /* may have to copy the buffer options when 'cpo' contains 'S' */
4298 if (wp->w_buffer != curbuf)
4299 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4300 if (!curwin_invalid)
4301 {
4302 prevwin = curwin; /* remember for CTRL-W p */
4303 curwin->w_redr_status = TRUE;
4304 }
4305 curwin = wp;
4306 curbuf = wp->w_buffer;
4307 check_cursor();
4308#ifdef FEAT_VIRTUALEDIT
4309 if (!virtual_active())
4310 curwin->w_cursor.coladd = 0;
4311#endif
4312 changed_line_abv_curs(); /* assume cursor position needs updating */
4313
4314 if (curwin->w_localdir != NULL)
4315 {
4316 /* Window has a local directory: Save current directory as global
4317 * directory (unless that was done already) and change to the local
4318 * directory. */
4319 if (globaldir == NULL)
4320 {
4321 char_u cwd[MAXPATHL];
4322
4323 if (mch_dirname(cwd, MAXPATHL) == OK)
4324 globaldir = vim_strsave(cwd);
4325 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004326 if (mch_chdir((char *)curwin->w_localdir) == 0)
4327 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 }
4329 else if (globaldir != NULL)
4330 {
4331 /* Window doesn't have a local directory and we are not in the global
4332 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004333 ignored = mch_chdir((char *)globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 vim_free(globaldir);
4335 globaldir = NULL;
4336 shorten_fnames(TRUE);
4337 }
4338
4339#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004340 if (trigger_enter_autocmds)
4341 {
4342 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4343 if (other_buffer)
4344 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346#endif
4347
4348#ifdef FEAT_TITLE
4349 maketitle();
4350#endif
4351 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004352 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 if (restart_edit)
4354 redraw_later(VALID); /* causes status line redraw */
4355
4356 /* set window height to desired minimal value */
4357 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4358 win_setheight((int)p_wh);
4359 else if (curwin->w_height == 0)
4360 win_setheight(1);
4361
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004363 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365
4366#ifdef FEAT_MOUSE
4367 setmouse(); /* in case jumped to/from help buffer */
4368#endif
4369
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004370 /* Change directories when the 'acd' option is set. */
4371 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372}
4373
4374#endif /* FEAT_WINDOWS */
4375
4376#if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO)
4377/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004378 * Jump to the first open window that contains buffer "buf", if one exists.
4379 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 */
4381 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004382buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004384 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004386 if (curwin->w_buffer == buf)
4387 wp = curwin;
4388# ifdef FEAT_WINDOWS
4389 else
4390 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4391 if (wp->w_buffer == buf)
4392 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 if (wp != NULL)
4394 win_enter(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004396 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004398
4399/*
4400 * Jump to the first open window in any tab page that contains buffer "buf",
4401 * if one exists.
4402 * Returns a pointer to the window found, otherwise NULL.
4403 */
4404 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004405buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004406{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004407 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004408# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004409 tabpage_T *tp;
4410
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004411 if (wp != NULL)
4412 return wp;
4413
4414 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4415 if (tp != curtab)
4416 {
4417 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4418 if (wp->w_buffer == buf)
4419 break;
4420 if (wp != NULL)
4421 {
4422 goto_tabpage_win(tp, wp);
4423 if (curwin != wp)
4424 wp = NULL; /* something went wrong */
4425 break;
4426 }
4427 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004428# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004429 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004430}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431#endif
4432
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004433static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004434
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004436 * Allocate a window structure and link it in the window list when "hidden" is
4437 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004440win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004442 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443
4444 /*
4445 * allocate window structure and linesizes arrays
4446 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004447 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004448 if (new_wp == NULL)
4449 return NULL;
4450
4451 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004453 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004454 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 }
4456
Bram Moolenaar86edef62016-03-13 18:07:30 +01004457 new_wp->w_id = ++last_win_id;
4458
Bram Moolenaar429fa852013-04-15 12:27:36 +02004459#ifdef FEAT_EVAL
4460 /* init w: variables */
4461 new_wp->w_vars = dict_alloc();
4462 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004464 win_free_lsize(new_wp);
4465 vim_free(new_wp);
4466 return NULL;
4467 }
4468 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004469#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004470
4471#ifdef FEAT_AUTOCMD
4472 /* Don't execute autocommands while the window is not properly
4473 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4474 * event. */
4475 block_autocmds();
4476#endif
4477 /*
4478 * link the window in the window list
4479 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480#ifdef FEAT_WINDOWS
Bram Moolenaar429fa852013-04-15 12:27:36 +02004481 if (!hidden)
4482 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004483 new_wp->w_wincol = 0;
4484 new_wp->w_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01004485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486
Bram Moolenaar429fa852013-04-15 12:27:36 +02004487 /* position the display and the cursor at the top of the file. */
4488 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004490 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004492 new_wp->w_botline = 2;
4493 new_wp->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494#ifdef FEAT_SCROLLBIND
Bram Moolenaar429fa852013-04-15 12:27:36 +02004495 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496#endif
4497
Bram Moolenaar429fa852013-04-15 12:27:36 +02004498 /* We won't calculate w_fraction until resizing the window */
4499 new_wp->w_fraction = 0;
4500 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501
4502#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004503 if (gui.in_use)
4504 {
4505 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4506 SBAR_LEFT, new_wp);
4507 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4508 SBAR_RIGHT, new_wp);
4509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510#endif
4511#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004512 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513#endif
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004514#ifdef FEAT_AUTOCMD
Bram Moolenaar429fa852013-04-15 12:27:36 +02004515 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004516#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004517#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004518 new_wp->w_match_head = NULL;
4519 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004520#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004521 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522}
4523
4524#if defined(FEAT_WINDOWS) || defined(PROTO)
4525
4526/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004527 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 */
4529 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004530win_free(
4531 win_T *wp,
4532 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533{
4534 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004535 buf_T *buf;
4536 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004538#ifdef FEAT_FOLDING
4539 clearFolding(wp);
4540#endif
4541
4542 /* reduce the reference count to the argument list. */
4543 alist_unlink(wp->w_alist);
4544
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004545#ifdef FEAT_AUTOCMD
4546 /* Don't execute autocommands while the window is halfway being deleted.
4547 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004548 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004549#endif
4550
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004551#ifdef FEAT_LUA
4552 lua_window_free(wp);
4553#endif
4554
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004555#ifdef FEAT_MZSCHEME
4556 mzscheme_window_free(wp);
4557#endif
4558
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559#ifdef FEAT_PERL
4560 perl_win_free(wp);
4561#endif
4562
4563#ifdef FEAT_PYTHON
4564 python_window_free(wp);
4565#endif
4566
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004567#ifdef FEAT_PYTHON3
4568 python3_window_free(wp);
4569#endif
4570
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571#ifdef FEAT_TCL
4572 tcl_window_free(wp);
4573#endif
4574
4575#ifdef FEAT_RUBY
4576 ruby_window_free(wp);
4577#endif
4578
4579 clear_winopt(&wp->w_onebuf_opt);
4580 clear_winopt(&wp->w_allbuf_opt);
4581
4582#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004583 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4584 hash_init(&wp->w_vars->dv_hashtab);
4585 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586#endif
4587
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004588 {
4589 tabpage_T *ttp;
4590
4591 if (prevwin == wp)
4592 prevwin = NULL;
4593 for (ttp = first_tabpage; ttp != NULL; ttp = ttp->tp_next)
4594 if (ttp->tp_prevwin == wp)
4595 ttp->tp_prevwin = NULL;
4596 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 win_free_lsize(wp);
4598
4599 for (i = 0; i < wp->w_tagstacklen; ++i)
4600 vim_free(wp->w_tagstack[i].tagname);
4601
4602 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004603
Bram Moolenaarff18df02013-07-24 17:51:57 +02004604 /* Remove the window from the b_wininfo lists, it may happen that the
4605 * freed memory is re-used for another window. */
4606 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
4607 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4608 if (wip->wi_win == wp)
4609 wip->wi_win = NULL;
4610
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004612 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004614
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615#ifdef FEAT_JUMPLIST
4616 free_jumplist(wp);
4617#endif
4618
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004619#ifdef FEAT_QUICKFIX
4620 qf_free_all(wp);
4621#endif
4622
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623#ifdef FEAT_GUI
4624 if (gui.in_use)
4625 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4627 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4628 }
4629#endif /* FEAT_GUI */
4630
Bram Moolenaar860cae12010-06-05 23:22:07 +02004631#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004632 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004633#endif
4634
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004635#ifdef FEAT_AUTOCMD
4636 if (wp != aucmd_win)
4637#endif
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004638 win_remove(wp, tp);
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004639#ifdef FEAT_AUTOCMD
Bram Moolenaar3be85852014-06-12 14:01:31 +02004640 if (autocmd_busy)
4641 {
4642 wp->w_next = au_pending_free_win;
4643 au_pending_free_win = wp;
4644 }
4645 else
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004646#endif
Bram Moolenaar3be85852014-06-12 14:01:31 +02004647 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004648
4649#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004650 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004651#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652}
4653
4654/*
4655 * Append window "wp" in the window list after window "after".
4656 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004657 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004658win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659{
4660 win_T *before;
4661
4662 if (after == NULL) /* after NULL is in front of the first */
4663 before = firstwin;
4664 else
4665 before = after->w_next;
4666
4667 wp->w_next = before;
4668 wp->w_prev = after;
4669 if (after == NULL)
4670 firstwin = wp;
4671 else
4672 after->w_next = wp;
4673 if (before == NULL)
4674 lastwin = wp;
4675 else
4676 before->w_prev = wp;
4677}
4678
4679/*
4680 * Remove a window from the window list.
4681 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004682 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004683win_remove(
4684 win_T *wp,
4685 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686{
4687 if (wp->w_prev != NULL)
4688 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004689 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004691 else
4692 tp->tp_firstwin = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 if (wp->w_next != NULL)
4694 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004695 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004697 else
4698 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699}
4700
4701/*
4702 * Append frame "frp" in a frame list after frame "after".
4703 */
4704 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004705frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706{
4707 frp->fr_next = after->fr_next;
4708 after->fr_next = frp;
4709 if (frp->fr_next != NULL)
4710 frp->fr_next->fr_prev = frp;
4711 frp->fr_prev = after;
4712}
4713
4714/*
4715 * Insert frame "frp" in a frame list before frame "before".
4716 */
4717 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004718frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719{
4720 frp->fr_next = before;
4721 frp->fr_prev = before->fr_prev;
4722 before->fr_prev = frp;
4723 if (frp->fr_prev != NULL)
4724 frp->fr_prev->fr_next = frp;
4725 else
4726 frp->fr_parent->fr_child = frp;
4727}
4728
4729/*
4730 * Remove a frame from a frame list.
4731 */
4732 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004733frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734{
4735 if (frp->fr_prev != NULL)
4736 frp->fr_prev->fr_next = frp->fr_next;
4737 else
4738 frp->fr_parent->fr_child = frp->fr_next;
4739 if (frp->fr_next != NULL)
4740 frp->fr_next->fr_prev = frp->fr_prev;
4741}
4742
4743#endif /* FEAT_WINDOWS */
4744
4745/*
4746 * Allocate w_lines[] for window "wp".
4747 * Return FAIL for failure, OK for success.
4748 */
4749 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004750win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751{
4752 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004753 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 if (wp->w_lines == NULL)
4755 return FAIL;
4756 return OK;
4757}
4758
4759/*
4760 * free lsize arrays for a window
4761 */
4762 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004763win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004765 /* TODO: why would wp be NULL here? */
4766 if (wp != NULL)
4767 {
4768 vim_free(wp->w_lines);
4769 wp->w_lines = NULL;
4770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771}
4772
4773/*
4774 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004775 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 */
4777 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004778shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004780 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781
4782 if (firstwin == NULL) /* not initialized yet */
4783 return;
4784#ifdef FEAT_WINDOWS
4785 if (h < frame_minheight(topframe, NULL))
4786 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004787
4788 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 * that doesn't result in the right height, forget about that option. */
4790 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004791 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 frame_new_height(topframe, h, FALSE, FALSE);
4793
4794 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4795#else
4796 if (h < 1)
4797 h = 1;
4798 win_new_height(firstwin, h);
4799#endif
4800 compute_cmdrow();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004801#ifdef FEAT_WINDOWS
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004802 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004803#endif
4804
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805#if 0
4806 /* Disabled: don't want making the screen smaller make a window larger. */
4807 if (p_ea)
4808 win_equal(curwin, FALSE, 'v');
4809#endif
4810}
4811
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004812#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813/*
4814 * Called from win_new_shellsize() after Columns changed.
4815 */
4816 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004817shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818{
4819 if (firstwin == NULL) /* not initialized yet */
4820 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004821
4822 /* First try setting the widths of windows with 'winfixwidth'. If that
4823 * doesn't result in the right width, forget about that option. */
4824 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004825 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004826 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4827
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4829#if 0
4830 /* Disabled: don't want making the screen smaller make a window larger. */
4831 if (p_ea)
4832 win_equal(curwin, FALSE, 'h');
4833#endif
4834}
4835#endif
4836
4837#if defined(FEAT_CMDWIN) || defined(PROTO)
4838/*
4839 * Save the size of all windows in "gap".
4840 */
4841 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004842win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843
4844{
4845 win_T *wp;
4846
4847 ga_init2(gap, (int)sizeof(int), 1);
4848 if (ga_grow(gap, win_count() * 2) == OK)
4849 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4850 {
4851 ((int *)gap->ga_data)[gap->ga_len++] =
4852 wp->w_width + wp->w_vsep_width;
4853 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4854 }
4855}
4856
4857/*
4858 * Restore window sizes, but only if the number of windows is still the same.
4859 * Does not free the growarray.
4860 */
4861 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004862win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863{
4864 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004865 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866
4867 if (win_count() * 2 == gap->ga_len)
4868 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004869 /* The order matters, because frames contain other frames, but it's
4870 * difficult to get right. The easy way out is to do it twice. */
4871 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004873 i = 0;
4874 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4875 {
4876 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4877 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 }
4880 /* recompute the window positions */
4881 (void)win_comp_pos();
4882 }
4883}
4884#endif /* FEAT_CMDWIN */
4885
4886#if defined(FEAT_WINDOWS) || defined(PROTO)
4887/*
4888 * Update the position for all windows, using the width and height of the
4889 * frames.
4890 * Returns the row just after the last window.
4891 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004892 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004893win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004895 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 int col = 0;
4897
4898 frame_comp_pos(topframe, &row, &col);
4899 return row;
4900}
4901
4902/*
4903 * Update the position of the windows in frame "topfrp", using the width and
4904 * height of the frames.
4905 * "*row" and "*col" are the top-left position of the frame. They are updated
4906 * to the bottom-right position plus one.
4907 */
4908 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004909frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910{
4911 win_T *wp;
4912 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 int startcol;
4914 int startrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915
4916 wp = topfrp->fr_win;
4917 if (wp != NULL)
4918 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004919 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 {
4921 /* position changed, redraw */
4922 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 redraw_win_later(wp, NOT_VALID);
4925 wp->w_redr_status = TRUE;
4926 }
4927 *row += wp->w_height + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 }
4930 else
4931 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 startrow = *row;
4933 startcol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
4935 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 if (topfrp->fr_layout == FR_ROW)
4937 *row = startrow; /* all frames are at the same row */
4938 else
4939 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 frame_comp_pos(frp, row, col);
4941 }
4942 }
4943}
4944
4945#endif /* FEAT_WINDOWS */
4946
4947/*
4948 * Set current window height and take care of repositioning other windows to
4949 * fit around it.
4950 */
4951 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004952win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953{
4954 win_setheight_win(height, curwin);
4955}
4956
4957/*
4958 * Set the window height of window "win" and take care of repositioning other
4959 * windows to fit around it.
4960 */
4961 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004962win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963{
4964 int row;
4965
4966 if (win == curwin)
4967 {
4968 /* Always keep current window at least one line high, even when
4969 * 'winminheight' is zero. */
4970#ifdef FEAT_WINDOWS
4971 if (height < p_wmh)
4972 height = p_wmh;
4973#endif
4974 if (height == 0)
4975 height = 1;
4976 }
4977
4978#ifdef FEAT_WINDOWS
4979 frame_setheight(win->w_frame, height + win->w_status_height);
4980
4981 /* recompute the window positions */
4982 row = win_comp_pos();
4983#else
4984 if (height > topframe->fr_height)
4985 height = topframe->fr_height;
4986 win->w_height = height;
4987 row = height;
4988#endif
4989
4990 /*
4991 * If there is extra space created between the last window and the command
4992 * line, clear it.
4993 */
4994 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
4995 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
4996 cmdline_row = row;
4997 msg_row = row;
4998 msg_col = 0;
4999
5000 redraw_all_later(NOT_VALID);
5001}
5002
5003#if defined(FEAT_WINDOWS) || defined(PROTO)
5004
5005/*
5006 * Set the height of a frame to "height" and take care that all frames and
5007 * windows inside it are resized. Also resize frames on the left and right if
5008 * the are in the same FR_ROW frame.
5009 *
5010 * Strategy:
5011 * If the frame is part of a FR_COL frame, try fitting the frame in that
5012 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5013 * go to containing frames to resize them and make room.
5014 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5015 * Check for the minimal height of the FR_ROW frame.
5016 * At the top level we can also use change the command line height.
5017 */
5018 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005019frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020{
5021 int room; /* total number of lines available */
5022 int take; /* number of lines taken from other windows */
5023 int room_cmdline; /* lines available from cmdline */
5024 int run;
5025 frame_T *frp;
5026 int h;
5027 int room_reserved;
5028
5029 /* If the height already is the desired value, nothing to do. */
5030 if (curfrp->fr_height == height)
5031 return;
5032
5033 if (curfrp->fr_parent == NULL)
5034 {
5035 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005036 if (height > ROWS_AVAIL)
5037 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 if (height > 0)
5039 frame_new_height(curfrp, height, FALSE, FALSE);
5040 }
5041 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5042 {
5043 /* Row of frames: Also need to resize frames left and right of this
5044 * one. First check for the minimal height of these. */
5045 h = frame_minheight(curfrp->fr_parent, NULL);
5046 if (height < h)
5047 height = h;
5048 frame_setheight(curfrp->fr_parent, height);
5049 }
5050 else
5051 {
5052 /*
5053 * Column of frames: try to change only frames in this column.
5054 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 /*
5056 * Do this twice:
5057 * 1: compute room available, if it's not enough try resizing the
5058 * containing frame.
5059 * 2: compute the room available and adjust the height to it.
5060 * Try not to reduce the height of a window with 'winfixheight' set.
5061 */
5062 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 {
5064 room = 0;
5065 room_reserved = 0;
5066 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5067 frp = frp->fr_next)
5068 {
5069 if (frp != curfrp
5070 && frp->fr_win != NULL
5071 && frp->fr_win->w_p_wfh)
5072 room_reserved += frp->fr_height;
5073 room += frp->fr_height;
5074 if (frp != curfrp)
5075 room -= frame_minheight(frp, NULL);
5076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 if (curfrp->fr_width != Columns)
5078 room_cmdline = 0;
5079 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 {
5081 room_cmdline = Rows - p_ch - (lastwin->w_winrow
5082 + lastwin->w_height + lastwin->w_status_height);
5083 if (room_cmdline < 0)
5084 room_cmdline = 0;
5085 }
5086
5087 if (height <= room + room_cmdline)
5088 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 if (run == 2 || curfrp->fr_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 {
5091 if (height > room + room_cmdline)
5092 height = room + room_cmdline;
5093 break;
5094 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 frame_setheight(curfrp->fr_parent, height
5096 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 }
5098
5099 /*
5100 * Compute the number of lines we will take from others frames (can be
5101 * negative!).
5102 */
5103 take = height - curfrp->fr_height;
5104
5105 /* If there is not enough room, also reduce the height of a window
5106 * with 'winfixheight' set. */
5107 if (height > room + room_cmdline - room_reserved)
5108 room_reserved = room + room_cmdline - height;
5109 /* If there is only a 'winfixheight' window and making the
5110 * window smaller, need to make the other window taller. */
5111 if (take < 0 && room - curfrp->fr_height < room_reserved)
5112 room_reserved = 0;
5113
5114 if (take > 0 && room_cmdline > 0)
5115 {
5116 /* use lines from cmdline first */
5117 if (take < room_cmdline)
5118 room_cmdline = take;
5119 take -= room_cmdline;
5120 topframe->fr_height += room_cmdline;
5121 }
5122
5123 /*
5124 * set the current frame to the new height
5125 */
5126 frame_new_height(curfrp, height, FALSE, FALSE);
5127
5128 /*
5129 * First take lines from the frames after the current frame. If
5130 * that is not enough, takes lines from frames above the current
5131 * frame.
5132 */
5133 for (run = 0; run < 2; ++run)
5134 {
5135 if (run == 0)
5136 frp = curfrp->fr_next; /* 1st run: start with next window */
5137 else
5138 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5139 while (frp != NULL && take != 0)
5140 {
5141 h = frame_minheight(frp, NULL);
5142 if (room_reserved > 0
5143 && frp->fr_win != NULL
5144 && frp->fr_win->w_p_wfh)
5145 {
5146 if (room_reserved >= frp->fr_height)
5147 room_reserved -= frp->fr_height;
5148 else
5149 {
5150 if (frp->fr_height - room_reserved > take)
5151 room_reserved = frp->fr_height - take;
5152 take -= frp->fr_height - room_reserved;
5153 frame_new_height(frp, room_reserved, FALSE, FALSE);
5154 room_reserved = 0;
5155 }
5156 }
5157 else
5158 {
5159 if (frp->fr_height - take < h)
5160 {
5161 take -= frp->fr_height - h;
5162 frame_new_height(frp, h, FALSE, FALSE);
5163 }
5164 else
5165 {
5166 frame_new_height(frp, frp->fr_height - take,
5167 FALSE, FALSE);
5168 take = 0;
5169 }
5170 }
5171 if (run == 0)
5172 frp = frp->fr_next;
5173 else
5174 frp = frp->fr_prev;
5175 }
5176 }
5177 }
5178}
5179
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180/*
5181 * Set current window width and take care of repositioning other windows to
5182 * fit around it.
5183 */
5184 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005185win_setwidth(int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186{
5187 win_setwidth_win(width, curwin);
5188}
5189
5190 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005191win_setwidth_win(int width, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192{
5193 /* Always keep current window at least one column wide, even when
5194 * 'winminwidth' is zero. */
5195 if (wp == curwin)
5196 {
5197 if (width < p_wmw)
5198 width = p_wmw;
5199 if (width == 0)
5200 width = 1;
5201 }
5202
5203 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5204
5205 /* recompute the window positions */
5206 (void)win_comp_pos();
5207
5208 redraw_all_later(NOT_VALID);
5209}
5210
5211/*
5212 * Set the width of a frame to "width" and take care that all frames and
5213 * windows inside it are resized. Also resize frames above and below if the
5214 * are in the same FR_ROW frame.
5215 *
5216 * Strategy is similar to frame_setheight().
5217 */
5218 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005219frame_setwidth(frame_T *curfrp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220{
5221 int room; /* total number of lines available */
5222 int take; /* number of lines taken from other windows */
5223 int run;
5224 frame_T *frp;
5225 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005226 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227
5228 /* If the width already is the desired value, nothing to do. */
5229 if (curfrp->fr_width == width)
5230 return;
5231
5232 if (curfrp->fr_parent == NULL)
5233 /* topframe: can't change width */
5234 return;
5235
5236 if (curfrp->fr_parent->fr_layout == FR_COL)
5237 {
5238 /* Column of frames: Also need to resize frames above and below of
5239 * this one. First check for the minimal width of these. */
5240 w = frame_minwidth(curfrp->fr_parent, NULL);
5241 if (width < w)
5242 width = w;
5243 frame_setwidth(curfrp->fr_parent, width);
5244 }
5245 else
5246 {
5247 /*
5248 * Row of frames: try to change only frames in this row.
5249 *
5250 * Do this twice:
5251 * 1: compute room available, if it's not enough try resizing the
5252 * containing frame.
5253 * 2: compute the room available and adjust the width to it.
5254 */
5255 for (run = 1; run <= 2; ++run)
5256 {
5257 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005258 room_reserved = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5260 frp = frp->fr_next)
5261 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005262 if (frp != curfrp
5263 && frp->fr_win != NULL
5264 && frp->fr_win->w_p_wfw)
5265 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 room += frp->fr_width;
5267 if (frp != curfrp)
5268 room -= frame_minwidth(frp, NULL);
5269 }
5270
5271 if (width <= room)
5272 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005273 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 {
5275 if (width > room)
5276 width = room;
5277 break;
5278 }
5279 frame_setwidth(curfrp->fr_parent, width
5280 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5281 }
5282
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 /*
5284 * Compute the number of lines we will take from others frames (can be
5285 * negative!).
5286 */
5287 take = width - curfrp->fr_width;
5288
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005289 /* If there is not enough room, also reduce the width of a window
5290 * with 'winfixwidth' set. */
5291 if (width > room - room_reserved)
5292 room_reserved = room - width;
5293 /* If there is only a 'winfixwidth' window and making the
5294 * window smaller, need to make the other window narrower. */
5295 if (take < 0 && room - curfrp->fr_width < room_reserved)
5296 room_reserved = 0;
5297
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 /*
5299 * set the current frame to the new width
5300 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005301 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302
5303 /*
5304 * First take lines from the frames right of the current frame. If
5305 * that is not enough, takes lines from frames left of the current
5306 * frame.
5307 */
5308 for (run = 0; run < 2; ++run)
5309 {
5310 if (run == 0)
5311 frp = curfrp->fr_next; /* 1st run: start with next window */
5312 else
5313 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5314 while (frp != NULL && take != 0)
5315 {
5316 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005317 if (room_reserved > 0
5318 && frp->fr_win != NULL
5319 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005321 if (room_reserved >= frp->fr_width)
5322 room_reserved -= frp->fr_width;
5323 else
5324 {
5325 if (frp->fr_width - room_reserved > take)
5326 room_reserved = frp->fr_width - take;
5327 take -= frp->fr_width - room_reserved;
5328 frame_new_width(frp, room_reserved, FALSE, FALSE);
5329 room_reserved = 0;
5330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 }
5332 else
5333 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005334 if (frp->fr_width - take < w)
5335 {
5336 take -= frp->fr_width - w;
5337 frame_new_width(frp, w, FALSE, FALSE);
5338 }
5339 else
5340 {
5341 frame_new_width(frp, frp->fr_width - take,
5342 FALSE, FALSE);
5343 take = 0;
5344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 }
5346 if (run == 0)
5347 frp = frp->fr_next;
5348 else
5349 frp = frp->fr_prev;
5350 }
5351 }
5352 }
5353}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354
5355/*
5356 * Check 'winminheight' for a valid value.
5357 */
5358 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005359win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360{
5361 int room;
5362 int first = TRUE;
5363 win_T *wp;
5364
5365 /* loop until there is a 'winminheight' that is possible */
5366 while (p_wmh > 0)
5367 {
5368 /* TODO: handle vertical splits */
5369 room = -p_wh;
5370 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5371 room += wp->w_height - p_wmh;
5372 if (room >= 0)
5373 break;
5374 --p_wmh;
5375 if (first)
5376 {
5377 EMSG(_(e_noroom));
5378 first = FALSE;
5379 }
5380 }
5381}
5382
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005383#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384
5385/*
5386 * Status line of dragwin is dragged "offset" lines down (negative is up).
5387 */
5388 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005389win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390{
5391 frame_T *curfr;
5392 frame_T *fr;
5393 int room;
5394 int row;
5395 int up; /* if TRUE, drag status line up, otherwise down */
5396 int n;
5397
5398 fr = dragwin->w_frame;
5399 curfr = fr;
5400 if (fr != topframe) /* more than one window */
5401 {
5402 fr = fr->fr_parent;
5403 /* When the parent frame is not a column of frames, its parent should
5404 * be. */
5405 if (fr->fr_layout != FR_COL)
5406 {
5407 curfr = fr;
5408 if (fr != topframe) /* only a row of windows, may drag statusline */
5409 fr = fr->fr_parent;
5410 }
5411 }
5412
5413 /* If this is the last frame in a column, may want to resize the parent
5414 * frame instead (go two up to skip a row of frames). */
5415 while (curfr != topframe && curfr->fr_next == NULL)
5416 {
5417 if (fr != topframe)
5418 fr = fr->fr_parent;
5419 curfr = fr;
5420 if (fr != topframe)
5421 fr = fr->fr_parent;
5422 }
5423
5424 if (offset < 0) /* drag up */
5425 {
5426 up = TRUE;
5427 offset = -offset;
5428 /* sum up the room of the current frame and above it */
5429 if (fr == curfr)
5430 {
5431 /* only one window */
5432 room = fr->fr_height - frame_minheight(fr, NULL);
5433 }
5434 else
5435 {
5436 room = 0;
5437 for (fr = fr->fr_child; ; fr = fr->fr_next)
5438 {
5439 room += fr->fr_height - frame_minheight(fr, NULL);
5440 if (fr == curfr)
5441 break;
5442 }
5443 }
5444 fr = curfr->fr_next; /* put fr at frame that grows */
5445 }
5446 else /* drag down */
5447 {
5448 up = FALSE;
5449 /*
5450 * Only dragging the last status line can reduce p_ch.
5451 */
5452 room = Rows - cmdline_row;
5453 if (curfr->fr_next == NULL)
5454 room -= 1;
5455 else
5456 room -= p_ch;
5457 if (room < 0)
5458 room = 0;
5459 /* sum up the room of frames below of the current one */
5460 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5461 room += fr->fr_height - frame_minheight(fr, NULL);
5462 fr = curfr; /* put fr at window that grows */
5463 }
5464
5465 if (room < offset) /* Not enough room */
5466 offset = room; /* Move as far as we can */
5467 if (offset <= 0)
5468 return;
5469
5470 /*
5471 * Grow frame fr by "offset" lines.
5472 * Doesn't happen when dragging the last status line up.
5473 */
5474 if (fr != NULL)
5475 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5476
5477 if (up)
5478 fr = curfr; /* current frame gets smaller */
5479 else
5480 fr = curfr->fr_next; /* next frame gets smaller */
5481
5482 /*
5483 * Now make the other frames smaller.
5484 */
5485 while (fr != NULL && offset > 0)
5486 {
5487 n = frame_minheight(fr, NULL);
5488 if (fr->fr_height - offset <= n)
5489 {
5490 offset -= fr->fr_height - n;
5491 frame_new_height(fr, n, !up, FALSE);
5492 }
5493 else
5494 {
5495 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5496 break;
5497 }
5498 if (up)
5499 fr = fr->fr_prev;
5500 else
5501 fr = fr->fr_next;
5502 }
5503 row = win_comp_pos();
5504 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5505 cmdline_row = row;
5506 p_ch = Rows - cmdline_row;
5507 if (p_ch < 1)
5508 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005509 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005510 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 showmode();
5512}
5513
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514/*
5515 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5516 */
5517 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005518win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519{
5520 frame_T *curfr;
5521 frame_T *fr;
5522 int room;
5523 int left; /* if TRUE, drag separator line left, otherwise right */
5524 int n;
5525
5526 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005527 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 return;
5529 curfr = fr;
5530 fr = fr->fr_parent;
5531 /* When the parent frame is not a row of frames, its parent should be. */
5532 if (fr->fr_layout != FR_ROW)
5533 {
5534 if (fr == topframe) /* only a column of windows (cannot happen?) */
5535 return;
5536 curfr = fr;
5537 fr = fr->fr_parent;
5538 }
5539
5540 /* If this is the last frame in a row, may want to resize a parent
5541 * frame instead. */
5542 while (curfr->fr_next == NULL)
5543 {
5544 if (fr == topframe)
5545 break;
5546 curfr = fr;
5547 fr = fr->fr_parent;
5548 if (fr != topframe)
5549 {
5550 curfr = fr;
5551 fr = fr->fr_parent;
5552 }
5553 }
5554
5555 if (offset < 0) /* drag left */
5556 {
5557 left = TRUE;
5558 offset = -offset;
5559 /* sum up the room of the current frame and left of it */
5560 room = 0;
5561 for (fr = fr->fr_child; ; fr = fr->fr_next)
5562 {
5563 room += fr->fr_width - frame_minwidth(fr, NULL);
5564 if (fr == curfr)
5565 break;
5566 }
5567 fr = curfr->fr_next; /* put fr at frame that grows */
5568 }
5569 else /* drag right */
5570 {
5571 left = FALSE;
5572 /* sum up the room of frames right of the current one */
5573 room = 0;
5574 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5575 room += fr->fr_width - frame_minwidth(fr, NULL);
5576 fr = curfr; /* put fr at window that grows */
5577 }
5578
5579 if (room < offset) /* Not enough room */
5580 offset = room; /* Move as far as we can */
5581 if (offset <= 0) /* No room at all, quit. */
5582 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005583 if (fr == NULL)
5584 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
5586 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005587 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588
5589 /* shrink other frames: current and at the left or at the right */
5590 if (left)
5591 fr = curfr; /* current frame gets smaller */
5592 else
5593 fr = curfr->fr_next; /* next frame gets smaller */
5594
5595 while (fr != NULL && offset > 0)
5596 {
5597 n = frame_minwidth(fr, NULL);
5598 if (fr->fr_width - offset <= n)
5599 {
5600 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005601 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 }
5603 else
5604 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005605 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 break;
5607 }
5608 if (left)
5609 fr = fr->fr_prev;
5610 else
5611 fr = fr->fr_next;
5612 }
5613 (void)win_comp_pos();
5614 redraw_all_later(NOT_VALID);
5615}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616#endif /* FEAT_MOUSE */
5617
5618#endif /* FEAT_WINDOWS */
5619
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005620#define FRACTION_MULT 16384L
5621
5622/*
5623 * Set wp->w_fraction for the current w_wrow and w_height.
5624 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005625 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005626set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005627{
5628 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005629 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005630}
5631
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632/*
5633 * Set the height of a window.
5634 * This takes care of the things inside the window, not what happens to the
5635 * window position, the frame or to other windows.
5636 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005637 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005638win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639{
5640 linenr_T lnum;
5641 int sline, line_size;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005642 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643
5644 /* Don't want a negative height. Happens when splitting a tiny window.
5645 * Will equalize heights soon to fix it. */
5646 if (height < 0)
5647 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005648 if (wp->w_height == height)
5649 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005651 if (wp->w_height > 0)
5652 {
5653 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005654 /* w_wrow needs to be valid. When setting 'laststatus' this may
5655 * call win_new_height() recursively. */
5656 validate_cursor();
5657 if (wp->w_height != prev_height)
5658 return; /* Recursive call already changed the size, bail out here
5659 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005660 if (wp->w_wrow != wp->w_prev_fraction_row)
5661 set_fraction(wp);
5662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663
5664 wp->w_height = height;
5665 wp->w_skipcol = 0;
5666
5667 /* Don't change w_topline when height is zero. Don't set w_topline when
5668 * 'scrollbind' is set and this isn't the current window. */
5669 if (height > 0
5670#ifdef FEAT_SCROLLBIND
5671 && (!wp->w_p_scb || wp == curwin)
5672#endif
5673 )
5674 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005675 /*
5676 * Find a value for w_topline that shows the cursor at the same
5677 * relative position in the window as before (more or less).
5678 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 lnum = wp->w_cursor.lnum;
5680 if (lnum < 1) /* can happen when starting up */
5681 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005682 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5683 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5685 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005686
5687 if (sline >= 0)
5688 {
5689 /* Make sure the whole cursor line is visible, if possible. */
5690 int rows = plines_win(wp, lnum, FALSE);
5691
5692 if (sline > wp->w_height - rows)
5693 {
5694 sline = wp->w_height - rows;
5695 wp->w_wrow -= rows - line_size;
5696 }
5697 }
5698
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 if (sline < 0)
5700 {
5701 /*
5702 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005703 * Make cursor line the first line in the window. If not enough
5704 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 */
5706 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005707 if (wp->w_wrow >= wp->w_height
5708 && (W_WIDTH(wp) - win_col_off(wp)) > 0)
5709 {
5710 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp);
5711 --wp->w_wrow;
5712 while (wp->w_wrow >= wp->w_height)
5713 {
5714 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp)
5715 + win_col_off2(wp);
5716 --wp->w_wrow;
5717 }
5718 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005719 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005721 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005723 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 {
5725#ifdef FEAT_FOLDING
5726 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5727 if (lnum == 1)
5728 {
5729 /* first line in buffer is folded */
5730 line_size = 1;
5731 --sline;
5732 break;
5733 }
5734#endif
5735 --lnum;
5736#ifdef FEAT_DIFF
5737 if (lnum == wp->w_topline)
5738 line_size = plines_win_nofill(wp, lnum, TRUE)
5739 + wp->w_topfill;
5740 else
5741#endif
5742 line_size = plines_win(wp, lnum, TRUE);
5743 sline -= line_size;
5744 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005745
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 if (sline < 0)
5747 {
5748 /*
5749 * Line we want at top would go off top of screen. Use next
5750 * line instead.
5751 */
5752#ifdef FEAT_FOLDING
5753 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5754#endif
5755 lnum++;
5756 wp->w_wrow -= line_size + sline;
5757 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005758 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 {
5760 /* First line of file reached, use that as topline. */
5761 lnum = 1;
5762 wp->w_wrow -= sline;
5763 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005764
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005765 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 }
5768
5769 if (wp == curwin)
5770 {
5771 if (p_so)
5772 update_topline();
5773 curs_columns(FALSE); /* validate w_wrow */
5774 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005775 if (prev_height > 0)
5776 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777
5778 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005779 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780#ifdef FEAT_WINDOWS
5781 wp->w_redr_status = TRUE;
5782#endif
5783 invalidate_botline_win(wp);
5784}
5785
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005786#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787/*
5788 * Set the width of a window.
5789 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005790 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005791win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792{
5793 wp->w_width = width;
5794 wp->w_lines_valid = 0;
5795 changed_line_abv_curs_win(wp);
5796 invalidate_botline_win(wp);
5797 if (wp == curwin)
5798 {
5799 update_topline();
5800 curs_columns(TRUE); /* validate w_wrow */
5801 }
5802 redraw_win_later(wp, NOT_VALID);
5803 wp->w_redr_status = TRUE;
5804}
5805#endif
5806
5807 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005808win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809{
5810 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5811 if (wp->w_p_scr == 0)
5812 wp->w_p_scr = 1;
5813}
5814
5815/*
5816 * command_height: called whenever p_ch has been changed
5817 */
5818 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005819command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820{
5821#ifdef FEAT_WINDOWS
5822 int h;
5823 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005824 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005826 /* Use the value of p_ch that we remembered. This is needed for when the
5827 * GUI starts up, we can't be sure in what order things happen. And when
5828 * p_ch was changed in another tab page. */
5829 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005830
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 /* Find bottom frame with width of screen. */
5832 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5834 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835
5836 /* Avoid changing the height of a window with 'winfixheight' set. */
5837 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5838 && frp->fr_win->w_p_wfh)
5839 frp = frp->fr_prev;
5840
5841 if (starting != NO_SCREEN)
5842 {
5843 cmdline_row = Rows - p_ch;
5844
5845 if (p_ch > old_p_ch) /* p_ch got bigger */
5846 {
5847 while (p_ch > old_p_ch)
5848 {
5849 if (frp == NULL)
5850 {
5851 EMSG(_(e_noroom));
5852 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005853 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 cmdline_row = Rows - p_ch;
5855 break;
5856 }
5857 h = frp->fr_height - frame_minheight(frp, NULL);
5858 if (h > p_ch - old_p_ch)
5859 h = p_ch - old_p_ch;
5860 old_p_ch += h;
5861 frame_add_height(frp, -h);
5862 frp = frp->fr_prev;
5863 }
5864
5865 /* Recompute window positions. */
5866 (void)win_comp_pos();
5867
5868 /* clear the lines added to cmdline */
5869 if (full_screen)
5870 screen_fill((int)(cmdline_row), (int)Rows, 0,
5871 (int)Columns, ' ', ' ', 0);
5872 msg_row = cmdline_row;
5873 redraw_cmdline = TRUE;
5874 return;
5875 }
5876
5877 if (msg_row < cmdline_row)
5878 msg_row = cmdline_row;
5879 redraw_cmdline = TRUE;
5880 }
5881 frame_add_height(frp, (int)(old_p_ch - p_ch));
5882
5883 /* Recompute window positions. */
5884 if (frp != lastwin->w_frame)
5885 (void)win_comp_pos();
5886#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 cmdline_row = Rows - p_ch;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005888 win_setheight(cmdline_row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889#endif
5890}
5891
5892#if defined(FEAT_WINDOWS) || defined(PROTO)
5893/*
5894 * Resize frame "frp" to be "n" lines higher (negative for less high).
5895 * Also resize the frames it is contained in.
5896 */
5897 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005898frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899{
5900 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5901 for (;;)
5902 {
5903 frp = frp->fr_parent;
5904 if (frp == NULL)
5905 break;
5906 frp->fr_height += n;
5907 }
5908}
5909
5910/*
5911 * Add or remove a status line for the bottom window(s), according to the
5912 * value of 'laststatus'.
5913 */
5914 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005915last_status(
5916 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917{
5918 /* Don't make a difference between horizontal or vertical split. */
5919 last_status_rec(topframe, (p_ls == 2
5920 || (p_ls == 1 && (morewin || lastwin != firstwin))));
5921}
5922
5923 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005924last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925{
5926 frame_T *fp;
5927 win_T *wp;
5928
5929 if (fr->fr_layout == FR_LEAF)
5930 {
5931 wp = fr->fr_win;
5932 if (wp->w_status_height != 0 && !statusline)
5933 {
5934 /* remove status line */
5935 win_new_height(wp, wp->w_height + 1);
5936 wp->w_status_height = 0;
5937 comp_col();
5938 }
5939 else if (wp->w_status_height == 0 && statusline)
5940 {
5941 /* Find a frame to take a line from. */
5942 fp = fr;
5943 while (fp->fr_height <= frame_minheight(fp, NULL))
5944 {
5945 if (fp == topframe)
5946 {
5947 EMSG(_(e_noroom));
5948 return;
5949 }
5950 /* In a column of frames: go to frame above. If already at
5951 * the top or in a row of frames: go to parent. */
5952 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
5953 fp = fp->fr_prev;
5954 else
5955 fp = fp->fr_parent;
5956 }
5957 wp->w_status_height = 1;
5958 if (fp != fr)
5959 {
5960 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
5961 frame_fix_height(wp);
5962 (void)win_comp_pos();
5963 }
5964 else
5965 win_new_height(wp, wp->w_height - 1);
5966 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005967 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 }
5969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 else if (fr->fr_layout == FR_ROW)
5971 {
5972 /* vertically split windows, set status line for each one */
5973 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
5974 last_status_rec(fp, statusline);
5975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 else
5977 {
5978 /* horizontally split window, set status line for last one */
5979 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
5980 ;
5981 last_status_rec(fp, statusline);
5982 }
5983}
5984
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005985/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005986 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005987 */
5988 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005989tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005990{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005991#ifdef FEAT_GUI_TABLINE
5992 /* When the GUI has the tabline then this always returns zero. */
5993 if (gui_use_tabline())
5994 return 0;
5995#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005996 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005997 {
5998 case 0: return 0;
5999 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6000 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006001 return 1;
6002}
6003
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004#endif /* FEAT_WINDOWS */
6005
6006#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6007/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006008 * Get the file name at the cursor.
6009 * If Visual mode is active, use the selected text if it's in one line.
6010 * Returns the name in allocated memory, NULL for failure.
6011 */
6012 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006013grab_file_name(long count, linenr_T *file_lnum)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006014{
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006015 int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC;
6016
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006017 if (VIsual_active)
6018 {
6019 int len;
6020 char_u *ptr;
6021
6022 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6023 return NULL;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006024 return find_file_name_in_path(ptr, len, options,
6025 count, curbuf->b_ffname);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006026 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006027 return file_name_at_cursor(options | FNAME_HYP, count, file_lnum);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006028
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006029}
6030
6031/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 * Return the file name under or after the cursor.
6033 *
6034 * The 'path' option is searched if the file name is not absolute.
6035 * The string returned has been alloc'ed and should be freed by the caller.
6036 * NULL is returned if the file name or file is not found.
6037 *
6038 * options:
6039 * FNAME_MESS give error messages
6040 * FNAME_EXP expand to path
6041 * FNAME_HYP check for hypertext link
6042 * FNAME_INCL apply "includeexpr"
6043 */
6044 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006045file_name_at_cursor(int options, long count, linenr_T *file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046{
6047 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006048 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6049 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050}
6051
6052/*
6053 * Return the name of the file under or after ptr[col].
6054 * Otherwise like file_name_at_cursor().
6055 */
6056 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006057file_name_in_line(
6058 char_u *line,
6059 int col,
6060 int options,
6061 long count,
6062 char_u *rel_fname, /* file we are searching relative to */
6063 linenr_T *file_lnum) /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064{
6065 char_u *ptr;
6066 int len;
6067
6068 /*
6069 * search forward for what could be the start of a file name
6070 */
6071 ptr = line + col;
6072 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar0dd492f2005-06-22 22:25:07 +00006073 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 if (*ptr == NUL) /* nothing found */
6075 {
6076 if (options & FNAME_MESS)
6077 EMSG(_("E446: No file name under cursor"));
6078 return NULL;
6079 }
6080
6081 /*
6082 * Search backward for first char of the file name.
6083 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6084 */
6085 while (ptr > line)
6086 {
6087#ifdef FEAT_MBYTE
6088 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6089 ptr -= len + 1;
6090 else
6091#endif
6092 if (vim_isfilec(ptr[-1])
6093 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6094 --ptr;
6095 else
6096 break;
6097 }
6098
6099 /*
6100 * Search forward for the last char of the file name.
6101 * Also allow "://" when ':' is not in 'isfname'.
6102 */
6103 len = 0;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006104 while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105 || ((options & FNAME_HYP) && path_is_url(ptr + len)))
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006106 {
6107 if (ptr[len] == '\\')
6108 /* Skip over the "\" in "\ ". */
6109 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110#ifdef FEAT_MBYTE
6111 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006112 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 else
6114#endif
6115 ++len;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117
6118 /*
6119 * If there is trailing punctuation, remove it.
6120 * But don't remove "..", could be a directory name.
6121 */
6122 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6123 && ptr[len - 2] != '.')
6124 --len;
6125
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006126 if (file_lnum != NULL)
6127 {
6128 char_u *p;
6129
6130 /* Get the number after the file name and a separator character */
6131 p = ptr + len;
6132 p = skipwhite(p);
6133 if (*p != NUL)
6134 {
6135 if (!isdigit(*p))
6136 ++p; /* skip the separator */
6137 p = skipwhite(p);
6138 if (isdigit(*p))
6139 *file_lnum = (int)getdigits(&p);
6140 }
6141 }
6142
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6144}
6145
6146# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006147static char_u *eval_includeexpr(char_u *ptr, int len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148
6149 static char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006150eval_includeexpr(char_u *ptr, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151{
6152 char_u *res;
6153
6154 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006155 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006156 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 set_vim_var_string(VV_FNAME, NULL, 0);
6158 return res;
6159}
6160#endif
6161
6162/*
6163 * Return the name of the file ptr[len] in 'path'.
6164 * Otherwise like file_name_at_cursor().
6165 */
6166 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006167find_file_name_in_path(
6168 char_u *ptr,
6169 int len,
6170 int options,
6171 long count,
6172 char_u *rel_fname) /* file we are searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173{
6174 char_u *file_name;
6175 int c;
6176# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6177 char_u *tofree = NULL;
6178
6179 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6180 {
6181 tofree = eval_includeexpr(ptr, len);
6182 if (tofree != NULL)
6183 {
6184 ptr = tofree;
6185 len = (int)STRLEN(ptr);
6186 }
6187 }
6188# endif
6189
6190 if (options & FNAME_EXP)
6191 {
6192 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6193 TRUE, rel_fname);
6194
6195# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6196 /*
6197 * If the file could not be found in a normal way, try applying
6198 * 'includeexpr' (unless done already).
6199 */
6200 if (file_name == NULL
6201 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6202 {
6203 tofree = eval_includeexpr(ptr, len);
6204 if (tofree != NULL)
6205 {
6206 ptr = tofree;
6207 len = (int)STRLEN(ptr);
6208 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6209 TRUE, rel_fname);
6210 }
6211 }
6212# endif
6213 if (file_name == NULL && (options & FNAME_MESS))
6214 {
6215 c = ptr[len];
6216 ptr[len] = NUL;
6217 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6218 ptr[len] = c;
6219 }
6220
6221 /* Repeat finding the file "count" times. This matters when it
6222 * appears several times in the path. */
6223 while (file_name != NULL && --count > 0)
6224 {
6225 vim_free(file_name);
6226 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6227 }
6228 }
6229 else
6230 file_name = vim_strnsave(ptr, len);
6231
6232# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6233 vim_free(tofree);
6234# endif
6235
6236 return file_name;
6237}
6238#endif /* FEAT_SEARCHPATH */
6239
6240/*
6241 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6242 * Also check for ":\\", which MS Internet Explorer accepts, return
6243 * URL_BACKSLASH.
6244 */
6245 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006246path_is_url(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247{
6248 if (STRNCMP(p, "://", (size_t)3) == 0)
6249 return URL_SLASH;
6250 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6251 return URL_BACKSLASH;
6252 return 0;
6253}
6254
6255/*
6256 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6257 * Return URL_BACKSLASH for "name:\\".
6258 * Return zero otherwise.
6259 */
6260 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006261path_with_url(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262{
6263 char_u *p;
6264
6265 for (p = fname; isalpha(*p); ++p)
6266 ;
6267 return path_is_url(p);
6268}
6269
6270/*
6271 * Return TRUE if "name" is a full (absolute) path name or URL.
6272 */
6273 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006274vim_isAbsName(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275{
6276 return (path_with_url(name) != 0 || mch_isFullName(name));
6277}
6278
6279/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006280 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 *
6282 * return FAIL for failure, OK otherwise
6283 */
6284 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006285vim_FullName(
6286 char_u *fname,
6287 char_u *buf,
6288 int len,
6289 int force) /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290{
6291 int retval = OK;
6292 int url;
6293
6294 *buf = NUL;
6295 if (fname == NULL)
6296 return FAIL;
6297
6298 url = path_with_url(fname);
6299 if (!url)
6300 retval = mch_FullName(fname, buf, len, force);
6301 if (url || retval == FAIL)
6302 {
6303 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006304 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006306#if defined(MACOS_CLASSIC) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 slash_adjust(buf);
6308#endif
6309 return retval;
6310}
6311
6312/*
6313 * Return the minimal number of rows that is needed on the screen to display
6314 * the current number of windows.
6315 */
6316 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006317min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318{
6319 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006320#ifdef FEAT_WINDOWS
6321 tabpage_T *tp;
6322 int n;
6323#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324
6325 if (firstwin == NULL) /* not initialized yet */
6326 return MIN_LINES;
6327
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006329 total = 0;
6330 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6331 {
6332 n = frame_minheight(tp->tp_topframe, NULL);
6333 if (total < n)
6334 total = n;
6335 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006336 total += tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337#else
Bram Moolenaarf740b292006-02-16 22:11:02 +00006338 total = 1; /* at least one window should have a line! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006340 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 return total;
6342}
6343
6344/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006345 * Return TRUE if there is only one window (in the current tab page), not
6346 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006347 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348 */
6349 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006350only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351{
6352#ifdef FEAT_WINDOWS
6353 int count = 0;
6354 win_T *wp;
6355
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006356 /* If there is another tab page there always is another window. */
6357 if (first_tabpage->tp_next != NULL)
6358 return FALSE;
6359
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360 for (wp = firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006361 if (wp->w_buffer != NULL
6362 && (!((wp->w_buffer->b_help && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363# ifdef FEAT_QUICKFIX
6364 || wp->w_p_pvw
6365# endif
6366 ) || wp == curwin)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006367# ifdef FEAT_AUTOCMD
6368 && wp != aucmd_win
6369# endif
6370 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 ++count;
6372 return (count <= 1);
6373#else
6374 return TRUE;
6375#endif
6376}
6377
6378#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO)
6379/*
6380 * Correct the cursor line number in other windows. Used after changing the
6381 * current buffer, and before applying autocommands.
6382 * When "do_curwin" is TRUE, also check current window.
6383 */
6384 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006385check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386{
6387 win_T *wp;
6388
6389#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006390 tabpage_T *tp;
6391
6392 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
6394#else
6395 wp = curwin;
6396 if (do_curwin)
6397#endif
6398 {
6399 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6400 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6401 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6402 wp->w_topline = curbuf->b_ml.ml_line_count;
6403 }
6404}
6405#endif
6406
6407#if defined(FEAT_WINDOWS) || defined(PROTO)
6408
6409/*
6410 * A snapshot of the window sizes, to restore them after closing the help
6411 * window.
6412 * Only these fields are used:
6413 * fr_layout
6414 * fr_width
6415 * fr_height
6416 * fr_next
6417 * fr_child
6418 * fr_win (only valid for the old curwin, NULL otherwise)
6419 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420
6421/*
6422 * Create a snapshot of the current frame sizes.
6423 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006424 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006425make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006427 clear_snapshot(curtab, idx);
6428 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429}
6430
6431 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006432make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433{
6434 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6435 if (*frp == NULL)
6436 return;
6437 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 (*frp)->fr_height = fr->fr_height;
6440 if (fr->fr_next != NULL)
6441 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6442 if (fr->fr_child != NULL)
6443 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6444 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6445 (*frp)->fr_win = curwin;
6446}
6447
6448/*
6449 * Remove any existing snapshot.
6450 */
6451 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006452clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006454 clear_snapshot_rec(tp->tp_snapshot[idx]);
6455 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456}
6457
6458 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006459clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460{
6461 if (fr != NULL)
6462 {
6463 clear_snapshot_rec(fr->fr_next);
6464 clear_snapshot_rec(fr->fr_child);
6465 vim_free(fr);
6466 }
6467}
6468
6469/*
6470 * Restore a previously created snapshot, if there is any.
6471 * This is only done if the screen size didn't change and the window layout is
6472 * still the same.
6473 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006474 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006475restore_snapshot(
6476 int idx,
6477 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478{
6479 win_T *wp;
6480
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006481 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006482 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006483 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6484 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006486 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 win_comp_pos();
6488 if (wp != NULL && close_curwin)
6489 win_goto(wp);
6490 redraw_all_later(CLEAR);
6491 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006492 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493}
6494
6495/*
6496 * Check if frames "sn" and "fr" have the same layout, same following frames
6497 * and same children.
6498 */
6499 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006500check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501{
6502 if (sn->fr_layout != fr->fr_layout
6503 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6504 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6505 || (sn->fr_next != NULL
6506 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6507 || (sn->fr_child != NULL
6508 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL))
6509 return FAIL;
6510 return OK;
6511}
6512
6513/*
6514 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6515 * following frames and children.
6516 * Returns a pointer to the old current window, or NULL.
6517 */
6518 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006519restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520{
6521 win_T *wp = NULL;
6522 win_T *wp2;
6523
6524 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 if (fr->fr_layout == FR_LEAF)
6527 {
6528 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006529 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 wp = sn->fr_win;
6531 }
6532 if (sn->fr_next != NULL)
6533 {
6534 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6535 if (wp2 != NULL)
6536 wp = wp2;
6537 }
6538 if (sn->fr_child != NULL)
6539 {
6540 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6541 if (wp2 != NULL)
6542 wp = wp2;
6543 }
6544 return wp;
6545}
6546
6547#endif
6548
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006549#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6550 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006551/*
6552 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006553 * restore_win() MUST be called to undo, also when FAIL is returned.
6554 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006555 * When "no_display" is TRUE the display won't be affected, no redraw is
6556 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006557 * Returns FAIL if switching to "win" failed.
6558 */
6559 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006560switch_win(
6561 win_T **save_curwin UNUSED,
6562 tabpage_T **save_curtab UNUSED,
6563 win_T *win UNUSED,
6564 tabpage_T *tp UNUSED,
6565 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006566{
6567# ifdef FEAT_AUTOCMD
6568 block_autocmds();
6569# endif
6570# ifdef FEAT_WINDOWS
6571 *save_curwin = curwin;
6572 if (tp != NULL)
6573 {
6574 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006575 if (no_display)
6576 {
6577 curtab->tp_firstwin = firstwin;
6578 curtab->tp_lastwin = lastwin;
6579 curtab = tp;
6580 firstwin = curtab->tp_firstwin;
6581 lastwin = curtab->tp_lastwin;
6582 }
6583 else
6584 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006585 }
6586 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006587 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006588 curwin = win;
6589 curbuf = curwin->w_buffer;
6590# endif
6591 return OK;
6592}
6593
6594/*
6595 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006596 * When "no_display" is TRUE the display won't be affected, no redraw is
6597 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006598 */
6599 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006600restore_win(
6601 win_T *save_curwin UNUSED,
6602 tabpage_T *save_curtab UNUSED,
6603 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006604{
6605# ifdef FEAT_WINDOWS
6606 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006607 {
6608 if (no_display)
6609 {
6610 curtab->tp_firstwin = firstwin;
6611 curtab->tp_lastwin = lastwin;
6612 curtab = save_curtab;
6613 firstwin = curtab->tp_firstwin;
6614 lastwin = curtab->tp_lastwin;
6615 }
6616 else
6617 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6618 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006619 if (win_valid(save_curwin))
6620 {
6621 curwin = save_curwin;
6622 curbuf = curwin->w_buffer;
6623 }
6624# endif
6625# ifdef FEAT_AUTOCMD
6626 unblock_autocmds();
6627# endif
6628}
6629
6630/*
6631 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6632 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6633 */
6634 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006635switch_buffer(buf_T **save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006636{
6637# ifdef FEAT_AUTOCMD
6638 block_autocmds();
6639# endif
6640 *save_curbuf = curbuf;
6641 --curbuf->b_nwindows;
6642 curbuf = buf;
6643 curwin->w_buffer = buf;
6644 ++curbuf->b_nwindows;
6645}
6646
6647/*
6648 * Restore the current buffer after using switch_buffer().
6649 */
6650 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006651restore_buffer(buf_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006652{
6653# ifdef FEAT_AUTOCMD
6654 unblock_autocmds();
6655# endif
6656 /* Check for valid buffer, just in case. */
6657 if (buf_valid(save_curbuf))
6658 {
6659 --curbuf->b_nwindows;
6660 curwin->w_buffer = save_curbuf;
6661 curbuf = save_curbuf;
6662 ++curbuf->b_nwindows;
6663 }
6664}
6665#endif
6666
Bram Moolenaar44a2f922016-03-19 22:11:51 +01006667#if (defined(FEAT_GUI) && defined(FEAT_WINDOWS)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668/*
6669 * Return TRUE if there is any vertically split window.
6670 */
6671 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006672win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673{
6674 frame_T *fr;
6675
6676 if (topframe->fr_layout == FR_ROW)
6677 return TRUE;
6678
6679 if (topframe->fr_layout == FR_COL)
6680 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6681 if (fr->fr_layout == FR_ROW)
6682 return TRUE;
6683
6684 return FALSE;
6685}
6686#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006687
6688#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6689/*
6690 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006691 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006692 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6693 * If no particular ID is desired, -1 must be specified for 'id'.
6694 * Return ID of added match, -1 on failure.
6695 */
6696 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006697match_add(
6698 win_T *wp,
6699 char_u *grp,
6700 char_u *pat,
6701 int prio,
6702 int id,
6703 list_T *pos_list,
6704 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006705{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006706 matchitem_T *cur;
6707 matchitem_T *prev;
6708 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006709 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006710 regprog_T *regprog = NULL;
6711 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006712
Bram Moolenaarb3414592014-06-17 17:48:32 +02006713 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006714 return -1;
6715 if (id < -1 || id == 0)
6716 {
6717 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id);
6718 return -1;
6719 }
6720 if (id != -1)
6721 {
6722 cur = wp->w_match_head;
6723 while (cur != NULL)
6724 {
6725 if (cur->id == id)
6726 {
6727 EMSGN("E801: ID already taken: %ld", id);
6728 return -1;
6729 }
6730 cur = cur->next;
6731 }
6732 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006733 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006734 {
6735 EMSG2(_(e_nogroup), grp);
6736 return -1;
6737 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006738 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006739 {
6740 EMSG2(_(e_invarg2), pat);
6741 return -1;
6742 }
6743
6744 /* Find available match ID. */
6745 while (id == -1)
6746 {
6747 cur = wp->w_match_head;
6748 while (cur != NULL && cur->id != wp->w_next_match_id)
6749 cur = cur->next;
6750 if (cur == NULL)
6751 id = wp->w_next_match_id;
6752 wp->w_next_match_id++;
6753 }
6754
6755 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006756 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006757 m->id = id;
6758 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006759 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006760 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006761 m->match.regprog = regprog;
6762 m->match.rmm_ic = FALSE;
6763 m->match.rmm_maxcol = 0;
Bram Moolenaar42356152016-03-31 22:27:40 +02006764# if defined(FEAT_CONCEAL) && defined(FEAT_MBYTE)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006765 m->conceal_char = 0;
6766 if (conceal_char != NULL)
6767 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006768# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006769
Bram Moolenaarb3414592014-06-17 17:48:32 +02006770 /* Set up position matches */
6771 if (pos_list != NULL)
6772 {
6773 linenr_T toplnum = 0;
6774 linenr_T botlnum = 0;
6775 listitem_T *li;
6776 int i;
6777
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006778 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006779 i++, li = li->li_next)
6780 {
6781 linenr_T lnum = 0;
6782 colnr_T col = 0;
6783 int len = 1;
6784 list_T *subl;
6785 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006786 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006787
Bram Moolenaarb3414592014-06-17 17:48:32 +02006788 if (li->li_tv.v_type == VAR_LIST)
6789 {
6790 subl = li->li_tv.vval.v_list;
6791 if (subl == NULL)
6792 goto fail;
6793 subli = subl->lv_first;
6794 if (subli == NULL)
6795 goto fail;
6796 lnum = get_tv_number_chk(&subli->li_tv, &error);
6797 if (error == TRUE)
6798 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006799 if (lnum == 0)
6800 {
6801 --i;
6802 continue;
6803 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006804 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006805 subli = subli->li_next;
6806 if (subli != NULL)
6807 {
6808 col = get_tv_number_chk(&subli->li_tv, &error);
6809 if (error == TRUE)
6810 goto fail;
6811 subli = subli->li_next;
6812 if (subli != NULL)
6813 {
6814 len = get_tv_number_chk(&subli->li_tv, &error);
6815 if (error == TRUE)
6816 goto fail;
6817 }
6818 }
6819 m->pos.pos[i].col = col;
6820 m->pos.pos[i].len = len;
6821 }
6822 else if (li->li_tv.v_type == VAR_NUMBER)
6823 {
6824 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006825 {
6826 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006827 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006828 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006829 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6830 m->pos.pos[i].col = 0;
6831 m->pos.pos[i].len = 0;
6832 }
6833 else
6834 {
6835 EMSG(_("List or number required"));
6836 goto fail;
6837 }
6838 if (toplnum == 0 || lnum < toplnum)
6839 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006840 if (botlnum == 0 || lnum >= botlnum)
6841 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006842 }
6843
6844 /* Calculate top and bottom lines for redrawing area */
6845 if (toplnum != 0)
6846 {
6847 if (wp->w_buffer->b_mod_set)
6848 {
6849 if (wp->w_buffer->b_mod_top > toplnum)
6850 wp->w_buffer->b_mod_top = toplnum;
6851 if (wp->w_buffer->b_mod_bot < botlnum)
6852 wp->w_buffer->b_mod_bot = botlnum;
6853 }
6854 else
6855 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006856 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006857 wp->w_buffer->b_mod_top = toplnum;
6858 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006859 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006860 }
6861 m->pos.toplnum = toplnum;
6862 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006863 rtype = VALID;
6864 }
6865 }
6866
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006867 /* Insert new match. The match list is in ascending order with regard to
6868 * the match priorities. */
6869 cur = wp->w_match_head;
6870 prev = cur;
6871 while (cur != NULL && prio >= cur->priority)
6872 {
6873 prev = cur;
6874 cur = cur->next;
6875 }
6876 if (cur == prev)
6877 wp->w_match_head = m;
6878 else
6879 prev->next = m;
6880 m->next = cur;
6881
Bram Moolenaarb3414592014-06-17 17:48:32 +02006882 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006883 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006884
6885fail:
6886 vim_free(m);
6887 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006888}
6889
6890/*
6891 * Delete match with ID 'id' in the match list of window 'wp'.
6892 * Print error messages if 'perr' is TRUE.
6893 */
6894 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006895match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006896{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006897 matchitem_T *cur = wp->w_match_head;
6898 matchitem_T *prev = cur;
6899 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006900
6901 if (id < 1)
6902 {
6903 if (perr == TRUE)
6904 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)",
6905 id);
6906 return -1;
6907 }
6908 while (cur != NULL && cur->id != id)
6909 {
6910 prev = cur;
6911 cur = cur->next;
6912 }
6913 if (cur == NULL)
6914 {
6915 if (perr == TRUE)
6916 EMSGN("E803: ID not found: %ld", id);
6917 return -1;
6918 }
6919 if (cur == prev)
6920 wp->w_match_head = cur->next;
6921 else
6922 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006923 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006924 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006925 if (cur->pos.toplnum != 0)
6926 {
6927 if (wp->w_buffer->b_mod_set)
6928 {
6929 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6930 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6931 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
6932 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
6933 }
6934 else
6935 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006936 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006937 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6938 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006939 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006940 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006941 rtype = VALID;
6942 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006943 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006944 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006945 return 0;
6946}
6947
6948/*
6949 * Delete all matches in the match list of window 'wp'.
6950 */
6951 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006952clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006953{
6954 matchitem_T *m;
6955
6956 while (wp->w_match_head != NULL)
6957 {
6958 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006959 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006960 vim_free(wp->w_match_head->pattern);
6961 vim_free(wp->w_match_head);
6962 wp->w_match_head = m;
6963 }
6964 redraw_later(SOME_VALID);
6965}
6966
6967/*
6968 * Get match from ID 'id' in window 'wp'.
6969 * Return NULL if match not found.
6970 */
6971 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006972get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006973{
6974 matchitem_T *cur = wp->w_match_head;
6975
6976 while (cur != NULL && cur->id != id)
6977 cur = cur->next;
6978 return cur;
6979}
6980#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02006981
6982#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
6983 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006984get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02006985{
6986 int i = 1;
6987 win_T *w;
6988
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006989 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02006990 ++i;
6991
6992 if (w == NULL)
6993 return 0;
6994 else
6995 return i;
6996}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006997
6998 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02006999get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007000{
7001 int i = 1;
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007002# ifdef FEAT_WINDOWS
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007003 tabpage_T *t;
7004
7005 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7006 ++i;
7007
7008 if (t == NULL)
7009 return 0;
7010 else
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007011# endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007012 return i;
7013}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007014#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007015
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01007016#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007017/*
7018 * Return TRUE if "topfrp" and its children are at the right height.
7019 */
7020 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007021frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007022{
7023 frame_T *frp;
7024
7025 if (topfrp->fr_height != height)
7026 return FALSE;
7027
7028 if (topfrp->fr_layout == FR_ROW)
7029 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7030 if (frp->fr_height != height)
7031 return FALSE;
7032
7033 return TRUE;
7034}
Bram Moolenaarf0327f62013-06-28 20:16:55 +02007035#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007036
Bram Moolenaar44a2f922016-03-19 22:11:51 +01007037#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007038/*
7039 * Return TRUE if "topfrp" and its children are at the right width.
7040 */
7041 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007042frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007043{
7044 frame_T *frp;
7045
7046 if (topfrp->fr_width != width)
7047 return FALSE;
7048
7049 if (topfrp->fr_layout == FR_COL)
7050 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7051 if (frp->fr_width != width)
7052 return FALSE;
7053
7054 return TRUE;
7055}
7056#endif
7057
Bram Moolenaar86edef62016-03-13 18:07:30 +01007058#if defined(FEAT_EVAL) || defined(PROTO)
7059 int
7060win_getid(typval_T *argvars)
7061{
7062 int winnr;
7063 win_T *wp;
7064
7065 if (argvars[0].v_type == VAR_UNKNOWN)
7066 return curwin->w_id;
7067 winnr = get_tv_number(&argvars[0]);
7068 if (winnr > 0)
7069 {
7070 if (argvars[1].v_type == VAR_UNKNOWN)
7071 wp = firstwin;
7072 else
7073 {
7074 tabpage_T *tp;
7075 int tabnr = get_tv_number(&argvars[1]);
7076
7077 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7078 if (--tabnr == 0)
7079 break;
7080 if (tp == NULL)
7081 return -1;
7082 wp = tp->tp_firstwin;
7083 }
7084 for ( ; wp != NULL; wp = wp->w_next)
7085 if (--winnr == 0)
7086 return wp->w_id;
7087 }
7088 return 0;
7089}
7090
7091 int
7092win_gotoid(typval_T *argvars)
7093{
7094 win_T *wp;
7095 tabpage_T *tp;
7096 int id = get_tv_number(&argvars[0]);
7097
7098 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7099 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7100 wp != NULL; wp = wp->w_next)
7101 if (wp->w_id == id)
7102 {
7103 goto_tabpage_win(tp, wp);
7104 return 1;
7105 }
7106 return 0;
7107}
7108
7109 void
7110win_id2tabwin(typval_T *argvars, list_T *list)
7111{
7112 win_T *wp;
7113 tabpage_T *tp;
7114 int winnr = 1;
7115 int tabnr = 1;
7116 int id = get_tv_number(&argvars[0]);
7117
7118 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7119 {
7120 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7121 wp != NULL; wp = wp->w_next)
7122 {
7123 if (wp->w_id == id)
7124 {
7125 list_append_number(list, tabnr);
7126 list_append_number(list, winnr);
7127 return;
7128 }
7129 ++winnr;
7130 }
7131 ++tabnr;
7132 winnr = 1;
7133 }
7134 list_append_number(list, 0);
7135 list_append_number(list, 0);
7136}
7137
7138 int
7139win_id2win(typval_T *argvars)
7140{
7141 win_T *wp;
7142 int nr = 1;
7143 int id = get_tv_number(&argvars[0]);
7144
7145 for (wp = firstwin; wp != NULL; wp = wp->w_next)
7146 {
7147 if (wp->w_id == id)
7148 return nr;
7149 ++nr;
7150 }
7151 return 0;
7152}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007153
7154 void
7155win_findbuf(typval_T *argvars, list_T *list)
7156{
7157 win_T *wp;
7158 tabpage_T *tp;
7159 int bufnr = get_tv_number(&argvars[0]);
7160
7161 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7162 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7163 wp != NULL; wp = wp->w_next)
7164 if (wp->w_buffer->b_fnum == bufnr)
7165 list_append_number(list, wp->w_id);
7166}
7167
Bram Moolenaar86edef62016-03-13 18:07:30 +01007168#endif