blob: b9e75d6dfcfad3a9147595597012061996f8a773 [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 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002343 bufref_T bufref;
2344
2345 set_bufref(&bufref, curbuf);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002346#ifdef FEAT_AUTOCMD
2347 win->w_closing = TRUE;
2348#endif
Bram Moolenaar8f913992012-08-29 15:50:26 +02002349 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaar362ce482012-06-06 19:02:45 +02002350#ifdef FEAT_AUTOCMD
2351 if (win_valid(win))
2352 win->w_closing = FALSE;
2353#endif
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002354 /* Make sure curbuf is valid. It can become invalid if 'bufhidden' is
2355 * "wipe". */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002356 if (!bufref_valid(&bufref))
Bram Moolenaar62ef7972016-01-19 14:51:54 +01002357 curbuf = firstbuf;
Bram Moolenaar362ce482012-06-06 19:02:45 +02002358 }
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002359
Bram Moolenaar802418d2013-01-17 14:00:11 +01002360 if (only_one_window() && win_valid(win) && win->w_buffer == NULL
2361 && (last_window() || curtab != prev_curtab
2362 || close_last_window_tabpage(win, free_buf, prev_curtab)))
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002363 {
2364 /* Autocommands have close all windows, quit now. Restore
2365 * curwin->w_buffer, otherwise writing viminfo may fail. */
2366 if (curwin->w_buffer == NULL)
2367 curwin->w_buffer = curbuf;
Bram Moolenaar802418d2013-01-17 14:00:11 +01002368 getout(0);
Bram Moolenaar2b90ed22013-07-24 16:02:36 +02002369 }
Bram Moolenaar802418d2013-01-17 14:00:11 +01002370
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 /* Autocommands may have closed the window already, or closed the only
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002372 * other window or moved to another tab page. */
Bram Moolenaar802418d2013-01-17 14:00:11 +01002373 else if (!win_valid(win) || last_window() || curtab != prev_curtab
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002374 || close_last_window_tabpage(win, free_buf, prev_curtab))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002375 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
Bram Moolenaara971b822011-09-14 14:43:25 +02002377 /* Free the memory used for the window and get the window that received
2378 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002379 wp = win_free_mem(win, &dir, NULL);
2380
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 /* Make sure curwin isn't invalid. It can cause severe trouble when
2382 * printing an error message. For win_equal() curbuf needs to be valid
2383 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002384 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 {
2386 curwin = wp;
2387#ifdef FEAT_QUICKFIX
2388 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2389 {
2390 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002391 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 * finding another window to go to.
2393 */
2394 for (;;)
2395 {
2396 if (wp->w_next == NULL)
2397 wp = firstwin;
2398 else
2399 wp = wp->w_next;
2400 if (wp == curwin)
2401 break;
2402 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2403 {
2404 curwin = wp;
2405 break;
2406 }
2407 }
2408 }
2409#endif
2410 curbuf = curwin->w_buffer;
2411 close_curwin = TRUE;
2412 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002413 if (p_ea && (*p_ead == 'b' || *p_ead == dir))
2414 win_equal(curwin, TRUE, dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 else
2416 win_comp_pos();
2417 if (close_curwin)
2418 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02002419 win_enter_ext(wp, FALSE, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420#ifdef FEAT_AUTOCMD
2421 if (other_buffer)
2422 /* careful: after this wp and win may be invalid! */
2423 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2424#endif
2425 }
2426
2427 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002428 * If last window has a status line now and we don't want one,
2429 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 */
2431 last_status(FALSE);
2432
2433 /* After closing the help window, try restoring the window layout from
2434 * before it was opened. */
2435 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002436 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002438#if defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2440 if (gui.in_use && !win_hasvertsplit())
2441 gui_init_which_components(NULL);
2442#endif
2443
2444 redraw_all_later(NOT_VALID);
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02002445 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446}
2447
2448/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002449 * Close window "win" in tab page "tp", which is not the current tab page.
Bram Moolenaarbef1c362012-05-25 12:39:00 +02002450 * This may be the last window in that tab page and result in closing the tab,
Bram Moolenaarf740b292006-02-16 22:11:02 +00002451 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002452 * Caller must check if buffer is hidden and whether the tabline needs to be
2453 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002454 */
2455 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002456win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002457{
2458 win_T *wp;
2459 int dir;
2460 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002461 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002462
Bram Moolenaar362ce482012-06-06 19:02:45 +02002463#ifdef FEAT_AUTOCMD
2464 if (win->w_closing || win->w_buffer->b_closing)
2465 return; /* window is already being closed */
2466#endif
2467
Bram Moolenaarf740b292006-02-16 22:11:02 +00002468 /* Close the link to the buffer. */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002469 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002470
2471 /* Careful: Autocommands may have closed the tab page or made it the
2472 * current tab page. */
2473 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2474 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002475 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002476 return;
2477
2478 /* Autocommands may have closed the window already. */
2479 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2480 ;
2481 if (wp == NULL)
2482 return;
2483
Bram Moolenaarf740b292006-02-16 22:11:02 +00002484 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02002485 if (tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002486 {
2487 if (tp == first_tabpage)
2488 first_tabpage = tp->tp_next;
2489 else
2490 {
2491 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2492 ptp = ptp->tp_next)
2493 ;
2494 if (ptp == NULL)
2495 {
2496 EMSG2(_(e_intern2), "win_close_othertab()");
2497 return;
2498 }
2499 ptp->tp_next = tp->tp_next;
2500 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002501 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002502 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002503
2504 /* Free the memory used for the window. */
2505 win_free_mem(win, &dir, tp);
2506
2507 if (free_tp)
2508 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002509}
2510
2511/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002512 * Free the memory used for a window.
2513 * Returns a pointer to the window that got the freed up space.
2514 */
2515 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002516win_free_mem(
2517 win_T *win,
2518 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */
2519 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002520{
2521 frame_T *frp;
2522 win_T *wp;
2523
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002524 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002525 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002526 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002527 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002528 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002529
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002530 /* When deleting the current window of another tab page select a new
2531 * current window. */
2532 if (tp != NULL && win == tp->tp_curwin)
2533 tp->tp_curwin = wp;
2534
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002535 return wp;
2536}
2537
2538#if defined(EXITFREE) || defined(PROTO)
2539 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002540win_free_all(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002541{
2542 int dummy;
2543
Bram Moolenaarf740b292006-02-16 22:11:02 +00002544# ifdef FEAT_WINDOWS
2545 while (first_tabpage->tp_next != NULL)
2546 tabpage_close(TRUE);
2547# endif
2548
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002549# ifdef FEAT_AUTOCMD
2550 if (aucmd_win != NULL)
2551 {
2552 (void)win_free_mem(aucmd_win, &dummy, NULL);
2553 aucmd_win = NULL;
2554 }
2555# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002556
2557 while (firstwin != NULL)
2558 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar4e036c92014-07-16 16:30:28 +02002559
2560 /* No window should be used after this. Set curwin to NULL to crash
2561 * instead of using freed memory. */
2562 curwin = NULL;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002563}
2564#endif
2565
2566/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 * Remove a window and its frame from the tree of frames.
2568 * Returns a pointer to the window that got the freed up space.
2569 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002570 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002571winframe_remove(
2572 win_T *win,
2573 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */
2574 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575{
2576 frame_T *frp, *frp2, *frp3;
2577 frame_T *frp_close = win->w_frame;
2578 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
2580 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002581 * If there is only one window there is nothing to remove.
2582 */
2583 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
2584 return NULL;
2585
2586 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 * Remove the window from its frame.
2588 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002589 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 wp = frame2win(frp2);
2591
2592 /* Remove this frame from the list of frames. */
2593 frame_remove(frp_close);
2594
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 if (frp_close->fr_parent->fr_layout == FR_COL)
2596 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002597 /* When 'winfixheight' is set, try to find another frame in the column
2598 * (as close to the closed frame as possible) to distribute the height
2599 * to. */
2600 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2601 {
2602 frp = frp_close->fr_prev;
2603 frp3 = frp_close->fr_next;
2604 while (frp != NULL || frp3 != NULL)
2605 {
2606 if (frp != NULL)
2607 {
2608 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2609 {
2610 frp2 = frp;
2611 wp = frp->fr_win;
2612 break;
2613 }
2614 frp = frp->fr_prev;
2615 }
2616 if (frp3 != NULL)
2617 {
2618 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2619 {
2620 frp2 = frp3;
2621 wp = frp3->fr_win;
2622 break;
2623 }
2624 frp3 = frp3->fr_next;
2625 }
2626 }
2627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2629 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 *dirp = 'v';
2631 }
2632 else
2633 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002634 /* When 'winfixwidth' is set, try to find another frame in the column
2635 * (as close to the closed frame as possible) to distribute the width
2636 * to. */
2637 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2638 {
2639 frp = frp_close->fr_prev;
2640 frp3 = frp_close->fr_next;
2641 while (frp != NULL || frp3 != NULL)
2642 {
2643 if (frp != NULL)
2644 {
2645 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2646 {
2647 frp2 = frp;
2648 wp = frp->fr_win;
2649 break;
2650 }
2651 frp = frp->fr_prev;
2652 }
2653 if (frp3 != NULL)
2654 {
2655 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2656 {
2657 frp2 = frp3;
2658 wp = frp3->fr_win;
2659 break;
2660 }
2661 frp3 = frp3->fr_next;
2662 }
2663 }
2664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002666 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 *dirp = 'h';
2668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
2670 /* If rows/columns go to a window below/right its positions need to be
2671 * updated. Can only be done after the sizes have been updated. */
2672 if (frp2 == frp_close->fr_next)
2673 {
2674 int row = win->w_winrow;
2675 int col = W_WINCOL(win);
2676
2677 frame_comp_pos(frp2, &row, &col);
2678 }
2679
2680 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2681 {
2682 /* There is no other frame in this list, move its info to the parent
2683 * and remove it. */
2684 frp2->fr_parent->fr_layout = frp2->fr_layout;
2685 frp2->fr_parent->fr_child = frp2->fr_child;
2686 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2687 frp->fr_parent = frp2->fr_parent;
2688 frp2->fr_parent->fr_win = frp2->fr_win;
2689 if (frp2->fr_win != NULL)
2690 frp2->fr_win->w_frame = frp2->fr_parent;
2691 frp = frp2->fr_parent;
2692 vim_free(frp2);
2693
2694 frp2 = frp->fr_parent;
2695 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2696 {
2697 /* The frame above the parent has the same layout, have to merge
2698 * the frames into this list. */
2699 if (frp2->fr_child == frp)
2700 frp2->fr_child = frp->fr_child;
2701 frp->fr_child->fr_prev = frp->fr_prev;
2702 if (frp->fr_prev != NULL)
2703 frp->fr_prev->fr_next = frp->fr_child;
2704 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2705 {
2706 frp3->fr_parent = frp2;
2707 if (frp3->fr_next == NULL)
2708 {
2709 frp3->fr_next = frp->fr_next;
2710 if (frp->fr_next != NULL)
2711 frp->fr_next->fr_prev = frp3;
2712 break;
2713 }
2714 }
2715 vim_free(frp);
2716 }
2717 }
2718
2719 return wp;
2720}
2721
2722/*
2723 * Find out which frame is going to get the freed up space when "win" is
2724 * closed.
2725 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2726 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2727 * This makes opening a window and closing it immediately keep the same window
2728 * layout.
2729 */
2730 static frame_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002731win_altframe(
2732 win_T *win,
2733 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 frame_T *frp;
2736 int b;
2737
Bram Moolenaarf740b292006-02-16 22:11:02 +00002738 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002739 /* Last window in this tab page, will go to next tab page. */
2740 return alt_tabpage()->tp_curwin->w_frame;
2741
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 frp = win->w_frame;
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002743 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 b = p_spr;
2745 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 b = p_sb;
2747 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2748 return frp->fr_next;
2749 return frp->fr_prev;
2750}
2751
2752/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002753 * Return the tabpage that will be used if the current one is closed.
2754 */
2755 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002756alt_tabpage(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002757{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002758 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002759
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002760 /* Use the next tab page if possible. */
2761 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002762 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002763
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002764 /* Find the last but one tab page. */
2765 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2766 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002767 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002768}
2769
2770/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 * Find the left-upper window in frame "frp".
2772 */
2773 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002774frame2win(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775{
2776 while (frp->fr_win == NULL)
2777 frp = frp->fr_child;
2778 return frp->fr_win;
2779}
2780
2781/*
2782 * Return TRUE if frame "frp" contains window "wp".
2783 */
2784 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002785frame_has_win(frame_T *frp, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786{
2787 frame_T *p;
2788
2789 if (frp->fr_layout == FR_LEAF)
2790 return frp->fr_win == wp;
2791
2792 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2793 if (frame_has_win(p, wp))
2794 return TRUE;
2795 return FALSE;
2796}
2797
2798/*
2799 * Set a new height for a frame. Recursively sets the height for contained
2800 * frames and windows. Caller must take care of positions.
2801 */
2802 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002803frame_new_height(
2804 frame_T *topfrp,
2805 int height,
2806 int topfirst, /* resize topmost contained frame first */
2807 int wfh) /* obey 'winfixheight' when there is a choice;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 may cause the height not to be set */
2809{
2810 frame_T *frp;
2811 int extra_lines;
2812 int h;
2813
2814 if (topfrp->fr_win != NULL)
2815 {
2816 /* Simple case: just one window. */
2817 win_new_height(topfrp->fr_win,
2818 height - topfrp->fr_win->w_status_height);
2819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 else if (topfrp->fr_layout == FR_ROW)
2821 {
2822 do
2823 {
2824 /* All frames in this row get the same new height. */
2825 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2826 {
2827 frame_new_height(frp, height, topfirst, wfh);
2828 if (frp->fr_height > height)
2829 {
2830 /* Could not fit the windows, make the whole row higher. */
2831 height = frp->fr_height;
2832 break;
2833 }
2834 }
2835 }
2836 while (frp != NULL);
2837 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002838 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 {
2840 /* Complicated case: Resize a column of frames. Resize the bottom
2841 * frame first, frames above that when needed. */
2842
2843 frp = topfrp->fr_child;
2844 if (wfh)
2845 /* Advance past frames with one window with 'wfh' set. */
2846 while (frame_fixed_height(frp))
2847 {
2848 frp = frp->fr_next;
2849 if (frp == NULL)
2850 return; /* no frame without 'wfh', give up */
2851 }
2852 if (!topfirst)
2853 {
2854 /* Find the bottom frame of this column */
2855 while (frp->fr_next != NULL)
2856 frp = frp->fr_next;
2857 if (wfh)
2858 /* Advance back for frames with one window with 'wfh' set. */
2859 while (frame_fixed_height(frp))
2860 frp = frp->fr_prev;
2861 }
2862
2863 extra_lines = height - topfrp->fr_height;
2864 if (extra_lines < 0)
2865 {
2866 /* reduce height of contained frames, bottom or top frame first */
2867 while (frp != NULL)
2868 {
2869 h = frame_minheight(frp, NULL);
2870 if (frp->fr_height + extra_lines < h)
2871 {
2872 extra_lines += frp->fr_height - h;
2873 frame_new_height(frp, h, topfirst, wfh);
2874 }
2875 else
2876 {
2877 frame_new_height(frp, frp->fr_height + extra_lines,
2878 topfirst, wfh);
2879 break;
2880 }
2881 if (topfirst)
2882 {
2883 do
2884 frp = frp->fr_next;
2885 while (wfh && frp != NULL && frame_fixed_height(frp));
2886 }
2887 else
2888 {
2889 do
2890 frp = frp->fr_prev;
2891 while (wfh && frp != NULL && frame_fixed_height(frp));
2892 }
2893 /* Increase "height" if we could not reduce enough frames. */
2894 if (frp == NULL)
2895 height -= extra_lines;
2896 }
2897 }
2898 else if (extra_lines > 0)
2899 {
2900 /* increase height of bottom or top frame */
2901 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2902 }
2903 }
2904 topfrp->fr_height = height;
2905}
2906
2907/*
2908 * Return TRUE if height of frame "frp" should not be changed because of
2909 * the 'winfixheight' option.
2910 */
2911 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002912frame_fixed_height(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913{
2914 /* frame with one window: fixed height if 'winfixheight' set. */
2915 if (frp->fr_win != NULL)
2916 return frp->fr_win->w_p_wfh;
2917
2918 if (frp->fr_layout == FR_ROW)
2919 {
2920 /* The frame is fixed height if one of the frames in the row is fixed
2921 * height. */
2922 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2923 if (frame_fixed_height(frp))
2924 return TRUE;
2925 return FALSE;
2926 }
2927
2928 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2929 * frames in the row are fixed height. */
2930 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2931 if (!frame_fixed_height(frp))
2932 return FALSE;
2933 return TRUE;
2934}
2935
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002937 * Return TRUE if width of frame "frp" should not be changed because of
2938 * the 'winfixwidth' option.
2939 */
2940 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002941frame_fixed_width(frame_T *frp)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002942{
2943 /* frame with one window: fixed width if 'winfixwidth' set. */
2944 if (frp->fr_win != NULL)
2945 return frp->fr_win->w_p_wfw;
2946
2947 if (frp->fr_layout == FR_COL)
2948 {
2949 /* The frame is fixed width if one of the frames in the row is fixed
2950 * width. */
2951 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2952 if (frame_fixed_width(frp))
2953 return TRUE;
2954 return FALSE;
2955 }
2956
2957 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2958 * frames in the row are fixed width. */
2959 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2960 if (!frame_fixed_width(frp))
2961 return FALSE;
2962 return TRUE;
2963}
2964
2965/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 * Add a status line to windows at the bottom of "frp".
2967 * Note: Does not check if there is room!
2968 */
2969 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01002970frame_add_statusline(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971{
2972 win_T *wp;
2973
2974 if (frp->fr_layout == FR_LEAF)
2975 {
2976 wp = frp->fr_win;
2977 if (wp->w_status_height == 0)
2978 {
2979 if (wp->w_height > 0) /* don't make it negative */
2980 --wp->w_height;
2981 wp->w_status_height = STATUS_HEIGHT;
2982 }
2983 }
2984 else if (frp->fr_layout == FR_ROW)
2985 {
2986 /* Handle all the frames in the row. */
2987 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2988 frame_add_statusline(frp);
2989 }
2990 else /* frp->fr_layout == FR_COL */
2991 {
2992 /* Only need to handle the last frame in the column. */
2993 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
2994 ;
2995 frame_add_statusline(frp);
2996 }
2997}
2998
2999/*
3000 * Set width of a frame. Handles recursively going through contained frames.
3001 * May remove separator line for windows at the right side (for win_close()).
3002 */
3003 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003004frame_new_width(
3005 frame_T *topfrp,
3006 int width,
3007 int leftfirst, /* resize leftmost contained frame first */
3008 int wfw) /* obey 'winfixwidth' when there is a choice;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003009 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010{
3011 frame_T *frp;
3012 int extra_cols;
3013 int w;
3014 win_T *wp;
3015
3016 if (topfrp->fr_layout == FR_LEAF)
3017 {
3018 /* Simple case: just one window. */
3019 wp = topfrp->fr_win;
3020 /* Find out if there are any windows right of this one. */
3021 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
3022 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
3023 break;
3024 if (frp->fr_parent == NULL)
3025 wp->w_vsep_width = 0;
3026 win_new_width(wp, width - wp->w_vsep_width);
3027 }
3028 else if (topfrp->fr_layout == FR_COL)
3029 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003030 do
3031 {
3032 /* All frames in this column get the same new width. */
3033 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3034 {
3035 frame_new_width(frp, width, leftfirst, wfw);
3036 if (frp->fr_width > width)
3037 {
3038 /* Could not fit the windows, make whole column wider. */
3039 width = frp->fr_width;
3040 break;
3041 }
3042 }
3043 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 }
3045 else /* fr_layout == FR_ROW */
3046 {
3047 /* Complicated case: Resize a row of frames. Resize the rightmost
3048 * frame first, frames left of it when needed. */
3049
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003051 if (wfw)
3052 /* Advance past frames with one window with 'wfw' set. */
3053 while (frame_fixed_width(frp))
3054 {
3055 frp = frp->fr_next;
3056 if (frp == NULL)
3057 return; /* no frame without 'wfw', give up */
3058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003060 {
3061 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 while (frp->fr_next != NULL)
3063 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003064 if (wfw)
3065 /* Advance back for frames with one window with 'wfw' set. */
3066 while (frame_fixed_width(frp))
3067 frp = frp->fr_prev;
3068 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
3070 extra_cols = width - topfrp->fr_width;
3071 if (extra_cols < 0)
3072 {
3073 /* reduce frame width, rightmost frame first */
3074 while (frp != NULL)
3075 {
3076 w = frame_minwidth(frp, NULL);
3077 if (frp->fr_width + extra_cols < w)
3078 {
3079 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003080 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 }
3082 else
3083 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003084 frame_new_width(frp, frp->fr_width + extra_cols,
3085 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 break;
3087 }
3088 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003089 {
3090 do
3091 frp = frp->fr_next;
3092 while (wfw && frp != NULL && frame_fixed_width(frp));
3093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003095 {
3096 do
3097 frp = frp->fr_prev;
3098 while (wfw && frp != NULL && frame_fixed_width(frp));
3099 }
3100 /* Increase "width" if we could not reduce enough frames. */
3101 if (frp == NULL)
3102 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 }
3104 }
3105 else if (extra_cols > 0)
3106 {
3107 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00003108 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 }
3110 }
3111 topfrp->fr_width = width;
3112}
3113
3114/*
3115 * Add the vertical separator to windows at the right side of "frp".
3116 * Note: Does not check if there is room!
3117 */
3118 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003119frame_add_vsep(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120{
3121 win_T *wp;
3122
3123 if (frp->fr_layout == FR_LEAF)
3124 {
3125 wp = frp->fr_win;
3126 if (wp->w_vsep_width == 0)
3127 {
3128 if (wp->w_width > 0) /* don't make it negative */
3129 --wp->w_width;
3130 wp->w_vsep_width = 1;
3131 }
3132 }
3133 else if (frp->fr_layout == FR_COL)
3134 {
3135 /* Handle all the frames in the column. */
3136 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3137 frame_add_vsep(frp);
3138 }
3139 else /* frp->fr_layout == FR_ROW */
3140 {
3141 /* Only need to handle the last frame in the row. */
3142 frp = frp->fr_child;
3143 while (frp->fr_next != NULL)
3144 frp = frp->fr_next;
3145 frame_add_vsep(frp);
3146 }
3147}
3148
3149/*
3150 * Set frame width from the window it contains.
3151 */
3152 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003153frame_fix_width(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154{
3155 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3156}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157
3158/*
3159 * Set frame height from the window it contains.
3160 */
3161 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003162frame_fix_height(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163{
3164 wp->w_frame->fr_height = wp->w_height + wp->w_status_height;
3165}
3166
3167/*
3168 * Compute the minimal height for frame "topfrp".
3169 * Uses the 'winminheight' option.
3170 * When "next_curwin" isn't NULL, use p_wh for this window.
3171 * When "next_curwin" is NOWIN, don't use at least one line for the current
3172 * window.
3173 */
3174 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003175frame_minheight(frame_T *topfrp, win_T *next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176{
3177 frame_T *frp;
3178 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180
3181 if (topfrp->fr_win != NULL)
3182 {
3183 if (topfrp->fr_win == next_curwin)
3184 m = p_wh + topfrp->fr_win->w_status_height;
3185 else
3186 {
3187 /* window: minimal height of the window plus status line */
3188 m = p_wmh + topfrp->fr_win->w_status_height;
3189 /* Current window is minimal one line high */
3190 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3191 ++m;
3192 }
3193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 else if (topfrp->fr_layout == FR_ROW)
3195 {
3196 /* get the minimal height from each frame in this row */
3197 m = 0;
3198 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3199 {
3200 n = frame_minheight(frp, next_curwin);
3201 if (n > m)
3202 m = n;
3203 }
3204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 else
3206 {
3207 /* Add up the minimal heights for all frames in this column. */
3208 m = 0;
3209 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3210 m += frame_minheight(frp, next_curwin);
3211 }
3212
3213 return m;
3214}
3215
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216/*
3217 * Compute the minimal width for frame "topfrp".
3218 * When "next_curwin" isn't NULL, use p_wiw for this window.
3219 * When "next_curwin" is NOWIN, don't use at least one column for the current
3220 * window.
3221 */
3222 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003223frame_minwidth(
3224 frame_T *topfrp,
3225 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226{
3227 frame_T *frp;
3228 int m, n;
3229
3230 if (topfrp->fr_win != NULL)
3231 {
3232 if (topfrp->fr_win == next_curwin)
3233 m = p_wiw + topfrp->fr_win->w_vsep_width;
3234 else
3235 {
3236 /* window: minimal width of the window plus separator column */
3237 m = p_wmw + topfrp->fr_win->w_vsep_width;
3238 /* Current window is minimal one column wide */
3239 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3240 ++m;
3241 }
3242 }
3243 else if (topfrp->fr_layout == FR_COL)
3244 {
3245 /* get the minimal width from each frame in this column */
3246 m = 0;
3247 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3248 {
3249 n = frame_minwidth(frp, next_curwin);
3250 if (n > m)
3251 m = n;
3252 }
3253 }
3254 else
3255 {
3256 /* Add up the minimal widths for all frames in this row. */
3257 m = 0;
3258 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3259 m += frame_minwidth(frp, next_curwin);
3260 }
3261
3262 return m;
3263}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
3265
3266/*
3267 * Try to close all windows except current one.
3268 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3269 * used and the buffer was modified.
3270 *
3271 * Used by ":bdel" and ":only".
3272 */
3273 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003274close_others(
3275 int message,
3276 int forceit) /* always hide all other windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277{
3278 win_T *wp;
3279 win_T *nextwp;
3280 int r;
3281
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003282 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 {
3284 if (message
3285#ifdef FEAT_AUTOCMD
3286 && !autocmd_busy
3287#endif
3288 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003289 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 return;
3291 }
3292
3293 /* Be very careful here: autocommands may change the window layout. */
3294 for (wp = firstwin; win_valid(wp); wp = nextwp)
3295 {
3296 nextwp = wp->w_next;
3297 if (wp != curwin) /* don't close current window */
3298 {
3299
3300 /* Check if it's allowed to abandon this window */
3301 r = can_abandon(wp->w_buffer, forceit);
3302#ifdef FEAT_AUTOCMD
3303 if (!win_valid(wp)) /* autocommands messed wp up */
3304 {
3305 nextwp = firstwin;
3306 continue;
3307 }
3308#endif
3309 if (!r)
3310 {
3311#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3312 if (message && (p_confirm || cmdmod.confirm) && p_write)
3313 {
3314 dialog_changed(wp->w_buffer, FALSE);
3315# ifdef FEAT_AUTOCMD
3316 if (!win_valid(wp)) /* autocommands messed wp up */
3317 {
3318 nextwp = firstwin;
3319 continue;
3320 }
3321# endif
3322 }
3323 if (bufIsChanged(wp->w_buffer))
3324#endif
3325 continue;
3326 }
3327 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer));
3328 }
3329 }
3330
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003331 if (message && lastwin != firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 EMSG(_("E445: Other window contains changes"));
3333}
3334
3335#endif /* FEAT_WINDOWS */
3336
3337/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003338 * Init the current window "curwin".
3339 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 */
3341 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003342curwin_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003344 win_init_empty(curwin);
3345}
3346
3347 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003348win_init_empty(win_T *wp)
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003349{
3350 redraw_win_later(wp, NOT_VALID);
3351 wp->w_lines_valid = 0;
3352 wp->w_cursor.lnum = 1;
3353 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003355 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003357 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3358 wp->w_pcmark.col = 0;
3359 wp->w_prev_pcmark.lnum = 0;
3360 wp->w_prev_pcmark.col = 0;
3361 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003363 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003365 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003367 if (wp->w_p_rl)
3368 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003370 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003372#ifdef FEAT_SYN_HL
3373 wp->w_s = &wp->w_buffer->b_s;
3374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375}
3376
3377/*
3378 * Allocate the first window and put an empty buffer in it.
3379 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003380 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003382 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003383win_alloc_first(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003385 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003386 return FAIL;
3387
3388#ifdef FEAT_WINDOWS
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003389 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003390 if (first_tabpage == NULL)
3391 return FAIL;
3392 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003393 curtab = first_tabpage;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003394#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003395
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003396 return OK;
3397}
3398
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003399#if defined(FEAT_AUTOCMD) || defined(PROTO)
3400/*
3401 * Init "aucmd_win". This can only be done after the first
3402 * window is fully initialized, thus it can't be in win_alloc_first().
3403 */
3404 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003405win_alloc_aucmd_win(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003406{
3407 aucmd_win = win_alloc(NULL, TRUE);
3408 if (aucmd_win != NULL)
3409 {
3410 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003411 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003412 new_frame(aucmd_win);
3413 }
3414}
3415#endif
3416
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003417/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003418 * Allocate the first window or the first window in a new tab page.
3419 * When "oldwin" is NULL create an empty buffer for it.
3420 * When "oldwin" is not NULL copy info from it to the new window (only with
3421 * FEAT_WINDOWS).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003422 * Return FAIL when something goes wrong (out of memory).
3423 */
3424 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003425win_alloc_firstwin(win_T *oldwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003426{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003427 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003428 if (oldwin == NULL)
3429 {
3430 /* Very first window, need to create an empty buffer for it and
3431 * initialize from scratch. */
3432 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3433 if (curwin == NULL || curbuf == NULL)
3434 return FAIL;
3435 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003436#ifdef FEAT_SYN_HL
3437 curwin->w_s = &(curbuf->b_s);
3438#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003439 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440#ifdef FEAT_WINDOWS
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003441 curwin->w_alist = &global_alist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003443 curwin_init(); /* init current window */
3444 }
3445#ifdef FEAT_WINDOWS
3446 else
3447 {
3448 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003449 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003450
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003451 /* We don't want cursor- and scroll-binding in the first window. */
3452 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003453 }
3454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003456 new_frame(curwin);
3457 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003458 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003459 topframe = curwin->w_frame;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003460#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 topframe->fr_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 topframe->fr_height = Rows - p_ch;
3464 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003465
3466 return OK;
3467}
3468
3469/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003470 * Create a frame for window "wp".
3471 */
3472 static void
3473new_frame(win_T *wp)
3474{
3475 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3476
3477 wp->w_frame = frp;
3478 if (frp != NULL)
3479 {
3480 frp->fr_layout = FR_LEAF;
3481 frp->fr_win = wp;
3482 }
3483}
3484
3485/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003486 * Initialize the window and frame size to the maximum.
3487 */
3488 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003489win_init_size(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003490{
3491 firstwin->w_height = ROWS_AVAIL;
3492 topframe->fr_height = ROWS_AVAIL;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003493#ifdef FEAT_WINDOWS
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003494 firstwin->w_width = Columns;
3495 topframe->fr_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497}
3498
3499#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003500
3501/*
3502 * Allocate a new tabpage_T and init the values.
3503 * Returns NULL when out of memory.
3504 */
3505 static tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003506alloc_tabpage(void)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003507{
3508 tabpage_T *tp;
Bram Moolenaar429fa852013-04-15 12:27:36 +02003509# ifdef FEAT_GUI
3510 int i;
3511# endif
3512
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003513
3514 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02003515 if (tp == NULL)
3516 return NULL;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003517
Bram Moolenaar429fa852013-04-15 12:27:36 +02003518# ifdef FEAT_EVAL
3519 /* init t: variables */
3520 tp->tp_vars = dict_alloc();
3521 if (tp->tp_vars == NULL)
3522 {
3523 vim_free(tp);
3524 return NULL;
3525 }
3526 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE);
3527# endif
3528
3529# ifdef FEAT_GUI
3530 for (i = 0; i < 3; i++)
3531 tp->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003532# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003533# ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02003534 tp->tp_diff_invalid = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003535# endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02003536 tp->tp_ch_used = p_ch;
3537
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003538 return tp;
3539}
3540
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003541 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003542free_tabpage(tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003543{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003544 int idx;
3545
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003546# ifdef FEAT_DIFF
3547 diff_clear(tp);
3548# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003549 for (idx = 0; idx < SNAP_COUNT; ++idx)
3550 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003551#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02003552 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */
3553 hash_init(&tp->tp_vars->dv_hashtab);
3554 unref_var_dict(tp->tp_vars);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003555#endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003556
3557#ifdef FEAT_PYTHON
3558 python_tabpage_free(tp);
3559#endif
3560
3561#ifdef FEAT_PYTHON3
3562 python3_tabpage_free(tp);
3563#endif
3564
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003565 vim_free(tp);
3566}
3567
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003568/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003569 * Create a new Tab page with one window.
3570 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003571 * When "after" is 0 put it just after the current Tab page.
3572 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003573 * Return FAIL or OK.
3574 */
3575 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003576win_new_tabpage(int after)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003577{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003578 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003579 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003580 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003581
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003582 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003583 if (newtp == NULL)
3584 return FAIL;
3585
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003586 /* Remember the current windows in this Tab page. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003587 if (leave_tabpage(curbuf, TRUE) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003588 {
3589 vim_free(newtp);
3590 return FAIL;
3591 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003592 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003593
3594 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003595 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003596 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003597 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003598 if (after == 1)
3599 {
3600 /* New tab page becomes the first one. */
3601 newtp->tp_next = first_tabpage;
3602 first_tabpage = newtp;
3603 }
3604 else
3605 {
3606 if (after > 0)
3607 {
3608 /* Put new tab page before tab page "after". */
3609 n = 2;
3610 for (tp = first_tabpage; tp->tp_next != NULL
3611 && n < after; tp = tp->tp_next)
3612 ++n;
3613 }
3614 newtp->tp_next = tp->tp_next;
3615 tp->tp_next = newtp;
3616 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003617 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003618 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003619 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003620
3621 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003622 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003623
3624#if defined(FEAT_GUI)
3625 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3626 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003627 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003628#endif
3629
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003630 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003631#ifdef FEAT_AUTOCMD
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003632 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003633 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003634#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003635 return OK;
3636 }
3637
3638 /* Failed, get back the previous Tab page */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003639 enter_tabpage(curtab, curbuf, TRUE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003640 return FAIL;
3641}
3642
3643/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003644 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3645 * like with ":split".
3646 * Returns OK if a new tab page was created, FAIL otherwise.
3647 */
3648 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003649may_open_tabpage(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003650{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003651 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003652
Bram Moolenaard326ce82007-03-11 14:48:29 +00003653 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003654 {
3655 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003656 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003657 return win_new_tabpage(n);
3658 }
3659 return FAIL;
3660}
3661
3662/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003663 * Create up to "maxcount" tabpages with empty windows.
3664 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003665 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003666 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003667make_tabpages(int maxcount)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003668{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003669 int count = maxcount;
3670 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003671
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003672 /* Limit to 'tabpagemax' tabs. */
3673 if (count > p_tpm)
3674 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003675
3676#ifdef FEAT_AUTOCMD
3677 /*
3678 * Don't execute autocommands while creating the tab pages. Must do that
3679 * when putting the buffers in the windows.
3680 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003681 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003682#endif
3683
3684 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003685 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003686 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003687
3688#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003689 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003690#endif
3691
3692 /* return actual number of tab pages */
3693 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003694}
3695
3696/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003697 * Return TRUE when "tpc" points to a valid tab page.
3698 */
3699 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003700valid_tabpage(tabpage_T *tpc)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003701{
3702 tabpage_T *tp;
3703
3704 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3705 if (tp == tpc)
3706 return TRUE;
3707 return FALSE;
3708}
3709
3710/*
3711 * Find tab page "n" (first one is 1). Returns NULL when not found.
3712 */
3713 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003714find_tabpage(int n)
Bram Moolenaarf740b292006-02-16 22:11:02 +00003715{
3716 tabpage_T *tp;
3717 int i = 1;
3718
3719 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3720 ++i;
3721 return tp;
3722}
3723
3724/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003725 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003726 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003727 */
3728 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003729tabpage_index(tabpage_T *ftp)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003730{
3731 int i = 1;
3732 tabpage_T *tp;
3733
3734 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3735 ++i;
3736 return i;
3737}
3738
3739/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003740 * Prepare for leaving the current tab page.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003741 * When autocommands change "curtab" we don't leave the tab page and return
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003742 * FAIL.
3743 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003744 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003745 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003746leave_tabpage(
3747 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003748 NULL if unknown */
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003749 int trigger_leave_autocmds UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003750{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003751 tabpage_T *tp = curtab;
3752
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003753 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003754#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003755 if (trigger_leave_autocmds)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003756 {
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003757 if (new_curbuf != curbuf)
3758 {
3759 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3760 if (curtab != tp)
3761 return FAIL;
3762 }
3763 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3764 if (curtab != tp)
3765 return FAIL;
3766 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003767 if (curtab != tp)
3768 return FAIL;
3769 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003770#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003771#if defined(FEAT_GUI)
3772 /* Remove the scrollbars. They may be added back later. */
3773 if (gui.in_use)
3774 gui_remove_scrollbars();
3775#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003776 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003777 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003778 tp->tp_firstwin = firstwin;
3779 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003780 tp->tp_old_Rows = Rows;
3781 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003782 firstwin = NULL;
3783 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003784 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003785}
3786
3787/*
3788 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003789 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003790 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3791 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003792 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003793 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003794enter_tabpage(
3795 tabpage_T *tp,
3796 buf_T *old_curbuf UNUSED,
Bram Moolenaarf1d25012016-03-03 12:22:53 +01003797 int trigger_enter_autocmds,
3798 int trigger_leave_autocmds)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003799{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003800 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003801 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003802
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003803 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003804 firstwin = tp->tp_firstwin;
3805 lastwin = tp->tp_lastwin;
3806 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003807
3808 /* We would like doing the TabEnter event first, but we don't have a
3809 * valid current window yet, which may break some commands.
3810 * This triggers autocommands, thus may make "tp" invalid. */
Bram Moolenaard6949742013-06-16 14:18:28 +02003811 win_enter_ext(tp->tp_curwin, FALSE, TRUE,
3812 trigger_enter_autocmds, trigger_leave_autocmds);
Bram Moolenaar773560b2006-05-06 21:38:18 +00003813 prevwin = next_prevwin;
3814
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003815 last_status(FALSE); /* status line may appear or disappear */
3816 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003817 must_redraw = CLEAR; /* need to redraw everything */
3818#ifdef FEAT_DIFF
3819 diff_need_scrollbind = TRUE;
3820#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003821
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003822 /* The tabpage line may have appeared or disappeared, may need to resize
3823 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003824 * frame sizes too. Use the stored value of p_ch, so that it can be
3825 * different for each tab page. */
3826 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003827 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3828#ifdef FEAT_GUI_TABLINE
3829 && !gui_use_tabline()
3830#endif
3831 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003832 shell_new_rows();
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003833 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003834 shell_new_columns(); /* update window widths */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003835
3836#if defined(FEAT_GUI)
3837 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3838 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003839 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003840#endif
3841
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003842#ifdef FEAT_AUTOCMD
3843 /* Apply autocommands after updating the display, when 'rows' and
3844 * 'columns' have been set correctly. */
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003845 if (trigger_enter_autocmds)
Bram Moolenaara8596c42012-06-13 14:28:20 +02003846 {
3847 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3848 if (old_curbuf != curbuf)
3849 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3850 }
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003851#endif
3852
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003853 redraw_all_later(CLEAR);
3854}
3855
3856/*
3857 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003858 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003859 */
3860 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003861goto_tabpage(int n)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003862{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003863 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003864 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003865 int i;
3866
Bram Moolenaard68071d2006-05-02 22:08:30 +00003867 if (text_locked())
3868 {
3869 /* Not allowed when editing the command line. */
3870#ifdef FEAT_CMDWIN
3871 if (cmdwin_type != 0)
3872 EMSG(_(e_cmdwin));
3873 else
3874#endif
3875 EMSG(_(e_secure));
3876 return;
3877 }
3878
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003879 /* If there is only one it can't work. */
3880 if (first_tabpage->tp_next == NULL)
3881 {
3882 if (n > 1)
3883 beep_flush();
3884 return;
3885 }
3886
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003887 if (n == 0)
3888 {
3889 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003890 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003891 tp = first_tabpage;
3892 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003893 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003894 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003895 else if (n < 0)
3896 {
3897 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3898 * this N times. */
3899 ttp = curtab;
3900 for (i = n; i < 0; ++i)
3901 {
3902 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
3903 tp = tp->tp_next)
3904 ;
3905 ttp = tp;
3906 }
3907 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003908 else if (n == 9999)
3909 {
3910 /* Go to last tab page. */
3911 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
3912 ;
3913 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003914 else
3915 {
3916 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003917 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00003918 if (tp == NULL)
3919 {
3920 beep_flush();
3921 return;
3922 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003923 }
3924
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003925 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003926
3927#ifdef FEAT_GUI_TABLINE
3928 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003929 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003930#endif
3931}
3932
3933/*
3934 * Go to tabpage "tp".
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003935 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
3936 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003937 * Note: doesn't update the GUI tab.
3938 */
3939 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003940goto_tabpage_tp(
3941 tabpage_T *tp,
3942 int trigger_enter_autocmds,
3943 int trigger_leave_autocmds)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003944{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02003945 /* Don't repeat a message in another tab page. */
3946 set_keep_msg(NULL, 0);
3947
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003948 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
3949 trigger_leave_autocmds) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003950 {
3951 if (valid_tabpage(tp))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003952 enter_tabpage(tp, curbuf, trigger_enter_autocmds,
3953 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003954 else
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003955 enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
3956 trigger_leave_autocmds);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003957 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003958}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959
3960/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003961 * Enter window "wp" in tab page "tp".
3962 * Also updates the GUI tab.
3963 */
3964 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003965goto_tabpage_win(tabpage_T *tp, win_T *wp)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003966{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02003967 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003968 if (curtab == tp && win_valid(wp))
3969 {
3970 win_enter(wp, TRUE);
3971# ifdef FEAT_GUI_TABLINE
3972 if (gui_use_tabline())
3973 gui_mch_set_curtab(tabpage_index(curtab));
3974# endif
3975 }
3976}
3977
3978/*
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003979 * Move the current tab page to after tab page "nr".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003980 */
3981 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01003982tabpage_move(int nr)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003983{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003984 int n = 1;
3985 tabpage_T *tp, *tp_dst;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003986
3987 if (first_tabpage->tp_next == NULL)
3988 return;
3989
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02003990 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next)
3991 ++n;
3992
3993 if (tp == curtab || (nr > 0 && tp->tp_next != NULL
3994 && tp->tp_next == curtab))
3995 return;
3996
3997 tp_dst = tp;
3998
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003999 /* Remove the current tab page from the list of tab pages. */
4000 if (curtab == first_tabpage)
4001 first_tabpage = curtab->tp_next;
4002 else
4003 {
4004 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4005 if (tp->tp_next == curtab)
4006 break;
4007 if (tp == NULL) /* "cannot happen" */
4008 return;
4009 tp->tp_next = curtab->tp_next;
4010 }
4011
4012 /* Re-insert it at the specified position. */
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004013 if (nr <= 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004014 {
4015 curtab->tp_next = first_tabpage;
4016 first_tabpage = curtab;
4017 }
4018 else
4019 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02004020 curtab->tp_next = tp_dst->tp_next;
4021 tp_dst->tp_next = curtab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00004022 }
4023
4024 /* Need to redraw the tabline. Tab page contents doesn't change. */
4025 redraw_tabline = TRUE;
4026}
4027
4028
4029/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 * Go to another window.
4031 * When jumping to another buffer, stop Visual mode. Do this before
4032 * changing windows so we can yank the selection into the '*' register.
4033 * When jumping to another window on the same buffer, adjust its cursor
4034 * position to keep the same Visual area.
4035 */
4036 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004037win_goto(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004039#ifdef FEAT_CONCEAL
4040 win_T *owp = curwin;
4041#endif
4042
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004043 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 {
4045 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004046 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 return;
4048 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004049#ifdef FEAT_AUTOCMD
4050 if (curbuf_locked())
4051 return;
4052#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004053
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 if (wp->w_buffer != curbuf)
4055 reset_VIsual_and_resel();
4056 else if (VIsual_active)
4057 wp->w_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058
4059#ifdef FEAT_GUI
4060 need_mouse_correct = TRUE;
4061#endif
4062 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004063
4064#ifdef FEAT_CONCEAL
4065 /* Conceal cursor line in previous window, unconceal in current window. */
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004066 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled)
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004067 update_single_line(owp, owp->w_cursor.lnum);
Bram Moolenaar530e7df2013-02-06 13:38:02 +01004068 if (curwin->w_p_cole > 0 && !msg_scrolled)
4069 need_cursor_line_redraw = TRUE;
Bram Moolenaar23c347c2010-07-14 20:57:00 +02004070#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071}
4072
4073#if defined(FEAT_PERL) || defined(PROTO)
4074/*
4075 * Find window number "winnr" (counting top to bottom).
4076 */
4077 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004078win_find_nr(int winnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079{
4080 win_T *wp;
4081
4082# ifdef FEAT_WINDOWS
4083 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4084 if (--winnr == 0)
4085 break;
4086 return wp;
4087# else
4088 return curwin;
4089# endif
4090}
4091#endif
4092
Bram Moolenaar6fa41fb2013-05-18 20:55:35 +02004093#if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
4094 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004095/*
4096 * Find the tabpage for window "win".
4097 */
4098 tabpage_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004099win_find_tabpage(win_T *win)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004100{
4101 win_T *wp;
4102 tabpage_T *tp;
4103
4104 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
Bram Moolenaar5e6d5ca2013-07-03 14:01:56 +02004105 for (wp = (tp == curtab ? firstwin : tp->tp_firstwin);
4106 wp != NULL; wp = wp->w_next)
Bram Moolenaar105bc352013-05-17 16:03:57 +02004107 if (wp == win)
4108 return tp;
4109 return NULL;
4110}
4111#endif
4112
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113/*
4114 * Move to window above or below "count" times.
4115 */
4116 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004117win_goto_ver(
4118 int up, /* TRUE to go to win above */
4119 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120{
4121 frame_T *fr;
4122 frame_T *nfr;
4123 frame_T *foundfr;
4124
4125 foundfr = curwin->w_frame;
4126 while (count--)
4127 {
4128 /*
4129 * First go upwards in the tree of frames until we find a upwards or
4130 * downwards neighbor.
4131 */
4132 fr = foundfr;
4133 for (;;)
4134 {
4135 if (fr == topframe)
4136 goto end;
4137 if (up)
4138 nfr = fr->fr_prev;
4139 else
4140 nfr = fr->fr_next;
4141 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
4142 break;
4143 fr = fr->fr_parent;
4144 }
4145
4146 /*
4147 * Now go downwards to find the bottom or top frame in it.
4148 */
4149 for (;;)
4150 {
4151 if (nfr->fr_layout == FR_LEAF)
4152 {
4153 foundfr = nfr;
4154 break;
4155 }
4156 fr = nfr->fr_child;
4157 if (nfr->fr_layout == FR_ROW)
4158 {
4159 /* Find the frame at the cursor row. */
4160 while (fr->fr_next != NULL
4161 && frame2win(fr)->w_wincol + fr->fr_width
4162 <= curwin->w_wincol + curwin->w_wcol)
4163 fr = fr->fr_next;
4164 }
4165 if (nfr->fr_layout == FR_COL && up)
4166 while (fr->fr_next != NULL)
4167 fr = fr->fr_next;
4168 nfr = fr;
4169 }
4170 }
4171end:
4172 if (foundfr != NULL)
4173 win_goto(foundfr->fr_win);
4174}
4175
4176/*
4177 * Move to left or right window.
4178 */
4179 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004180win_goto_hor(
4181 int left, /* TRUE to go to left win */
4182 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183{
4184 frame_T *fr;
4185 frame_T *nfr;
4186 frame_T *foundfr;
4187
4188 foundfr = curwin->w_frame;
4189 while (count--)
4190 {
4191 /*
4192 * First go upwards in the tree of frames until we find a left or
4193 * right neighbor.
4194 */
4195 fr = foundfr;
4196 for (;;)
4197 {
4198 if (fr == topframe)
4199 goto end;
4200 if (left)
4201 nfr = fr->fr_prev;
4202 else
4203 nfr = fr->fr_next;
4204 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4205 break;
4206 fr = fr->fr_parent;
4207 }
4208
4209 /*
4210 * Now go downwards to find the leftmost or rightmost frame in it.
4211 */
4212 for (;;)
4213 {
4214 if (nfr->fr_layout == FR_LEAF)
4215 {
4216 foundfr = nfr;
4217 break;
4218 }
4219 fr = nfr->fr_child;
4220 if (nfr->fr_layout == FR_COL)
4221 {
4222 /* Find the frame at the cursor row. */
4223 while (fr->fr_next != NULL
4224 && frame2win(fr)->w_winrow + fr->fr_height
4225 <= curwin->w_winrow + curwin->w_wrow)
4226 fr = fr->fr_next;
4227 }
4228 if (nfr->fr_layout == FR_ROW && left)
4229 while (fr->fr_next != NULL)
4230 fr = fr->fr_next;
4231 nfr = fr;
4232 }
4233 }
4234end:
4235 if (foundfr != NULL)
4236 win_goto(foundfr->fr_win);
4237}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
4239/*
4240 * Make window "wp" the current window.
4241 */
4242 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004243win_enter(win_T *wp, int undo_sync)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244{
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004245 win_enter_ext(wp, undo_sync, FALSE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246}
4247
4248/*
4249 * Make window wp the current window.
4250 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4251 * been closed and isn't valid.
4252 */
4253 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004254win_enter_ext(
4255 win_T *wp,
4256 int undo_sync,
4257 int curwin_invalid,
4258 int trigger_enter_autocmds UNUSED,
4259 int trigger_leave_autocmds UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260{
4261#ifdef FEAT_AUTOCMD
4262 int other_buffer = FALSE;
4263#endif
4264
4265 if (wp == curwin && !curwin_invalid) /* nothing to do */
4266 return;
4267
4268#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004269 if (!curwin_invalid && trigger_leave_autocmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 {
4271 /*
4272 * Be careful: If autocommands delete the window, return now.
4273 */
4274 if (wp->w_buffer != curbuf)
4275 {
4276 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4277 other_buffer = TRUE;
4278 if (!win_valid(wp))
4279 return;
4280 }
4281 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4282 if (!win_valid(wp))
4283 return;
4284# ifdef FEAT_EVAL
4285 /* autocmds may abort script processing */
4286 if (aborting())
4287 return;
4288# endif
4289 }
4290#endif
4291
4292 /* sync undo before leaving the current buffer */
4293 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004294 u_sync(FALSE);
Bram Moolenaarec1561c2014-06-17 13:52:40 +02004295
4296 /* Might need to scroll the old window before switching, e.g., when the
4297 * cursor was moved. */
4298 update_topline();
4299
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 /* may have to copy the buffer options when 'cpo' contains 'S' */
4301 if (wp->w_buffer != curbuf)
4302 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4303 if (!curwin_invalid)
4304 {
4305 prevwin = curwin; /* remember for CTRL-W p */
4306 curwin->w_redr_status = TRUE;
4307 }
4308 curwin = wp;
4309 curbuf = wp->w_buffer;
4310 check_cursor();
4311#ifdef FEAT_VIRTUALEDIT
4312 if (!virtual_active())
4313 curwin->w_cursor.coladd = 0;
4314#endif
4315 changed_line_abv_curs(); /* assume cursor position needs updating */
4316
4317 if (curwin->w_localdir != NULL)
4318 {
4319 /* Window has a local directory: Save current directory as global
4320 * directory (unless that was done already) and change to the local
4321 * directory. */
4322 if (globaldir == NULL)
4323 {
4324 char_u cwd[MAXPATHL];
4325
4326 if (mch_dirname(cwd, MAXPATHL) == OK)
4327 globaldir = vim_strsave(cwd);
4328 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004329 if (mch_chdir((char *)curwin->w_localdir) == 0)
4330 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 }
4332 else if (globaldir != NULL)
4333 {
4334 /* Window doesn't have a local directory and we are not in the global
4335 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004336 ignored = mch_chdir((char *)globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 vim_free(globaldir);
4338 globaldir = NULL;
4339 shorten_fnames(TRUE);
4340 }
4341
4342#ifdef FEAT_AUTOCMD
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004343 if (trigger_enter_autocmds)
4344 {
4345 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4346 if (other_buffer)
4347 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349#endif
4350
4351#ifdef FEAT_TITLE
4352 maketitle();
4353#endif
4354 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004355 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 if (restart_edit)
4357 redraw_later(VALID); /* causes status line redraw */
4358
4359 /* set window height to desired minimal value */
4360 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4361 win_setheight((int)p_wh);
4362 else if (curwin->w_height == 0)
4363 win_setheight(1);
4364
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004366 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 win_setwidth((int)p_wiw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368
4369#ifdef FEAT_MOUSE
4370 setmouse(); /* in case jumped to/from help buffer */
4371#endif
4372
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004373 /* Change directories when the 'acd' option is set. */
4374 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375}
4376
4377#endif /* FEAT_WINDOWS */
4378
4379#if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO)
4380/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004381 * Jump to the first open window that contains buffer "buf", if one exists.
4382 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 */
4384 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004385buf_jump_open_win(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004387 win_T *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004389 if (curwin->w_buffer == buf)
4390 wp = curwin;
4391# ifdef FEAT_WINDOWS
4392 else
4393 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4394 if (wp->w_buffer == buf)
4395 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 if (wp != NULL)
4397 win_enter(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004399 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004401
4402/*
4403 * Jump to the first open window in any tab page that contains buffer "buf",
4404 * if one exists.
4405 * Returns a pointer to the window found, otherwise NULL.
4406 */
4407 win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004408buf_jump_open_tab(buf_T *buf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004409{
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004410 win_T *wp = buf_jump_open_win(buf);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004411# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004412 tabpage_T *tp;
4413
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004414 if (wp != NULL)
4415 return wp;
4416
4417 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4418 if (tp != curtab)
4419 {
4420 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4421 if (wp->w_buffer == buf)
4422 break;
4423 if (wp != NULL)
4424 {
4425 goto_tabpage_win(tp, wp);
4426 if (curwin != wp)
4427 wp = NULL; /* something went wrong */
4428 break;
4429 }
4430 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004431# endif
Bram Moolenaar482a2b52014-10-21 20:57:15 +02004432 return wp;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004433}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434#endif
4435
Bram Moolenaar888ccac2016-06-04 18:49:36 +02004436static int last_win_id = LOWEST_WIN_ID - 1;
Bram Moolenaar86edef62016-03-13 18:07:30 +01004437
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004439 * Allocate a window structure and link it in the window list when "hidden" is
4440 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004443win_alloc(win_T *after UNUSED, int hidden UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004445 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446
4447 /*
4448 * allocate window structure and linesizes arrays
4449 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004450 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
Bram Moolenaar429fa852013-04-15 12:27:36 +02004451 if (new_wp == NULL)
4452 return NULL;
4453
4454 if (win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004456 vim_free(new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004457 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 }
4459
Bram Moolenaar86edef62016-03-13 18:07:30 +01004460 new_wp->w_id = ++last_win_id;
4461
Bram Moolenaar429fa852013-04-15 12:27:36 +02004462#ifdef FEAT_EVAL
4463 /* init w: variables */
4464 new_wp->w_vars = dict_alloc();
4465 if (new_wp->w_vars == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 {
Bram Moolenaar429fa852013-04-15 12:27:36 +02004467 win_free_lsize(new_wp);
4468 vim_free(new_wp);
4469 return NULL;
4470 }
4471 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004472#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004473
4474#ifdef FEAT_AUTOCMD
4475 /* Don't execute autocommands while the window is not properly
4476 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4477 * event. */
4478 block_autocmds();
4479#endif
4480 /*
4481 * link the window in the window list
4482 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483#ifdef FEAT_WINDOWS
Bram Moolenaar429fa852013-04-15 12:27:36 +02004484 if (!hidden)
4485 win_append(after, new_wp);
Bram Moolenaar429fa852013-04-15 12:27:36 +02004486 new_wp->w_wincol = 0;
4487 new_wp->w_width = Columns;
Bram Moolenaar829c8e32016-03-19 23:07:23 +01004488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489
Bram Moolenaar429fa852013-04-15 12:27:36 +02004490 /* position the display and the cursor at the top of the file. */
4491 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492#ifdef FEAT_DIFF
Bram Moolenaar429fa852013-04-15 12:27:36 +02004493 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494#endif
Bram Moolenaar429fa852013-04-15 12:27:36 +02004495 new_wp->w_botline = 2;
4496 new_wp->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497#ifdef FEAT_SCROLLBIND
Bram Moolenaar429fa852013-04-15 12:27:36 +02004498 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499#endif
4500
Bram Moolenaar429fa852013-04-15 12:27:36 +02004501 /* We won't calculate w_fraction until resizing the window */
4502 new_wp->w_fraction = 0;
4503 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504
4505#ifdef FEAT_GUI
Bram Moolenaar429fa852013-04-15 12:27:36 +02004506 if (gui.in_use)
4507 {
4508 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4509 SBAR_LEFT, new_wp);
4510 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4511 SBAR_RIGHT, new_wp);
4512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513#endif
4514#ifdef FEAT_FOLDING
Bram Moolenaar429fa852013-04-15 12:27:36 +02004515 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516#endif
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004517#ifdef FEAT_AUTOCMD
Bram Moolenaar429fa852013-04-15 12:27:36 +02004518 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004519#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004520#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar429fa852013-04-15 12:27:36 +02004521 new_wp->w_match_head = NULL;
4522 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004523#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004524 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525}
4526
4527#if defined(FEAT_WINDOWS) || defined(PROTO)
4528
4529/*
Bram Moolenaarff18df02013-07-24 17:51:57 +02004530 * Remove window 'wp' from the window list and free the structure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 */
4532 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004533win_free(
4534 win_T *wp,
4535 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536{
4537 int i;
Bram Moolenaarff18df02013-07-24 17:51:57 +02004538 buf_T *buf;
4539 wininfo_T *wip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004541#ifdef FEAT_FOLDING
4542 clearFolding(wp);
4543#endif
4544
4545 /* reduce the reference count to the argument list. */
4546 alist_unlink(wp->w_alist);
4547
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004548#ifdef FEAT_AUTOCMD
4549 /* Don't execute autocommands while the window is halfway being deleted.
4550 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004551 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004552#endif
4553
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004554#ifdef FEAT_LUA
4555 lua_window_free(wp);
4556#endif
4557
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004558#ifdef FEAT_MZSCHEME
4559 mzscheme_window_free(wp);
4560#endif
4561
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562#ifdef FEAT_PERL
4563 perl_win_free(wp);
4564#endif
4565
4566#ifdef FEAT_PYTHON
4567 python_window_free(wp);
4568#endif
4569
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004570#ifdef FEAT_PYTHON3
4571 python3_window_free(wp);
4572#endif
4573
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574#ifdef FEAT_TCL
4575 tcl_window_free(wp);
4576#endif
4577
4578#ifdef FEAT_RUBY
4579 ruby_window_free(wp);
4580#endif
4581
4582 clear_winopt(&wp->w_onebuf_opt);
4583 clear_winopt(&wp->w_allbuf_opt);
4584
4585#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02004586 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */
4587 hash_init(&wp->w_vars->dv_hashtab);
4588 unref_var_dict(wp->w_vars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589#endif
4590
Bram Moolenaar3dda7db2016-04-03 21:22:58 +02004591 {
4592 tabpage_T *ttp;
4593
4594 if (prevwin == wp)
4595 prevwin = NULL;
4596 for (ttp = first_tabpage; ttp != NULL; ttp = ttp->tp_next)
4597 if (ttp->tp_prevwin == wp)
4598 ttp->tp_prevwin = NULL;
4599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 win_free_lsize(wp);
4601
4602 for (i = 0; i < wp->w_tagstacklen; ++i)
4603 vim_free(wp->w_tagstack[i].tagname);
4604
4605 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004606
Bram Moolenaarff18df02013-07-24 17:51:57 +02004607 /* Remove the window from the b_wininfo lists, it may happen that the
4608 * freed memory is re-used for another window. */
4609 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
4610 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
4611 if (wip->wi_win == wp)
4612 wip->wi_win = NULL;
4613
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004615 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004617
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618#ifdef FEAT_JUMPLIST
4619 free_jumplist(wp);
4620#endif
4621
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004622#ifdef FEAT_QUICKFIX
4623 qf_free_all(wp);
4624#endif
4625
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626#ifdef FEAT_GUI
4627 if (gui.in_use)
4628 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4630 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4631 }
4632#endif /* FEAT_GUI */
4633
Bram Moolenaar860cae12010-06-05 23:22:07 +02004634#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004635 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004636#endif
4637
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004638#ifdef FEAT_AUTOCMD
4639 if (wp != aucmd_win)
4640#endif
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004641 win_remove(wp, tp);
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004642#ifdef FEAT_AUTOCMD
Bram Moolenaar3be85852014-06-12 14:01:31 +02004643 if (autocmd_busy)
4644 {
4645 wp->w_next = au_pending_free_win;
4646 au_pending_free_win = wp;
4647 }
4648 else
Bram Moolenaarf0224c92014-06-14 12:53:33 +02004649#endif
Bram Moolenaar3be85852014-06-12 14:01:31 +02004650 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004651
4652#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004653 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004654#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655}
4656
4657/*
4658 * Append window "wp" in the window list after window "after".
4659 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004660 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004661win_append(win_T *after, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662{
4663 win_T *before;
4664
4665 if (after == NULL) /* after NULL is in front of the first */
4666 before = firstwin;
4667 else
4668 before = after->w_next;
4669
4670 wp->w_next = before;
4671 wp->w_prev = after;
4672 if (after == NULL)
4673 firstwin = wp;
4674 else
4675 after->w_next = wp;
4676 if (before == NULL)
4677 lastwin = wp;
4678 else
4679 before->w_prev = wp;
4680}
4681
4682/*
4683 * Remove a window from the window list.
4684 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004685 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004686win_remove(
4687 win_T *wp,
4688 tabpage_T *tp) /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689{
4690 if (wp->w_prev != NULL)
4691 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004692 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004694 else
4695 tp->tp_firstwin = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 if (wp->w_next != NULL)
4697 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004698 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004700 else
4701 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702}
4703
4704/*
4705 * Append frame "frp" in a frame list after frame "after".
4706 */
4707 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004708frame_append(frame_T *after, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709{
4710 frp->fr_next = after->fr_next;
4711 after->fr_next = frp;
4712 if (frp->fr_next != NULL)
4713 frp->fr_next->fr_prev = frp;
4714 frp->fr_prev = after;
4715}
4716
4717/*
4718 * Insert frame "frp" in a frame list before frame "before".
4719 */
4720 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004721frame_insert(frame_T *before, frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722{
4723 frp->fr_next = before;
4724 frp->fr_prev = before->fr_prev;
4725 before->fr_prev = frp;
4726 if (frp->fr_prev != NULL)
4727 frp->fr_prev->fr_next = frp;
4728 else
4729 frp->fr_parent->fr_child = frp;
4730}
4731
4732/*
4733 * Remove a frame from a frame list.
4734 */
4735 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004736frame_remove(frame_T *frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737{
4738 if (frp->fr_prev != NULL)
4739 frp->fr_prev->fr_next = frp->fr_next;
4740 else
4741 frp->fr_parent->fr_child = frp->fr_next;
4742 if (frp->fr_next != NULL)
4743 frp->fr_next->fr_prev = frp->fr_prev;
4744}
4745
4746#endif /* FEAT_WINDOWS */
4747
4748/*
4749 * Allocate w_lines[] for window "wp".
4750 * Return FAIL for failure, OK for success.
4751 */
4752 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004753win_alloc_lines(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754{
4755 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004756 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 if (wp->w_lines == NULL)
4758 return FAIL;
4759 return OK;
4760}
4761
4762/*
4763 * free lsize arrays for a window
4764 */
4765 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004766win_free_lsize(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767{
Bram Moolenaar06e4a6d2014-06-12 11:49:46 +02004768 /* TODO: why would wp be NULL here? */
4769 if (wp != NULL)
4770 {
4771 vim_free(wp->w_lines);
4772 wp->w_lines = NULL;
4773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774}
4775
4776/*
4777 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004778 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 */
4780 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004781shell_new_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004783 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784
4785 if (firstwin == NULL) /* not initialized yet */
4786 return;
4787#ifdef FEAT_WINDOWS
4788 if (h < frame_minheight(topframe, NULL))
4789 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004790
4791 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 * that doesn't result in the right height, forget about that option. */
4793 frame_new_height(topframe, h, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004794 if (!frame_check_height(topframe, h))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 frame_new_height(topframe, h, FALSE, FALSE);
4796
4797 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4798#else
4799 if (h < 1)
4800 h = 1;
4801 win_new_height(firstwin, h);
4802#endif
4803 compute_cmdrow();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004804#ifdef FEAT_WINDOWS
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004805 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004806#endif
4807
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808#if 0
4809 /* Disabled: don't want making the screen smaller make a window larger. */
4810 if (p_ea)
4811 win_equal(curwin, FALSE, 'v');
4812#endif
4813}
4814
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004815#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816/*
4817 * Called from win_new_shellsize() after Columns changed.
4818 */
4819 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004820shell_new_columns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821{
4822 if (firstwin == NULL) /* not initialized yet */
4823 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004824
4825 /* First try setting the widths of windows with 'winfixwidth'. If that
4826 * doesn't result in the right width, forget about that option. */
4827 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
Bram Moolenaarb893ac22013-06-26 14:04:47 +02004828 if (!frame_check_width(topframe, Columns))
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004829 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4830
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4832#if 0
4833 /* Disabled: don't want making the screen smaller make a window larger. */
4834 if (p_ea)
4835 win_equal(curwin, FALSE, 'h');
4836#endif
4837}
4838#endif
4839
4840#if defined(FEAT_CMDWIN) || defined(PROTO)
4841/*
4842 * Save the size of all windows in "gap".
4843 */
4844 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004845win_size_save(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846
4847{
4848 win_T *wp;
4849
4850 ga_init2(gap, (int)sizeof(int), 1);
4851 if (ga_grow(gap, win_count() * 2) == OK)
4852 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4853 {
4854 ((int *)gap->ga_data)[gap->ga_len++] =
4855 wp->w_width + wp->w_vsep_width;
4856 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4857 }
4858}
4859
4860/*
4861 * Restore window sizes, but only if the number of windows is still the same.
4862 * Does not free the growarray.
4863 */
4864 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004865win_size_restore(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866{
4867 win_T *wp;
Bram Moolenaarb643e772014-07-16 15:18:26 +02004868 int i, j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869
4870 if (win_count() * 2 == gap->ga_len)
4871 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004872 /* The order matters, because frames contain other frames, but it's
4873 * difficult to get right. The easy way out is to do it twice. */
4874 for (j = 0; j < 2; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 {
Bram Moolenaarb643e772014-07-16 15:18:26 +02004876 i = 0;
4877 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4878 {
4879 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4880 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4881 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 }
4883 /* recompute the window positions */
4884 (void)win_comp_pos();
4885 }
4886}
4887#endif /* FEAT_CMDWIN */
4888
4889#if defined(FEAT_WINDOWS) || defined(PROTO)
4890/*
4891 * Update the position for all windows, using the width and height of the
4892 * frames.
4893 * Returns the row just after the last window.
4894 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004895 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004896win_comp_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004898 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 int col = 0;
4900
4901 frame_comp_pos(topframe, &row, &col);
4902 return row;
4903}
4904
4905/*
4906 * Update the position of the windows in frame "topfrp", using the width and
4907 * height of the frames.
4908 * "*row" and "*col" are the top-left position of the frame. They are updated
4909 * to the bottom-right position plus one.
4910 */
4911 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004912frame_comp_pos(frame_T *topfrp, int *row, int *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913{
4914 win_T *wp;
4915 frame_T *frp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 int startcol;
4917 int startrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
4919 wp = topfrp->fr_win;
4920 if (wp != NULL)
4921 {
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004922 if (wp->w_winrow != *row || wp->w_wincol != *col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 {
4924 /* position changed, redraw */
4925 wp->w_winrow = *row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 wp->w_wincol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 redraw_win_later(wp, NOT_VALID);
4928 wp->w_redr_status = TRUE;
4929 }
4930 *row += wp->w_height + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 *col += wp->w_width + wp->w_vsep_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 }
4933 else
4934 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 startrow = *row;
4936 startcol = *col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
4938 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 if (topfrp->fr_layout == FR_ROW)
4940 *row = startrow; /* all frames are at the same row */
4941 else
4942 *col = startcol; /* all frames are at the same col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 frame_comp_pos(frp, row, col);
4944 }
4945 }
4946}
4947
4948#endif /* FEAT_WINDOWS */
4949
4950/*
4951 * Set current window height and take care of repositioning other windows to
4952 * fit around it.
4953 */
4954 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004955win_setheight(int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956{
4957 win_setheight_win(height, curwin);
4958}
4959
4960/*
4961 * Set the window height of window "win" and take care of repositioning other
4962 * windows to fit around it.
4963 */
4964 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01004965win_setheight_win(int height, win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966{
4967 int row;
4968
4969 if (win == curwin)
4970 {
4971 /* Always keep current window at least one line high, even when
4972 * 'winminheight' is zero. */
4973#ifdef FEAT_WINDOWS
4974 if (height < p_wmh)
4975 height = p_wmh;
4976#endif
4977 if (height == 0)
4978 height = 1;
4979 }
4980
4981#ifdef FEAT_WINDOWS
4982 frame_setheight(win->w_frame, height + win->w_status_height);
4983
4984 /* recompute the window positions */
4985 row = win_comp_pos();
4986#else
4987 if (height > topframe->fr_height)
4988 height = topframe->fr_height;
4989 win->w_height = height;
4990 row = height;
4991#endif
4992
4993 /*
4994 * If there is extra space created between the last window and the command
4995 * line, clear it.
4996 */
4997 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
4998 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
4999 cmdline_row = row;
5000 msg_row = row;
5001 msg_col = 0;
5002
5003 redraw_all_later(NOT_VALID);
5004}
5005
5006#if defined(FEAT_WINDOWS) || defined(PROTO)
5007
5008/*
5009 * Set the height of a frame to "height" and take care that all frames and
5010 * windows inside it are resized. Also resize frames on the left and right if
5011 * the are in the same FR_ROW frame.
5012 *
5013 * Strategy:
5014 * If the frame is part of a FR_COL frame, try fitting the frame in that
5015 * frame. If that doesn't work (the FR_COL frame is too small), recursively
5016 * go to containing frames to resize them and make room.
5017 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
5018 * Check for the minimal height of the FR_ROW frame.
5019 * At the top level we can also use change the command line height.
5020 */
5021 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005022frame_setheight(frame_T *curfrp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023{
5024 int room; /* total number of lines available */
5025 int take; /* number of lines taken from other windows */
5026 int room_cmdline; /* lines available from cmdline */
5027 int run;
5028 frame_T *frp;
5029 int h;
5030 int room_reserved;
5031
5032 /* If the height already is the desired value, nothing to do. */
5033 if (curfrp->fr_height == height)
5034 return;
5035
5036 if (curfrp->fr_parent == NULL)
5037 {
5038 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005039 if (height > ROWS_AVAIL)
5040 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 if (height > 0)
5042 frame_new_height(curfrp, height, FALSE, FALSE);
5043 }
5044 else if (curfrp->fr_parent->fr_layout == FR_ROW)
5045 {
5046 /* Row of frames: Also need to resize frames left and right of this
5047 * one. First check for the minimal height of these. */
5048 h = frame_minheight(curfrp->fr_parent, NULL);
5049 if (height < h)
5050 height = h;
5051 frame_setheight(curfrp->fr_parent, height);
5052 }
5053 else
5054 {
5055 /*
5056 * Column of frames: try to change only frames in this column.
5057 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 /*
5059 * Do this twice:
5060 * 1: compute room available, if it's not enough try resizing the
5061 * containing frame.
5062 * 2: compute the room available and adjust the height to it.
5063 * Try not to reduce the height of a window with 'winfixheight' set.
5064 */
5065 for (run = 1; run <= 2; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 {
5067 room = 0;
5068 room_reserved = 0;
5069 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5070 frp = frp->fr_next)
5071 {
5072 if (frp != curfrp
5073 && frp->fr_win != NULL
5074 && frp->fr_win->w_p_wfh)
5075 room_reserved += frp->fr_height;
5076 room += frp->fr_height;
5077 if (frp != curfrp)
5078 room -= frame_minheight(frp, NULL);
5079 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 if (curfrp->fr_width != Columns)
5081 room_cmdline = 0;
5082 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 {
5084 room_cmdline = Rows - p_ch - (lastwin->w_winrow
5085 + lastwin->w_height + lastwin->w_status_height);
5086 if (room_cmdline < 0)
5087 room_cmdline = 0;
5088 }
5089
5090 if (height <= room + room_cmdline)
5091 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 if (run == 2 || curfrp->fr_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 {
5094 if (height > room + room_cmdline)
5095 height = room + room_cmdline;
5096 break;
5097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 frame_setheight(curfrp->fr_parent, height
5099 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 }
5101
5102 /*
5103 * Compute the number of lines we will take from others frames (can be
5104 * negative!).
5105 */
5106 take = height - curfrp->fr_height;
5107
5108 /* If there is not enough room, also reduce the height of a window
5109 * with 'winfixheight' set. */
5110 if (height > room + room_cmdline - room_reserved)
5111 room_reserved = room + room_cmdline - height;
5112 /* If there is only a 'winfixheight' window and making the
5113 * window smaller, need to make the other window taller. */
5114 if (take < 0 && room - curfrp->fr_height < room_reserved)
5115 room_reserved = 0;
5116
5117 if (take > 0 && room_cmdline > 0)
5118 {
5119 /* use lines from cmdline first */
5120 if (take < room_cmdline)
5121 room_cmdline = take;
5122 take -= room_cmdline;
5123 topframe->fr_height += room_cmdline;
5124 }
5125
5126 /*
5127 * set the current frame to the new height
5128 */
5129 frame_new_height(curfrp, height, FALSE, FALSE);
5130
5131 /*
5132 * First take lines from the frames after the current frame. If
5133 * that is not enough, takes lines from frames above the current
5134 * frame.
5135 */
5136 for (run = 0; run < 2; ++run)
5137 {
5138 if (run == 0)
5139 frp = curfrp->fr_next; /* 1st run: start with next window */
5140 else
5141 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5142 while (frp != NULL && take != 0)
5143 {
5144 h = frame_minheight(frp, NULL);
5145 if (room_reserved > 0
5146 && frp->fr_win != NULL
5147 && frp->fr_win->w_p_wfh)
5148 {
5149 if (room_reserved >= frp->fr_height)
5150 room_reserved -= frp->fr_height;
5151 else
5152 {
5153 if (frp->fr_height - room_reserved > take)
5154 room_reserved = frp->fr_height - take;
5155 take -= frp->fr_height - room_reserved;
5156 frame_new_height(frp, room_reserved, FALSE, FALSE);
5157 room_reserved = 0;
5158 }
5159 }
5160 else
5161 {
5162 if (frp->fr_height - take < h)
5163 {
5164 take -= frp->fr_height - h;
5165 frame_new_height(frp, h, FALSE, FALSE);
5166 }
5167 else
5168 {
5169 frame_new_height(frp, frp->fr_height - take,
5170 FALSE, FALSE);
5171 take = 0;
5172 }
5173 }
5174 if (run == 0)
5175 frp = frp->fr_next;
5176 else
5177 frp = frp->fr_prev;
5178 }
5179 }
5180 }
5181}
5182
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183/*
5184 * Set current window width and take care of repositioning other windows to
5185 * fit around it.
5186 */
5187 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005188win_setwidth(int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189{
5190 win_setwidth_win(width, curwin);
5191}
5192
5193 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005194win_setwidth_win(int width, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195{
5196 /* Always keep current window at least one column wide, even when
5197 * 'winminwidth' is zero. */
5198 if (wp == curwin)
5199 {
5200 if (width < p_wmw)
5201 width = p_wmw;
5202 if (width == 0)
5203 width = 1;
5204 }
5205
5206 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5207
5208 /* recompute the window positions */
5209 (void)win_comp_pos();
5210
5211 redraw_all_later(NOT_VALID);
5212}
5213
5214/*
5215 * Set the width of a frame to "width" and take care that all frames and
5216 * windows inside it are resized. Also resize frames above and below if the
5217 * are in the same FR_ROW frame.
5218 *
5219 * Strategy is similar to frame_setheight().
5220 */
5221 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005222frame_setwidth(frame_T *curfrp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223{
5224 int room; /* total number of lines available */
5225 int take; /* number of lines taken from other windows */
5226 int run;
5227 frame_T *frp;
5228 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005229 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230
5231 /* If the width already is the desired value, nothing to do. */
5232 if (curfrp->fr_width == width)
5233 return;
5234
5235 if (curfrp->fr_parent == NULL)
5236 /* topframe: can't change width */
5237 return;
5238
5239 if (curfrp->fr_parent->fr_layout == FR_COL)
5240 {
5241 /* Column of frames: Also need to resize frames above and below of
5242 * this one. First check for the minimal width of these. */
5243 w = frame_minwidth(curfrp->fr_parent, NULL);
5244 if (width < w)
5245 width = w;
5246 frame_setwidth(curfrp->fr_parent, width);
5247 }
5248 else
5249 {
5250 /*
5251 * Row of frames: try to change only frames in this row.
5252 *
5253 * Do this twice:
5254 * 1: compute room available, if it's not enough try resizing the
5255 * containing frame.
5256 * 2: compute the room available and adjust the width to it.
5257 */
5258 for (run = 1; run <= 2; ++run)
5259 {
5260 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005261 room_reserved = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5263 frp = frp->fr_next)
5264 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005265 if (frp != curfrp
5266 && frp->fr_win != NULL
5267 && frp->fr_win->w_p_wfw)
5268 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 room += frp->fr_width;
5270 if (frp != curfrp)
5271 room -= frame_minwidth(frp, NULL);
5272 }
5273
5274 if (width <= room)
5275 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005276 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 {
5278 if (width > room)
5279 width = room;
5280 break;
5281 }
5282 frame_setwidth(curfrp->fr_parent, width
5283 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5284 }
5285
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 /*
5287 * Compute the number of lines we will take from others frames (can be
5288 * negative!).
5289 */
5290 take = width - curfrp->fr_width;
5291
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005292 /* If there is not enough room, also reduce the width of a window
5293 * with 'winfixwidth' set. */
5294 if (width > room - room_reserved)
5295 room_reserved = room - width;
5296 /* If there is only a 'winfixwidth' window and making the
5297 * window smaller, need to make the other window narrower. */
5298 if (take < 0 && room - curfrp->fr_width < room_reserved)
5299 room_reserved = 0;
5300
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 /*
5302 * set the current frame to the new width
5303 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005304 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305
5306 /*
5307 * First take lines from the frames right of the current frame. If
5308 * that is not enough, takes lines from frames left of the current
5309 * frame.
5310 */
5311 for (run = 0; run < 2; ++run)
5312 {
5313 if (run == 0)
5314 frp = curfrp->fr_next; /* 1st run: start with next window */
5315 else
5316 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5317 while (frp != NULL && take != 0)
5318 {
5319 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005320 if (room_reserved > 0
5321 && frp->fr_win != NULL
5322 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005324 if (room_reserved >= frp->fr_width)
5325 room_reserved -= frp->fr_width;
5326 else
5327 {
5328 if (frp->fr_width - room_reserved > take)
5329 room_reserved = frp->fr_width - take;
5330 take -= frp->fr_width - room_reserved;
5331 frame_new_width(frp, room_reserved, FALSE, FALSE);
5332 room_reserved = 0;
5333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 }
5335 else
5336 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005337 if (frp->fr_width - take < w)
5338 {
5339 take -= frp->fr_width - w;
5340 frame_new_width(frp, w, FALSE, FALSE);
5341 }
5342 else
5343 {
5344 frame_new_width(frp, frp->fr_width - take,
5345 FALSE, FALSE);
5346 take = 0;
5347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 }
5349 if (run == 0)
5350 frp = frp->fr_next;
5351 else
5352 frp = frp->fr_prev;
5353 }
5354 }
5355 }
5356}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357
5358/*
5359 * Check 'winminheight' for a valid value.
5360 */
5361 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005362win_setminheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363{
5364 int room;
5365 int first = TRUE;
5366 win_T *wp;
5367
5368 /* loop until there is a 'winminheight' that is possible */
5369 while (p_wmh > 0)
5370 {
5371 /* TODO: handle vertical splits */
5372 room = -p_wh;
5373 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5374 room += wp->w_height - p_wmh;
5375 if (room >= 0)
5376 break;
5377 --p_wmh;
5378 if (first)
5379 {
5380 EMSG(_(e_noroom));
5381 first = FALSE;
5382 }
5383 }
5384}
5385
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01005386#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387
5388/*
5389 * Status line of dragwin is dragged "offset" lines down (negative is up).
5390 */
5391 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005392win_drag_status_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393{
5394 frame_T *curfr;
5395 frame_T *fr;
5396 int room;
5397 int row;
5398 int up; /* if TRUE, drag status line up, otherwise down */
5399 int n;
5400
5401 fr = dragwin->w_frame;
5402 curfr = fr;
5403 if (fr != topframe) /* more than one window */
5404 {
5405 fr = fr->fr_parent;
5406 /* When the parent frame is not a column of frames, its parent should
5407 * be. */
5408 if (fr->fr_layout != FR_COL)
5409 {
5410 curfr = fr;
5411 if (fr != topframe) /* only a row of windows, may drag statusline */
5412 fr = fr->fr_parent;
5413 }
5414 }
5415
5416 /* If this is the last frame in a column, may want to resize the parent
5417 * frame instead (go two up to skip a row of frames). */
5418 while (curfr != topframe && curfr->fr_next == NULL)
5419 {
5420 if (fr != topframe)
5421 fr = fr->fr_parent;
5422 curfr = fr;
5423 if (fr != topframe)
5424 fr = fr->fr_parent;
5425 }
5426
5427 if (offset < 0) /* drag up */
5428 {
5429 up = TRUE;
5430 offset = -offset;
5431 /* sum up the room of the current frame and above it */
5432 if (fr == curfr)
5433 {
5434 /* only one window */
5435 room = fr->fr_height - frame_minheight(fr, NULL);
5436 }
5437 else
5438 {
5439 room = 0;
5440 for (fr = fr->fr_child; ; fr = fr->fr_next)
5441 {
5442 room += fr->fr_height - frame_minheight(fr, NULL);
5443 if (fr == curfr)
5444 break;
5445 }
5446 }
5447 fr = curfr->fr_next; /* put fr at frame that grows */
5448 }
5449 else /* drag down */
5450 {
5451 up = FALSE;
5452 /*
5453 * Only dragging the last status line can reduce p_ch.
5454 */
5455 room = Rows - cmdline_row;
5456 if (curfr->fr_next == NULL)
5457 room -= 1;
5458 else
5459 room -= p_ch;
5460 if (room < 0)
5461 room = 0;
5462 /* sum up the room of frames below of the current one */
5463 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5464 room += fr->fr_height - frame_minheight(fr, NULL);
5465 fr = curfr; /* put fr at window that grows */
5466 }
5467
5468 if (room < offset) /* Not enough room */
5469 offset = room; /* Move as far as we can */
5470 if (offset <= 0)
5471 return;
5472
5473 /*
5474 * Grow frame fr by "offset" lines.
5475 * Doesn't happen when dragging the last status line up.
5476 */
5477 if (fr != NULL)
5478 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5479
5480 if (up)
5481 fr = curfr; /* current frame gets smaller */
5482 else
5483 fr = curfr->fr_next; /* next frame gets smaller */
5484
5485 /*
5486 * Now make the other frames smaller.
5487 */
5488 while (fr != NULL && offset > 0)
5489 {
5490 n = frame_minheight(fr, NULL);
5491 if (fr->fr_height - offset <= n)
5492 {
5493 offset -= fr->fr_height - n;
5494 frame_new_height(fr, n, !up, FALSE);
5495 }
5496 else
5497 {
5498 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5499 break;
5500 }
5501 if (up)
5502 fr = fr->fr_prev;
5503 else
5504 fr = fr->fr_next;
5505 }
5506 row = win_comp_pos();
5507 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5508 cmdline_row = row;
5509 p_ch = Rows - cmdline_row;
5510 if (p_ch < 1)
5511 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005512 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005513 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 showmode();
5515}
5516
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517/*
5518 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5519 */
5520 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005521win_drag_vsep_line(win_T *dragwin, int offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522{
5523 frame_T *curfr;
5524 frame_T *fr;
5525 int room;
5526 int left; /* if TRUE, drag separator line left, otherwise right */
5527 int n;
5528
5529 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005530 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 return;
5532 curfr = fr;
5533 fr = fr->fr_parent;
5534 /* When the parent frame is not a row of frames, its parent should be. */
5535 if (fr->fr_layout != FR_ROW)
5536 {
5537 if (fr == topframe) /* only a column of windows (cannot happen?) */
5538 return;
5539 curfr = fr;
5540 fr = fr->fr_parent;
5541 }
5542
5543 /* If this is the last frame in a row, may want to resize a parent
5544 * frame instead. */
5545 while (curfr->fr_next == NULL)
5546 {
5547 if (fr == topframe)
5548 break;
5549 curfr = fr;
5550 fr = fr->fr_parent;
5551 if (fr != topframe)
5552 {
5553 curfr = fr;
5554 fr = fr->fr_parent;
5555 }
5556 }
5557
5558 if (offset < 0) /* drag left */
5559 {
5560 left = TRUE;
5561 offset = -offset;
5562 /* sum up the room of the current frame and left of it */
5563 room = 0;
5564 for (fr = fr->fr_child; ; fr = fr->fr_next)
5565 {
5566 room += fr->fr_width - frame_minwidth(fr, NULL);
5567 if (fr == curfr)
5568 break;
5569 }
5570 fr = curfr->fr_next; /* put fr at frame that grows */
5571 }
5572 else /* drag right */
5573 {
5574 left = FALSE;
5575 /* sum up the room of frames right of the current one */
5576 room = 0;
5577 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5578 room += fr->fr_width - frame_minwidth(fr, NULL);
5579 fr = curfr; /* put fr at window that grows */
5580 }
5581
5582 if (room < offset) /* Not enough room */
5583 offset = room; /* Move as far as we can */
5584 if (offset <= 0) /* No room at all, quit. */
5585 return;
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005586 if (fr == NULL)
5587 return; /* Safety check, should not happen. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588
5589 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005590 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591
5592 /* shrink other frames: current and at the left or at the right */
5593 if (left)
5594 fr = curfr; /* current frame gets smaller */
5595 else
5596 fr = curfr->fr_next; /* next frame gets smaller */
5597
5598 while (fr != NULL && offset > 0)
5599 {
5600 n = frame_minwidth(fr, NULL);
5601 if (fr->fr_width - offset <= n)
5602 {
5603 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005604 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 }
5606 else
5607 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005608 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 break;
5610 }
5611 if (left)
5612 fr = fr->fr_prev;
5613 else
5614 fr = fr->fr_next;
5615 }
5616 (void)win_comp_pos();
5617 redraw_all_later(NOT_VALID);
5618}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619#endif /* FEAT_MOUSE */
5620
5621#endif /* FEAT_WINDOWS */
5622
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005623#define FRACTION_MULT 16384L
5624
5625/*
5626 * Set wp->w_fraction for the current w_wrow and w_height.
5627 */
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01005628 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005629set_fraction(win_T *wp)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005630{
5631 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005632 + wp->w_height / 2) / (long)wp->w_height;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005633}
5634
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635/*
5636 * Set the height of a window.
5637 * This takes care of the things inside the window, not what happens to the
5638 * window position, the frame or to other windows.
5639 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005640 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005641win_new_height(win_T *wp, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642{
5643 linenr_T lnum;
5644 int sline, line_size;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005645 int prev_height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646
5647 /* Don't want a negative height. Happens when splitting a tiny window.
5648 * Will equalize heights soon to fix it. */
5649 if (height < 0)
5650 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005651 if (wp->w_height == height)
5652 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005654 if (wp->w_height > 0)
5655 {
5656 if (wp == curwin)
Bram Moolenaar0ae36a52014-06-13 20:08:45 +02005657 /* w_wrow needs to be valid. When setting 'laststatus' this may
5658 * call win_new_height() recursively. */
5659 validate_cursor();
5660 if (wp->w_height != prev_height)
5661 return; /* Recursive call already changed the size, bail out here
5662 to avoid the following to mess things up. */
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005663 if (wp->w_wrow != wp->w_prev_fraction_row)
5664 set_fraction(wp);
5665 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666
5667 wp->w_height = height;
5668 wp->w_skipcol = 0;
5669
5670 /* Don't change w_topline when height is zero. Don't set w_topline when
5671 * 'scrollbind' is set and this isn't the current window. */
5672 if (height > 0
5673#ifdef FEAT_SCROLLBIND
5674 && (!wp->w_p_scb || wp == curwin)
5675#endif
5676 )
5677 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005678 /*
5679 * Find a value for w_topline that shows the cursor at the same
5680 * relative position in the window as before (more or less).
5681 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 lnum = wp->w_cursor.lnum;
5683 if (lnum < 1) /* can happen when starting up */
5684 lnum = 1;
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005685 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L
5686 + FRACTION_MULT / 2) / FRACTION_MULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5688 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005689
5690 if (sline >= 0)
5691 {
5692 /* Make sure the whole cursor line is visible, if possible. */
5693 int rows = plines_win(wp, lnum, FALSE);
5694
5695 if (sline > wp->w_height - rows)
5696 {
5697 sline = wp->w_height - rows;
5698 wp->w_wrow -= rows - line_size;
5699 }
5700 }
5701
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 if (sline < 0)
5703 {
5704 /*
5705 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005706 * Make cursor line the first line in the window. If not enough
5707 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 */
5709 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005710 if (wp->w_wrow >= wp->w_height
5711 && (W_WIDTH(wp) - win_col_off(wp)) > 0)
5712 {
5713 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp);
5714 --wp->w_wrow;
5715 while (wp->w_wrow >= wp->w_height)
5716 {
5717 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp)
5718 + win_col_off2(wp);
5719 --wp->w_wrow;
5720 }
5721 }
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005722 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005724 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005726 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 {
5728#ifdef FEAT_FOLDING
5729 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5730 if (lnum == 1)
5731 {
5732 /* first line in buffer is folded */
5733 line_size = 1;
5734 --sline;
5735 break;
5736 }
5737#endif
5738 --lnum;
5739#ifdef FEAT_DIFF
5740 if (lnum == wp->w_topline)
5741 line_size = plines_win_nofill(wp, lnum, TRUE)
5742 + wp->w_topfill;
5743 else
5744#endif
5745 line_size = plines_win(wp, lnum, TRUE);
5746 sline -= line_size;
5747 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005748
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 if (sline < 0)
5750 {
5751 /*
5752 * Line we want at top would go off top of screen. Use next
5753 * line instead.
5754 */
5755#ifdef FEAT_FOLDING
5756 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5757#endif
5758 lnum++;
5759 wp->w_wrow -= line_size + sline;
5760 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005761 else if (sline > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 {
5763 /* First line of file reached, use that as topline. */
5764 lnum = 1;
5765 wp->w_wrow -= sline;
5766 }
Bram Moolenaardd0402a2014-05-28 13:43:04 +02005767
Bram Moolenaarb4d21352014-07-16 14:16:46 +02005768 set_topline(wp, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 }
5771
5772 if (wp == curwin)
5773 {
5774 if (p_so)
5775 update_topline();
5776 curs_columns(FALSE); /* validate w_wrow */
5777 }
Bram Moolenaar56b3bf82014-05-07 20:25:35 +02005778 if (prev_height > 0)
5779 wp->w_prev_fraction_row = wp->w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780
5781 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005782 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783#ifdef FEAT_WINDOWS
5784 wp->w_redr_status = TRUE;
5785#endif
5786 invalidate_botline_win(wp);
5787}
5788
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005789#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790/*
5791 * Set the width of a window.
5792 */
Bram Moolenaar6763c142012-07-19 18:05:44 +02005793 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005794win_new_width(win_T *wp, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795{
5796 wp->w_width = width;
5797 wp->w_lines_valid = 0;
5798 changed_line_abv_curs_win(wp);
5799 invalidate_botline_win(wp);
5800 if (wp == curwin)
5801 {
5802 update_topline();
5803 curs_columns(TRUE); /* validate w_wrow */
5804 }
5805 redraw_win_later(wp, NOT_VALID);
5806 wp->w_redr_status = TRUE;
5807}
5808#endif
5809
5810 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005811win_comp_scroll(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812{
5813 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5814 if (wp->w_p_scr == 0)
5815 wp->w_p_scr = 1;
5816}
5817
5818/*
5819 * command_height: called whenever p_ch has been changed
5820 */
5821 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005822command_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823{
5824#ifdef FEAT_WINDOWS
5825 int h;
5826 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005827 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005829 /* Use the value of p_ch that we remembered. This is needed for when the
5830 * GUI starts up, we can't be sure in what order things happen. And when
5831 * p_ch was changed in another tab page. */
5832 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005833
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 /* Find bottom frame with width of screen. */
5835 frp = lastwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5837 frp = frp->fr_parent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838
5839 /* Avoid changing the height of a window with 'winfixheight' set. */
5840 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5841 && frp->fr_win->w_p_wfh)
5842 frp = frp->fr_prev;
5843
5844 if (starting != NO_SCREEN)
5845 {
5846 cmdline_row = Rows - p_ch;
5847
5848 if (p_ch > old_p_ch) /* p_ch got bigger */
5849 {
5850 while (p_ch > old_p_ch)
5851 {
5852 if (frp == NULL)
5853 {
5854 EMSG(_(e_noroom));
5855 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005856 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 cmdline_row = Rows - p_ch;
5858 break;
5859 }
5860 h = frp->fr_height - frame_minheight(frp, NULL);
5861 if (h > p_ch - old_p_ch)
5862 h = p_ch - old_p_ch;
5863 old_p_ch += h;
5864 frame_add_height(frp, -h);
5865 frp = frp->fr_prev;
5866 }
5867
5868 /* Recompute window positions. */
5869 (void)win_comp_pos();
5870
5871 /* clear the lines added to cmdline */
5872 if (full_screen)
5873 screen_fill((int)(cmdline_row), (int)Rows, 0,
5874 (int)Columns, ' ', ' ', 0);
5875 msg_row = cmdline_row;
5876 redraw_cmdline = TRUE;
5877 return;
5878 }
5879
5880 if (msg_row < cmdline_row)
5881 msg_row = cmdline_row;
5882 redraw_cmdline = TRUE;
5883 }
5884 frame_add_height(frp, (int)(old_p_ch - p_ch));
5885
5886 /* Recompute window positions. */
5887 if (frp != lastwin->w_frame)
5888 (void)win_comp_pos();
5889#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 cmdline_row = Rows - p_ch;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005891 win_setheight(cmdline_row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892#endif
5893}
5894
5895#if defined(FEAT_WINDOWS) || defined(PROTO)
5896/*
5897 * Resize frame "frp" to be "n" lines higher (negative for less high).
5898 * Also resize the frames it is contained in.
5899 */
5900 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005901frame_add_height(frame_T *frp, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902{
5903 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5904 for (;;)
5905 {
5906 frp = frp->fr_parent;
5907 if (frp == NULL)
5908 break;
5909 frp->fr_height += n;
5910 }
5911}
5912
5913/*
5914 * Add or remove a status line for the bottom window(s), according to the
5915 * value of 'laststatus'.
5916 */
5917 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005918last_status(
5919 int morewin) /* pretend there are two or more windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920{
5921 /* Don't make a difference between horizontal or vertical split. */
5922 last_status_rec(topframe, (p_ls == 2
5923 || (p_ls == 1 && (morewin || lastwin != firstwin))));
5924}
5925
5926 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005927last_status_rec(frame_T *fr, int statusline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928{
5929 frame_T *fp;
5930 win_T *wp;
5931
5932 if (fr->fr_layout == FR_LEAF)
5933 {
5934 wp = fr->fr_win;
5935 if (wp->w_status_height != 0 && !statusline)
5936 {
5937 /* remove status line */
5938 win_new_height(wp, wp->w_height + 1);
5939 wp->w_status_height = 0;
5940 comp_col();
5941 }
5942 else if (wp->w_status_height == 0 && statusline)
5943 {
5944 /* Find a frame to take a line from. */
5945 fp = fr;
5946 while (fp->fr_height <= frame_minheight(fp, NULL))
5947 {
5948 if (fp == topframe)
5949 {
5950 EMSG(_(e_noroom));
5951 return;
5952 }
5953 /* In a column of frames: go to frame above. If already at
5954 * the top or in a row of frames: go to parent. */
5955 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
5956 fp = fp->fr_prev;
5957 else
5958 fp = fp->fr_parent;
5959 }
5960 wp->w_status_height = 1;
5961 if (fp != fr)
5962 {
5963 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
5964 frame_fix_height(wp);
5965 (void)win_comp_pos();
5966 }
5967 else
5968 win_new_height(wp, wp->w_height - 1);
5969 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005970 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 }
5972 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 else if (fr->fr_layout == FR_ROW)
5974 {
5975 /* vertically split windows, set status line for each one */
5976 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
5977 last_status_rec(fp, statusline);
5978 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 else
5980 {
5981 /* horizontally split window, set status line for last one */
5982 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
5983 ;
5984 last_status_rec(fp, statusline);
5985 }
5986}
5987
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005988/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005989 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005990 */
5991 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01005992tabline_height(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005993{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005994#ifdef FEAT_GUI_TABLINE
5995 /* When the GUI has the tabline then this always returns zero. */
5996 if (gui_use_tabline())
5997 return 0;
5998#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005999 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00006000 {
6001 case 0: return 0;
6002 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
6003 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006004 return 1;
6005}
6006
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007#endif /* FEAT_WINDOWS */
6008
6009#if defined(FEAT_SEARCHPATH) || defined(PROTO)
6010/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006011 * Get the file name at the cursor.
6012 * If Visual mode is active, use the selected text if it's in one line.
6013 * Returns the name in allocated memory, NULL for failure.
6014 */
6015 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006016grab_file_name(long count, linenr_T *file_lnum)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006017{
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006018 int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC;
6019
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006020 if (VIsual_active)
6021 {
6022 int len;
6023 char_u *ptr;
6024
6025 if (get_visual_text(NULL, &ptr, &len) == FAIL)
6026 return NULL;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006027 return find_file_name_in_path(ptr, len, options,
6028 count, curbuf->b_ffname);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006029 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006030 return file_name_at_cursor(options | FNAME_HYP, count, file_lnum);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006031
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006032}
6033
6034/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 * Return the file name under or after the cursor.
6036 *
6037 * The 'path' option is searched if the file name is not absolute.
6038 * The string returned has been alloc'ed and should be freed by the caller.
6039 * NULL is returned if the file name or file is not found.
6040 *
6041 * options:
6042 * FNAME_MESS give error messages
6043 * FNAME_EXP expand to path
6044 * FNAME_HYP check for hypertext link
6045 * FNAME_INCL apply "includeexpr"
6046 */
6047 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006048file_name_at_cursor(int options, long count, linenr_T *file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049{
6050 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006051 curwin->w_cursor.col, options, count, curbuf->b_ffname,
6052 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053}
6054
6055/*
6056 * Return the name of the file under or after ptr[col].
6057 * Otherwise like file_name_at_cursor().
6058 */
6059 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006060file_name_in_line(
6061 char_u *line,
6062 int col,
6063 int options,
6064 long count,
6065 char_u *rel_fname, /* file we are searching relative to */
6066 linenr_T *file_lnum) /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067{
6068 char_u *ptr;
6069 int len;
6070
6071 /*
6072 * search forward for what could be the start of a file name
6073 */
6074 ptr = line + col;
6075 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar0dd492f2005-06-22 22:25:07 +00006076 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 if (*ptr == NUL) /* nothing found */
6078 {
6079 if (options & FNAME_MESS)
6080 EMSG(_("E446: No file name under cursor"));
6081 return NULL;
6082 }
6083
6084 /*
6085 * Search backward for first char of the file name.
6086 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
6087 */
6088 while (ptr > line)
6089 {
6090#ifdef FEAT_MBYTE
6091 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
6092 ptr -= len + 1;
6093 else
6094#endif
6095 if (vim_isfilec(ptr[-1])
6096 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
6097 --ptr;
6098 else
6099 break;
6100 }
6101
6102 /*
6103 * Search forward for the last char of the file name.
6104 * Also allow "://" when ':' is not in 'isfname'.
6105 */
6106 len = 0;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006107 while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108 || ((options & FNAME_HYP) && path_is_url(ptr + len)))
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006109 {
6110 if (ptr[len] == '\\')
6111 /* Skip over the "\" in "\ ". */
6112 ++len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113#ifdef FEAT_MBYTE
6114 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006115 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 else
6117#endif
6118 ++len;
Bram Moolenaard45c07a2015-02-27 17:19:10 +01006119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120
6121 /*
6122 * If there is trailing punctuation, remove it.
6123 * But don't remove "..", could be a directory name.
6124 */
6125 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
6126 && ptr[len - 2] != '.')
6127 --len;
6128
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006129 if (file_lnum != NULL)
6130 {
6131 char_u *p;
6132
6133 /* Get the number after the file name and a separator character */
6134 p = ptr + len;
6135 p = skipwhite(p);
6136 if (*p != NUL)
6137 {
6138 if (!isdigit(*p))
6139 ++p; /* skip the separator */
6140 p = skipwhite(p);
6141 if (isdigit(*p))
6142 *file_lnum = (int)getdigits(&p);
6143 }
6144 }
6145
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 return find_file_name_in_path(ptr, len, options, count, rel_fname);
6147}
6148
6149# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006150static char_u *eval_includeexpr(char_u *ptr, int len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151
6152 static char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006153eval_includeexpr(char_u *ptr, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154{
6155 char_u *res;
6156
6157 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006158 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006159 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 set_vim_var_string(VV_FNAME, NULL, 0);
6161 return res;
6162}
6163#endif
6164
6165/*
6166 * Return the name of the file ptr[len] in 'path'.
6167 * Otherwise like file_name_at_cursor().
6168 */
6169 char_u *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006170find_file_name_in_path(
6171 char_u *ptr,
6172 int len,
6173 int options,
6174 long count,
6175 char_u *rel_fname) /* file we are searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176{
6177 char_u *file_name;
6178 int c;
6179# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6180 char_u *tofree = NULL;
6181
6182 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6183 {
6184 tofree = eval_includeexpr(ptr, len);
6185 if (tofree != NULL)
6186 {
6187 ptr = tofree;
6188 len = (int)STRLEN(ptr);
6189 }
6190 }
6191# endif
6192
6193 if (options & FNAME_EXP)
6194 {
6195 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6196 TRUE, rel_fname);
6197
6198# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6199 /*
6200 * If the file could not be found in a normal way, try applying
6201 * 'includeexpr' (unless done already).
6202 */
6203 if (file_name == NULL
6204 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6205 {
6206 tofree = eval_includeexpr(ptr, len);
6207 if (tofree != NULL)
6208 {
6209 ptr = tofree;
6210 len = (int)STRLEN(ptr);
6211 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6212 TRUE, rel_fname);
6213 }
6214 }
6215# endif
6216 if (file_name == NULL && (options & FNAME_MESS))
6217 {
6218 c = ptr[len];
6219 ptr[len] = NUL;
6220 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6221 ptr[len] = c;
6222 }
6223
6224 /* Repeat finding the file "count" times. This matters when it
6225 * appears several times in the path. */
6226 while (file_name != NULL && --count > 0)
6227 {
6228 vim_free(file_name);
6229 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6230 }
6231 }
6232 else
6233 file_name = vim_strnsave(ptr, len);
6234
6235# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6236 vim_free(tofree);
6237# endif
6238
6239 return file_name;
6240}
6241#endif /* FEAT_SEARCHPATH */
6242
6243/*
6244 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6245 * Also check for ":\\", which MS Internet Explorer accepts, return
6246 * URL_BACKSLASH.
6247 */
6248 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006249path_is_url(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250{
6251 if (STRNCMP(p, "://", (size_t)3) == 0)
6252 return URL_SLASH;
6253 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6254 return URL_BACKSLASH;
6255 return 0;
6256}
6257
6258/*
6259 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6260 * Return URL_BACKSLASH for "name:\\".
6261 * Return zero otherwise.
6262 */
6263 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006264path_with_url(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265{
6266 char_u *p;
6267
6268 for (p = fname; isalpha(*p); ++p)
6269 ;
6270 return path_is_url(p);
6271}
6272
6273/*
6274 * Return TRUE if "name" is a full (absolute) path name or URL.
6275 */
6276 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006277vim_isAbsName(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278{
6279 return (path_with_url(name) != 0 || mch_isFullName(name));
6280}
6281
6282/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006283 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 *
6285 * return FAIL for failure, OK otherwise
6286 */
6287 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006288vim_FullName(
6289 char_u *fname,
6290 char_u *buf,
6291 int len,
6292 int force) /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293{
6294 int retval = OK;
6295 int url;
6296
6297 *buf = NUL;
6298 if (fname == NULL)
6299 return FAIL;
6300
6301 url = path_with_url(fname);
6302 if (!url)
6303 retval = mch_FullName(fname, buf, len, force);
6304 if (url || retval == FAIL)
6305 {
6306 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006307 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006309#if defined(MACOS_CLASSIC) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 slash_adjust(buf);
6311#endif
6312 return retval;
6313}
6314
6315/*
6316 * Return the minimal number of rows that is needed on the screen to display
6317 * the current number of windows.
6318 */
6319 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006320min_rows(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321{
6322 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006323#ifdef FEAT_WINDOWS
6324 tabpage_T *tp;
6325 int n;
6326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006327
6328 if (firstwin == NULL) /* not initialized yet */
6329 return MIN_LINES;
6330
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006332 total = 0;
6333 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6334 {
6335 n = frame_minheight(tp->tp_topframe, NULL);
6336 if (total < n)
6337 total = n;
6338 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006339 total += tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340#else
Bram Moolenaarf740b292006-02-16 22:11:02 +00006341 total = 1; /* at least one window should have a line! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006343 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 return total;
6345}
6346
6347/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006348 * Return TRUE if there is only one window (in the current tab page), not
6349 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006350 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 */
6352 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006353only_one_window(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354{
6355#ifdef FEAT_WINDOWS
6356 int count = 0;
6357 win_T *wp;
6358
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006359 /* If there is another tab page there always is another window. */
6360 if (first_tabpage->tp_next != NULL)
6361 return FALSE;
6362
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 for (wp = firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar802418d2013-01-17 14:00:11 +01006364 if (wp->w_buffer != NULL
6365 && (!((wp->w_buffer->b_help && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366# ifdef FEAT_QUICKFIX
6367 || wp->w_p_pvw
6368# endif
6369 ) || wp == curwin)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006370# ifdef FEAT_AUTOCMD
6371 && wp != aucmd_win
6372# endif
6373 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 ++count;
6375 return (count <= 1);
6376#else
6377 return TRUE;
6378#endif
6379}
6380
6381#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO)
6382/*
6383 * Correct the cursor line number in other windows. Used after changing the
6384 * current buffer, and before applying autocommands.
6385 * When "do_curwin" is TRUE, also check current window.
6386 */
6387 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006388check_lnums(int do_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389{
6390 win_T *wp;
6391
6392#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006393 tabpage_T *tp;
6394
6395 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
6397#else
6398 wp = curwin;
6399 if (do_curwin)
6400#endif
6401 {
6402 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6403 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6404 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6405 wp->w_topline = curbuf->b_ml.ml_line_count;
6406 }
6407}
6408#endif
6409
6410#if defined(FEAT_WINDOWS) || defined(PROTO)
6411
6412/*
6413 * A snapshot of the window sizes, to restore them after closing the help
6414 * window.
6415 * Only these fields are used:
6416 * fr_layout
6417 * fr_width
6418 * fr_height
6419 * fr_next
6420 * fr_child
6421 * fr_win (only valid for the old curwin, NULL otherwise)
6422 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423
6424/*
6425 * Create a snapshot of the current frame sizes.
6426 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006427 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006428make_snapshot(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006430 clear_snapshot(curtab, idx);
6431 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432}
6433
6434 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006435make_snapshot_rec(frame_T *fr, frame_T **frp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436{
6437 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6438 if (*frp == NULL)
6439 return;
6440 (*frp)->fr_layout = fr->fr_layout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 (*frp)->fr_width = fr->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 (*frp)->fr_height = fr->fr_height;
6443 if (fr->fr_next != NULL)
6444 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6445 if (fr->fr_child != NULL)
6446 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6447 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6448 (*frp)->fr_win = curwin;
6449}
6450
6451/*
6452 * Remove any existing snapshot.
6453 */
6454 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006455clear_snapshot(tabpage_T *tp, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006457 clear_snapshot_rec(tp->tp_snapshot[idx]);
6458 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459}
6460
6461 static void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006462clear_snapshot_rec(frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463{
6464 if (fr != NULL)
6465 {
6466 clear_snapshot_rec(fr->fr_next);
6467 clear_snapshot_rec(fr->fr_child);
6468 vim_free(fr);
6469 }
6470}
6471
6472/*
6473 * Restore a previously created snapshot, if there is any.
6474 * This is only done if the screen size didn't change and the window layout is
6475 * still the same.
6476 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006477 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006478restore_snapshot(
6479 int idx,
6480 int close_curwin) /* closing current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481{
6482 win_T *wp;
6483
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006484 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006485 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006486 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6487 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006489 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 win_comp_pos();
6491 if (wp != NULL && close_curwin)
6492 win_goto(wp);
6493 redraw_all_later(CLEAR);
6494 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006495 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496}
6497
6498/*
6499 * Check if frames "sn" and "fr" have the same layout, same following frames
6500 * and same children.
6501 */
6502 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006503check_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504{
6505 if (sn->fr_layout != fr->fr_layout
6506 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6507 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6508 || (sn->fr_next != NULL
6509 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6510 || (sn->fr_child != NULL
6511 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL))
6512 return FAIL;
6513 return OK;
6514}
6515
6516/*
6517 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6518 * following frames and children.
6519 * Returns a pointer to the old current window, or NULL.
6520 */
6521 static win_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006522restore_snapshot_rec(frame_T *sn, frame_T *fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523{
6524 win_T *wp = NULL;
6525 win_T *wp2;
6526
6527 fr->fr_height = sn->fr_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 fr->fr_width = sn->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 if (fr->fr_layout == FR_LEAF)
6530 {
6531 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006532 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 wp = sn->fr_win;
6534 }
6535 if (sn->fr_next != NULL)
6536 {
6537 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6538 if (wp2 != NULL)
6539 wp = wp2;
6540 }
6541 if (sn->fr_child != NULL)
6542 {
6543 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6544 if (wp2 != NULL)
6545 wp = wp2;
6546 }
6547 return wp;
6548}
6549
6550#endif
6551
Bram Moolenaar95064ec2013-07-17 17:15:25 +02006552#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
6553 || defined(PROTO)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006554/*
6555 * Set "win" to be the curwin and "tp" to be the current tab page.
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02006556 * restore_win() MUST be called to undo, also when FAIL is returned.
6557 * No autocommands will be executed until restore_win() is called.
Bram Moolenaard6949742013-06-16 14:18:28 +02006558 * When "no_display" is TRUE the display won't be affected, no redraw is
6559 * triggered, another tabpage access is limited.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006560 * Returns FAIL if switching to "win" failed.
6561 */
6562 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006563switch_win(
6564 win_T **save_curwin UNUSED,
6565 tabpage_T **save_curtab UNUSED,
6566 win_T *win UNUSED,
6567 tabpage_T *tp UNUSED,
6568 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006569{
6570# ifdef FEAT_AUTOCMD
6571 block_autocmds();
6572# endif
6573# ifdef FEAT_WINDOWS
6574 *save_curwin = curwin;
6575 if (tp != NULL)
6576 {
6577 *save_curtab = curtab;
Bram Moolenaard6949742013-06-16 14:18:28 +02006578 if (no_display)
6579 {
6580 curtab->tp_firstwin = firstwin;
6581 curtab->tp_lastwin = lastwin;
6582 curtab = tp;
6583 firstwin = curtab->tp_firstwin;
6584 lastwin = curtab->tp_lastwin;
6585 }
6586 else
6587 goto_tabpage_tp(tp, FALSE, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006588 }
6589 if (!win_valid(win))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006590 return FAIL;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006591 curwin = win;
6592 curbuf = curwin->w_buffer;
6593# endif
6594 return OK;
6595}
6596
6597/*
6598 * Restore current tabpage and window saved by switch_win(), if still valid.
Bram Moolenaard6949742013-06-16 14:18:28 +02006599 * When "no_display" is TRUE the display won't be affected, no redraw is
6600 * triggered.
Bram Moolenaar105bc352013-05-17 16:03:57 +02006601 */
6602 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006603restore_win(
6604 win_T *save_curwin UNUSED,
6605 tabpage_T *save_curtab UNUSED,
6606 int no_display UNUSED)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006607{
6608# ifdef FEAT_WINDOWS
6609 if (save_curtab != NULL && valid_tabpage(save_curtab))
Bram Moolenaard6949742013-06-16 14:18:28 +02006610 {
6611 if (no_display)
6612 {
6613 curtab->tp_firstwin = firstwin;
6614 curtab->tp_lastwin = lastwin;
6615 curtab = save_curtab;
6616 firstwin = curtab->tp_firstwin;
6617 lastwin = curtab->tp_lastwin;
6618 }
6619 else
6620 goto_tabpage_tp(save_curtab, FALSE, FALSE);
6621 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02006622 if (win_valid(save_curwin))
6623 {
6624 curwin = save_curwin;
6625 curbuf = curwin->w_buffer;
6626 }
6627# endif
6628# ifdef FEAT_AUTOCMD
6629 unblock_autocmds();
6630# endif
6631}
6632
6633/*
6634 * Make "buf" the current buffer. restore_buffer() MUST be called to undo.
6635 * No autocommands will be executed. Use aucmd_prepbuf() if there are any.
6636 */
6637 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006638switch_buffer(bufref_T *save_curbuf, buf_T *buf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006639{
6640# ifdef FEAT_AUTOCMD
6641 block_autocmds();
6642# endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006643 set_bufref(save_curbuf, curbuf);
Bram Moolenaar105bc352013-05-17 16:03:57 +02006644 --curbuf->b_nwindows;
6645 curbuf = buf;
6646 curwin->w_buffer = buf;
6647 ++curbuf->b_nwindows;
6648}
6649
6650/*
6651 * Restore the current buffer after using switch_buffer().
6652 */
6653 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006654restore_buffer(bufref_T *save_curbuf)
Bram Moolenaar105bc352013-05-17 16:03:57 +02006655{
6656# ifdef FEAT_AUTOCMD
6657 unblock_autocmds();
6658# endif
6659 /* Check for valid buffer, just in case. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006660 if (bufref_valid(save_curbuf))
Bram Moolenaar105bc352013-05-17 16:03:57 +02006661 {
6662 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006663 curwin->w_buffer = save_curbuf->br_buf;
6664 curbuf = save_curbuf->br_buf;
Bram Moolenaar105bc352013-05-17 16:03:57 +02006665 ++curbuf->b_nwindows;
6666 }
6667}
6668#endif
6669
Bram Moolenaar44a2f922016-03-19 22:11:51 +01006670#if (defined(FEAT_GUI) && defined(FEAT_WINDOWS)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671/*
6672 * Return TRUE if there is any vertically split window.
6673 */
6674 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006675win_hasvertsplit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676{
6677 frame_T *fr;
6678
6679 if (topframe->fr_layout == FR_ROW)
6680 return TRUE;
6681
6682 if (topframe->fr_layout == FR_COL)
6683 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6684 if (fr->fr_layout == FR_ROW)
6685 return TRUE;
6686
6687 return FALSE;
6688}
6689#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006690
6691#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6692/*
6693 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006694 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006695 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6696 * If no particular ID is desired, -1 must be specified for 'id'.
6697 * Return ID of added match, -1 on failure.
6698 */
6699 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006700match_add(
6701 win_T *wp,
6702 char_u *grp,
6703 char_u *pat,
6704 int prio,
6705 int id,
6706 list_T *pos_list,
6707 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006708{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006709 matchitem_T *cur;
6710 matchitem_T *prev;
6711 matchitem_T *m;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006712 int hlg_id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006713 regprog_T *regprog = NULL;
6714 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006715
Bram Moolenaarb3414592014-06-17 17:48:32 +02006716 if (*grp == NUL || (pat != NULL && *pat == NUL))
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006717 return -1;
6718 if (id < -1 || id == 0)
6719 {
6720 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id);
6721 return -1;
6722 }
6723 if (id != -1)
6724 {
6725 cur = wp->w_match_head;
6726 while (cur != NULL)
6727 {
6728 if (cur->id == id)
6729 {
6730 EMSGN("E801: ID already taken: %ld", id);
6731 return -1;
6732 }
6733 cur = cur->next;
6734 }
6735 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006736 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006737 {
6738 EMSG2(_(e_nogroup), grp);
6739 return -1;
6740 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006741 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006742 {
6743 EMSG2(_(e_invarg2), pat);
6744 return -1;
6745 }
6746
6747 /* Find available match ID. */
6748 while (id == -1)
6749 {
6750 cur = wp->w_match_head;
6751 while (cur != NULL && cur->id != wp->w_next_match_id)
6752 cur = cur->next;
6753 if (cur == NULL)
6754 id = wp->w_next_match_id;
6755 wp->w_next_match_id++;
6756 }
6757
6758 /* Build new match. */
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006759 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T));
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006760 m->id = id;
6761 m->priority = prio;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006762 m->pattern = pat == NULL ? NULL : vim_strsave(pat);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006763 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006764 m->match.regprog = regprog;
6765 m->match.rmm_ic = FALSE;
6766 m->match.rmm_maxcol = 0;
Bram Moolenaar42356152016-03-31 22:27:40 +02006767# if defined(FEAT_CONCEAL) && defined(FEAT_MBYTE)
Bram Moolenaar6561d522015-07-21 15:48:27 +02006768 m->conceal_char = 0;
6769 if (conceal_char != NULL)
6770 m->conceal_char = (*mb_ptr2char)(conceal_char);
Bram Moolenaar42356152016-03-31 22:27:40 +02006771# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006772
Bram Moolenaarb3414592014-06-17 17:48:32 +02006773 /* Set up position matches */
6774 if (pos_list != NULL)
6775 {
6776 linenr_T toplnum = 0;
6777 linenr_T botlnum = 0;
6778 listitem_T *li;
6779 int i;
6780
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006781 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006782 i++, li = li->li_next)
6783 {
6784 linenr_T lnum = 0;
6785 colnr_T col = 0;
6786 int len = 1;
6787 list_T *subl;
6788 listitem_T *subli;
Bram Moolenaardeae0f22014-06-18 21:20:11 +02006789 int error = FALSE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006790
Bram Moolenaarb3414592014-06-17 17:48:32 +02006791 if (li->li_tv.v_type == VAR_LIST)
6792 {
6793 subl = li->li_tv.vval.v_list;
6794 if (subl == NULL)
6795 goto fail;
6796 subli = subl->lv_first;
6797 if (subli == NULL)
6798 goto fail;
6799 lnum = get_tv_number_chk(&subli->li_tv, &error);
6800 if (error == TRUE)
6801 goto fail;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006802 if (lnum == 0)
6803 {
6804 --i;
6805 continue;
6806 }
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006807 m->pos.pos[i].lnum = lnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006808 subli = subli->li_next;
6809 if (subli != NULL)
6810 {
6811 col = get_tv_number_chk(&subli->li_tv, &error);
6812 if (error == TRUE)
6813 goto fail;
6814 subli = subli->li_next;
6815 if (subli != NULL)
6816 {
6817 len = get_tv_number_chk(&subli->li_tv, &error);
6818 if (error == TRUE)
6819 goto fail;
6820 }
6821 }
6822 m->pos.pos[i].col = col;
6823 m->pos.pos[i].len = len;
6824 }
6825 else if (li->li_tv.v_type == VAR_NUMBER)
6826 {
6827 if (li->li_tv.vval.v_number == 0)
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006828 {
6829 --i;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006830 continue;
Bram Moolenaarb6da44a2014-06-25 18:15:22 +02006831 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006832 m->pos.pos[i].lnum = li->li_tv.vval.v_number;
6833 m->pos.pos[i].col = 0;
6834 m->pos.pos[i].len = 0;
6835 }
6836 else
6837 {
6838 EMSG(_("List or number required"));
6839 goto fail;
6840 }
6841 if (toplnum == 0 || lnum < toplnum)
6842 toplnum = lnum;
Bram Moolenaar41d75232014-06-25 17:58:11 +02006843 if (botlnum == 0 || lnum >= botlnum)
6844 botlnum = lnum + 1;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006845 }
6846
6847 /* Calculate top and bottom lines for redrawing area */
6848 if (toplnum != 0)
6849 {
6850 if (wp->w_buffer->b_mod_set)
6851 {
6852 if (wp->w_buffer->b_mod_top > toplnum)
6853 wp->w_buffer->b_mod_top = toplnum;
6854 if (wp->w_buffer->b_mod_bot < botlnum)
6855 wp->w_buffer->b_mod_bot = botlnum;
6856 }
6857 else
6858 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006859 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006860 wp->w_buffer->b_mod_top = toplnum;
6861 wp->w_buffer->b_mod_bot = botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006862 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006863 }
6864 m->pos.toplnum = toplnum;
6865 m->pos.botlnum = botlnum;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006866 rtype = VALID;
6867 }
6868 }
6869
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006870 /* Insert new match. The match list is in ascending order with regard to
6871 * the match priorities. */
6872 cur = wp->w_match_head;
6873 prev = cur;
6874 while (cur != NULL && prio >= cur->priority)
6875 {
6876 prev = cur;
6877 cur = cur->next;
6878 }
6879 if (cur == prev)
6880 wp->w_match_head = m;
6881 else
6882 prev->next = m;
6883 m->next = cur;
6884
Bram Moolenaarb3414592014-06-17 17:48:32 +02006885 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006886 return id;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006887
6888fail:
6889 vim_free(m);
6890 return -1;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006891}
6892
6893/*
6894 * Delete match with ID 'id' in the match list of window 'wp'.
6895 * Print error messages if 'perr' is TRUE.
6896 */
6897 int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006898match_delete(win_T *wp, int id, int perr)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006899{
Bram Moolenaarb3414592014-06-17 17:48:32 +02006900 matchitem_T *cur = wp->w_match_head;
6901 matchitem_T *prev = cur;
6902 int rtype = SOME_VALID;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006903
6904 if (id < 1)
6905 {
6906 if (perr == TRUE)
6907 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)",
6908 id);
6909 return -1;
6910 }
6911 while (cur != NULL && cur->id != id)
6912 {
6913 prev = cur;
6914 cur = cur->next;
6915 }
6916 if (cur == NULL)
6917 {
6918 if (perr == TRUE)
6919 EMSGN("E803: ID not found: %ld", id);
6920 return -1;
6921 }
6922 if (cur == prev)
6923 wp->w_match_head = cur->next;
6924 else
6925 prev->next = cur->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006926 vim_regfree(cur->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006927 vim_free(cur->pattern);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006928 if (cur->pos.toplnum != 0)
6929 {
6930 if (wp->w_buffer->b_mod_set)
6931 {
6932 if (wp->w_buffer->b_mod_top > cur->pos.toplnum)
6933 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6934 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum)
6935 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
6936 }
6937 else
6938 {
Bram Moolenaardab70c62014-07-02 17:16:58 +02006939 wp->w_buffer->b_mod_set = TRUE;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006940 wp->w_buffer->b_mod_top = cur->pos.toplnum;
6941 wp->w_buffer->b_mod_bot = cur->pos.botlnum;
Bram Moolenaardab70c62014-07-02 17:16:58 +02006942 wp->w_buffer->b_mod_xlines = 0;
Bram Moolenaarb3414592014-06-17 17:48:32 +02006943 }
Bram Moolenaarb3414592014-06-17 17:48:32 +02006944 rtype = VALID;
6945 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006946 vim_free(cur);
Bram Moolenaarb3414592014-06-17 17:48:32 +02006947 redraw_later(rtype);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006948 return 0;
6949}
6950
6951/*
6952 * Delete all matches in the match list of window 'wp'.
6953 */
6954 void
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006955clear_matches(win_T *wp)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006956{
6957 matchitem_T *m;
6958
6959 while (wp->w_match_head != NULL)
6960 {
6961 m = wp->w_match_head->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02006962 vim_regfree(wp->w_match_head->match.regprog);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006963 vim_free(wp->w_match_head->pattern);
6964 vim_free(wp->w_match_head);
6965 wp->w_match_head = m;
6966 }
6967 redraw_later(SOME_VALID);
6968}
6969
6970/*
6971 * Get match from ID 'id' in window 'wp'.
6972 * Return NULL if match not found.
6973 */
6974 matchitem_T *
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01006975get_match(win_T *wp, int id)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006976{
6977 matchitem_T *cur = wp->w_match_head;
6978
6979 while (cur != NULL && cur->id != id)
6980 cur = cur->next;
6981 return cur;
6982}
6983#endif
Bram Moolenaar6d216452013-05-12 19:00:41 +02006984
6985#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
6986 int
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006987get_win_number(win_T *wp, win_T *first_win)
Bram Moolenaar6d216452013-05-12 19:00:41 +02006988{
6989 int i = 1;
6990 win_T *w;
6991
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006992 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w))
Bram Moolenaar6d216452013-05-12 19:00:41 +02006993 ++i;
6994
6995 if (w == NULL)
6996 return 0;
6997 else
6998 return i;
6999}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007000
7001 int
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007002get_tab_number(tabpage_T *tp UNUSED)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007003{
7004 int i = 1;
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007005# ifdef FEAT_WINDOWS
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007006 tabpage_T *t;
7007
7008 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next)
7009 ++i;
7010
7011 if (t == NULL)
7012 return 0;
7013 else
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02007014# endif
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02007015 return i;
7016}
Bram Moolenaar6d216452013-05-12 19:00:41 +02007017#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007018
Bram Moolenaar6a2697f2015-11-19 13:14:30 +01007019#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007020/*
7021 * Return TRUE if "topfrp" and its children are at the right height.
7022 */
7023 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007024frame_check_height(frame_T *topfrp, int height)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007025{
7026 frame_T *frp;
7027
7028 if (topfrp->fr_height != height)
7029 return FALSE;
7030
7031 if (topfrp->fr_layout == FR_ROW)
7032 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7033 if (frp->fr_height != height)
7034 return FALSE;
7035
7036 return TRUE;
7037}
Bram Moolenaarf0327f62013-06-28 20:16:55 +02007038#endif
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007039
Bram Moolenaar44a2f922016-03-19 22:11:51 +01007040#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007041/*
7042 * Return TRUE if "topfrp" and its children are at the right width.
7043 */
7044 static int
Bram Moolenaarb638a7b2016-01-30 21:29:58 +01007045frame_check_width(frame_T *topfrp, int width)
Bram Moolenaarb893ac22013-06-26 14:04:47 +02007046{
7047 frame_T *frp;
7048
7049 if (topfrp->fr_width != width)
7050 return FALSE;
7051
7052 if (topfrp->fr_layout == FR_COL)
7053 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
7054 if (frp->fr_width != width)
7055 return FALSE;
7056
7057 return TRUE;
7058}
7059#endif
7060
Bram Moolenaar86edef62016-03-13 18:07:30 +01007061#if defined(FEAT_EVAL) || defined(PROTO)
7062 int
7063win_getid(typval_T *argvars)
7064{
7065 int winnr;
7066 win_T *wp;
7067
7068 if (argvars[0].v_type == VAR_UNKNOWN)
7069 return curwin->w_id;
7070 winnr = get_tv_number(&argvars[0]);
7071 if (winnr > 0)
7072 {
7073 if (argvars[1].v_type == VAR_UNKNOWN)
7074 wp = firstwin;
7075 else
7076 {
7077 tabpage_T *tp;
7078 int tabnr = get_tv_number(&argvars[1]);
7079
7080 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7081 if (--tabnr == 0)
7082 break;
7083 if (tp == NULL)
7084 return -1;
7085 wp = tp->tp_firstwin;
7086 }
7087 for ( ; wp != NULL; wp = wp->w_next)
7088 if (--winnr == 0)
7089 return wp->w_id;
7090 }
7091 return 0;
7092}
7093
7094 int
7095win_gotoid(typval_T *argvars)
7096{
7097 win_T *wp;
7098 tabpage_T *tp;
7099 int id = get_tv_number(&argvars[0]);
7100
7101 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7102 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7103 wp != NULL; wp = wp->w_next)
7104 if (wp->w_id == id)
7105 {
7106 goto_tabpage_win(tp, wp);
7107 return 1;
7108 }
7109 return 0;
7110}
7111
7112 void
7113win_id2tabwin(typval_T *argvars, list_T *list)
7114{
7115 win_T *wp;
7116 tabpage_T *tp;
7117 int winnr = 1;
7118 int tabnr = 1;
7119 int id = get_tv_number(&argvars[0]);
7120
7121 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7122 {
7123 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7124 wp != NULL; wp = wp->w_next)
7125 {
7126 if (wp->w_id == id)
7127 {
7128 list_append_number(list, tabnr);
7129 list_append_number(list, winnr);
7130 return;
7131 }
7132 ++winnr;
7133 }
7134 ++tabnr;
7135 winnr = 1;
7136 }
7137 list_append_number(list, 0);
7138 list_append_number(list, 0);
7139}
7140
7141 int
7142win_id2win(typval_T *argvars)
7143{
7144 win_T *wp;
7145 int nr = 1;
7146 int id = get_tv_number(&argvars[0]);
7147
7148 for (wp = firstwin; wp != NULL; wp = wp->w_next)
7149 {
7150 if (wp->w_id == id)
7151 return nr;
7152 ++nr;
7153 }
7154 return 0;
7155}
Bram Moolenaar9cdf86b2016-03-13 19:04:51 +01007156
7157 void
7158win_findbuf(typval_T *argvars, list_T *list)
7159{
7160 win_T *wp;
7161 tabpage_T *tp;
7162 int bufnr = get_tv_number(&argvars[0]);
7163
7164 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7165 for (wp = tp == curtab ? firstwin : tp->tp_firstwin;
7166 wp != NULL; wp = wp->w_next)
7167 if (wp->w_buffer->b_fnum == bufnr)
7168 list_append_number(list, wp->w_id);
7169}
7170
Bram Moolenaar86edef62016-03-13 18:07:30 +01007171#endif