Mercurial > vim
annotate src/window.c @ 4906:c8f3c963f8fc
Added tag v7-3-1198 for changeset 517fa1a34c7c
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 15 Jun 2013 16:47:36 +0200 |
parents | 66803af09906 |
children | 0792cc5133ce |
rev | line source |
---|---|
7 | 1 /* 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 | |
12 static int path_is_url __ARGS((char_u *p)); | |
13 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
1822 | 14 static void win_init __ARGS((win_T *newp, win_T *oldp, int flags)); |
1906 | 15 static void win_init_some __ARGS((win_T *newp, win_T *oldp)); |
7 | 16 static void frame_comp_pos __ARGS((frame_T *topfrp, int *row, int *col)); |
17 static void frame_setheight __ARGS((frame_T *curfrp, int height)); | |
18 #ifdef FEAT_VERTSPLIT | |
19 static void frame_setwidth __ARGS((frame_T *curfrp, int width)); | |
20 #endif | |
21 static void win_exchange __ARGS((long)); | |
22 static void win_rotate __ARGS((int, int)); | |
23 static void win_totop __ARGS((int size, int flags)); | |
24 static void win_equal_rec __ARGS((win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height)); | |
672 | 25 static int last_window __ARGS((void)); |
3535 | 26 static int close_last_window_tabpage __ARGS((win_T *win, int free_buf, tabpage_T *prev_curtab)); |
671 | 27 static win_T *win_free_mem __ARGS((win_T *win, int *dirp, tabpage_T *tp)); |
28 static frame_T *win_altframe __ARGS((win_T *win, tabpage_T *tp)); | |
667 | 29 static tabpage_T *alt_tabpage __ARGS((void)); |
7 | 30 static win_T *frame2win __ARGS((frame_T *frp)); |
31 static int frame_has_win __ARGS((frame_T *frp, win_T *wp)); | |
32 static void frame_new_height __ARGS((frame_T *topfrp, int height, int topfirst, int wfh)); | |
33 static int frame_fixed_height __ARGS((frame_T *frp)); | |
34 #ifdef FEAT_VERTSPLIT | |
779 | 35 static int frame_fixed_width __ARGS((frame_T *frp)); |
7 | 36 static void frame_add_statusline __ARGS((frame_T *frp)); |
779 | 37 static void frame_new_width __ARGS((frame_T *topfrp, int width, int leftfirst, int wfw)); |
7 | 38 static void frame_add_vsep __ARGS((frame_T *frp)); |
39 static int frame_minwidth __ARGS((frame_T *topfrp, win_T *next_curwin)); | |
40 static void frame_fix_width __ARGS((win_T *wp)); | |
41 #endif | |
667 | 42 #endif |
675 | 43 static int win_alloc_firstwin __ARGS((win_T *oldwin)); |
1906 | 44 static void new_frame __ARGS((win_T *wp)); |
667 | 45 #if defined(FEAT_WINDOWS) || defined(PROTO) |
672 | 46 static tabpage_T *alloc_tabpage __ARGS((void)); |
4354 | 47 static int leave_tabpage __ARGS((buf_T *new_curbuf, int trigger_leave_autocmds)); |
48 static void enter_tabpage __ARGS((tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds)); | |
7 | 49 static void frame_fix_height __ARGS((win_T *wp)); |
50 static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin)); | |
4354 | 51 static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin, int trigger_enter_autocmds, int trigger_leave_autocmds)); |
671 | 52 static void win_free __ARGS((win_T *wp, tabpage_T *tp)); |
7 | 53 static void frame_append __ARGS((frame_T *after, frame_T *frp)); |
54 static void frame_insert __ARGS((frame_T *before, frame_T *frp)); | |
55 static void frame_remove __ARGS((frame_T *frp)); | |
56 #ifdef FEAT_VERTSPLIT | |
57 static void win_goto_ver __ARGS((int up, long count)); | |
58 static void win_goto_hor __ARGS((int left, long count)); | |
59 #endif | |
60 static void frame_add_height __ARGS((frame_T *frp, int n)); | |
61 static void last_status_rec __ARGS((frame_T *fr, int statusline)); | |
62 | |
63 static void make_snapshot_rec __ARGS((frame_T *fr, frame_T **frp)); | |
1906 | 64 static void clear_snapshot __ARGS((tabpage_T *tp, int idx)); |
7 | 65 static void clear_snapshot_rec __ARGS((frame_T *fr)); |
66 static int check_snapshot_rec __ARGS((frame_T *sn, frame_T *fr)); | |
67 static win_T *restore_snapshot_rec __ARGS((frame_T *sn, frame_T *fr)); | |
68 | |
69 #endif /* FEAT_WINDOWS */ | |
1326 | 70 |
1906 | 71 static win_T *win_alloc __ARGS((win_T *after, int hidden)); |
2665 | 72 static void set_fraction __ARGS((win_T *wp)); |
7 | 73 |
74 #define URL_SLASH 1 /* path_is_url() has found "://" */ | |
75 #define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */ | |
76 | |
1187 | 77 #define NOWIN (win_T *)-1 /* non-existing window */ |
7 | 78 |
170 | 79 #ifdef FEAT_WINDOWS |
685 | 80 # define ROWS_AVAIL (Rows - p_ch - tabline_height()) |
667 | 81 #else |
82 # define ROWS_AVAIL (Rows - p_ch) | |
170 | 83 #endif |
84 | |
7 | 85 #if defined(FEAT_WINDOWS) || defined(PROTO) |
826 | 86 |
87 static char *m_onlyone = N_("Already only one window"); | |
88 | |
7 | 89 /* |
90 * all CTRL-W window commands are handled here, called from normal_cmd(). | |
91 */ | |
92 void | |
93 do_window(nchar, Prenum, xchar) | |
94 int nchar; | |
95 long Prenum; | |
96 int xchar; /* extra char from ":wincmd gx" or NUL */ | |
97 { | |
98 long Prenum1; | |
99 win_T *wp; | |
100 #if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID) | |
101 char_u *ptr; | |
681 | 102 linenr_T lnum = -1; |
7 | 103 #endif |
104 #ifdef FEAT_FIND_ID | |
105 int type = FIND_DEFINE; | |
106 int len; | |
107 #endif | |
108 char_u cbuf[40]; | |
109 | |
110 if (Prenum == 0) | |
111 Prenum1 = 1; | |
112 else | |
113 Prenum1 = Prenum; | |
114 | |
115 #ifdef FEAT_CMDWIN | |
116 # define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; } | |
117 #else | |
118 # define CHECK_CMDWIN | |
119 #endif | |
120 | |
121 switch (nchar) | |
122 { | |
123 /* split current window in two parts, horizontally */ | |
124 case 'S': | |
125 case Ctrl_S: | |
126 case 's': | |
127 CHECK_CMDWIN | |
128 #ifdef FEAT_VISUAL | |
129 reset_VIsual_and_resel(); /* stop Visual mode */ | |
130 #endif | |
635 | 131 #ifdef FEAT_QUICKFIX |
132 /* When splitting the quickfix window open a new buffer in it, | |
133 * don't replicate the quickfix buffer. */ | |
134 if (bt_quickfix(curbuf)) | |
135 goto newwindow; | |
136 #endif | |
7 | 137 #ifdef FEAT_GUI |
138 need_mouse_correct = TRUE; | |
139 #endif | |
140 win_split((int)Prenum, 0); | |
141 break; | |
142 | |
143 #ifdef FEAT_VERTSPLIT | |
144 /* split current window in two parts, vertically */ | |
145 case Ctrl_V: | |
146 case 'v': | |
147 CHECK_CMDWIN | |
1664 | 148 # ifdef FEAT_VISUAL |
7 | 149 reset_VIsual_and_resel(); /* stop Visual mode */ |
1664 | 150 # endif |
151 # ifdef FEAT_QUICKFIX | |
152 /* When splitting the quickfix window open a new buffer in it, | |
153 * don't replicate the quickfix buffer. */ | |
154 if (bt_quickfix(curbuf)) | |
155 goto newwindow; | |
156 # endif | |
157 # ifdef FEAT_GUI | |
7 | 158 need_mouse_correct = TRUE; |
1664 | 159 # endif |
7 | 160 win_split((int)Prenum, WSP_VERT); |
161 break; | |
162 #endif | |
163 | |
164 /* split current window and edit alternate file */ | |
165 case Ctrl_HAT: | |
166 case '^': | |
167 CHECK_CMDWIN | |
168 #ifdef FEAT_VISUAL | |
169 reset_VIsual_and_resel(); /* stop Visual mode */ | |
170 #endif | |
171 STRCPY(cbuf, "split #"); | |
172 if (Prenum) | |
1664 | 173 vim_snprintf((char *)cbuf + 7, sizeof(cbuf) - 7, |
174 "%ld", Prenum); | |
7 | 175 do_cmdline_cmd(cbuf); |
176 break; | |
177 | |
178 /* open new window */ | |
179 case Ctrl_N: | |
180 case 'n': | |
181 CHECK_CMDWIN | |
182 #ifdef FEAT_VISUAL | |
183 reset_VIsual_and_resel(); /* stop Visual mode */ | |
184 #endif | |
635 | 185 #ifdef FEAT_QUICKFIX |
186 newwindow: | |
187 #endif | |
7 | 188 if (Prenum) |
1664 | 189 /* window height */ |
190 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum); | |
7 | 191 else |
192 cbuf[0] = NUL; | |
1664 | 193 #if defined(FEAT_VERTSPLIT) && defined(FEAT_QUICKFIX) |
194 if (nchar == 'v' || nchar == Ctrl_V) | |
195 STRCAT(cbuf, "v"); | |
196 #endif | |
7 | 197 STRCAT(cbuf, "new"); |
198 do_cmdline_cmd(cbuf); | |
199 break; | |
200 | |
201 /* quit current window */ | |
202 case Ctrl_Q: | |
203 case 'q': | |
204 #ifdef FEAT_VISUAL | |
205 reset_VIsual_and_resel(); /* stop Visual mode */ | |
206 #endif | |
207 do_cmdline_cmd((char_u *)"quit"); | |
208 break; | |
209 | |
210 /* close current window */ | |
211 case Ctrl_C: | |
212 case 'c': | |
213 #ifdef FEAT_VISUAL | |
214 reset_VIsual_and_resel(); /* stop Visual mode */ | |
215 #endif | |
216 do_cmdline_cmd((char_u *)"close"); | |
217 break; | |
218 | |
219 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) | |
220 /* close preview window */ | |
221 case Ctrl_Z: | |
222 case 'z': | |
223 CHECK_CMDWIN | |
224 #ifdef FEAT_VISUAL | |
225 reset_VIsual_and_resel(); /* stop Visual mode */ | |
226 #endif | |
227 do_cmdline_cmd((char_u *)"pclose"); | |
228 break; | |
229 | |
230 /* cursor to preview window */ | |
231 case 'P': | |
232 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
233 if (wp->w_p_pvw) | |
234 break; | |
235 if (wp == NULL) | |
236 EMSG(_("E441: There is no preview window")); | |
237 else | |
238 win_goto(wp); | |
239 break; | |
240 #endif | |
241 | |
242 /* close all but current window */ | |
243 case Ctrl_O: | |
244 case 'o': | |
245 CHECK_CMDWIN | |
246 #ifdef FEAT_VISUAL | |
247 reset_VIsual_and_resel(); /* stop Visual mode */ | |
248 #endif | |
249 do_cmdline_cmd((char_u *)"only"); | |
250 break; | |
251 | |
252 /* cursor to next window with wrap around */ | |
253 case Ctrl_W: | |
254 case 'w': | |
255 /* cursor to previous window with wrap around */ | |
256 case 'W': | |
257 CHECK_CMDWIN | |
1906 | 258 if (firstwin == lastwin && Prenum != 1) /* just one window */ |
7 | 259 beep_flush(); |
260 else | |
261 { | |
262 if (Prenum) /* go to specified window */ | |
263 { | |
264 for (wp = firstwin; --Prenum > 0; ) | |
265 { | |
266 if (wp->w_next == NULL) | |
267 break; | |
268 else | |
269 wp = wp->w_next; | |
270 } | |
271 } | |
272 else | |
273 { | |
274 if (nchar == 'W') /* go to previous window */ | |
275 { | |
276 wp = curwin->w_prev; | |
277 if (wp == NULL) | |
278 wp = lastwin; /* wrap around */ | |
279 } | |
280 else /* go to next window */ | |
281 { | |
282 wp = curwin->w_next; | |
283 if (wp == NULL) | |
284 wp = firstwin; /* wrap around */ | |
285 } | |
286 } | |
287 win_goto(wp); | |
288 } | |
289 break; | |
290 | |
291 /* cursor to window below */ | |
292 case 'j': | |
293 case K_DOWN: | |
294 case Ctrl_J: | |
295 CHECK_CMDWIN | |
296 #ifdef FEAT_VERTSPLIT | |
297 win_goto_ver(FALSE, Prenum1); | |
298 #else | |
299 for (wp = curwin; wp->w_next != NULL && Prenum1-- > 0; | |
300 wp = wp->w_next) | |
301 ; | |
302 win_goto(wp); | |
303 #endif | |
304 break; | |
305 | |
306 /* cursor to window above */ | |
307 case 'k': | |
308 case K_UP: | |
309 case Ctrl_K: | |
310 CHECK_CMDWIN | |
311 #ifdef FEAT_VERTSPLIT | |
312 win_goto_ver(TRUE, Prenum1); | |
313 #else | |
314 for (wp = curwin; wp->w_prev != NULL && Prenum1-- > 0; | |
315 wp = wp->w_prev) | |
316 ; | |
317 win_goto(wp); | |
318 #endif | |
319 break; | |
320 | |
321 #ifdef FEAT_VERTSPLIT | |
322 /* cursor to left window */ | |
323 case 'h': | |
324 case K_LEFT: | |
325 case Ctrl_H: | |
326 case K_BS: | |
327 CHECK_CMDWIN | |
328 win_goto_hor(TRUE, Prenum1); | |
329 break; | |
330 | |
331 /* cursor to right window */ | |
332 case 'l': | |
333 case K_RIGHT: | |
334 case Ctrl_L: | |
335 CHECK_CMDWIN | |
336 win_goto_hor(FALSE, Prenum1); | |
337 break; | |
338 #endif | |
339 | |
826 | 340 /* move window to new tab page */ |
341 case 'T': | |
1906 | 342 if (one_window()) |
826 | 343 MSG(_(m_onlyone)); |
344 else | |
345 { | |
346 tabpage_T *oldtab = curtab; | |
347 tabpage_T *newtab; | |
348 | |
349 /* First create a new tab with the window, then go back to | |
350 * the old tab and close the window there. */ | |
944 | 351 wp = curwin; |
826 | 352 if (win_new_tabpage((int)Prenum) == OK |
353 && valid_tabpage(oldtab)) | |
354 { | |
355 newtab = curtab; | |
4354 | 356 goto_tabpage_tp(oldtab, TRUE, TRUE); |
826 | 357 if (curwin == wp) |
358 win_close(curwin, FALSE); | |
359 if (valid_tabpage(newtab)) | |
4354 | 360 goto_tabpage_tp(newtab, TRUE, TRUE); |
826 | 361 } |
362 } | |
363 break; | |
364 | |
7 | 365 /* cursor to top-left window */ |
366 case 't': | |
367 case Ctrl_T: | |
368 win_goto(firstwin); | |
369 break; | |
370 | |
371 /* cursor to bottom-right window */ | |
372 case 'b': | |
373 case Ctrl_B: | |
374 win_goto(lastwin); | |
375 break; | |
376 | |
377 /* cursor to last accessed (previous) window */ | |
378 case 'p': | |
379 case Ctrl_P: | |
380 if (prevwin == NULL) | |
381 beep_flush(); | |
382 else | |
383 win_goto(prevwin); | |
384 break; | |
385 | |
386 /* exchange current and next window */ | |
387 case 'x': | |
388 case Ctrl_X: | |
389 CHECK_CMDWIN | |
390 win_exchange(Prenum); | |
391 break; | |
392 | |
393 /* rotate windows downwards */ | |
394 case Ctrl_R: | |
395 case 'r': | |
396 CHECK_CMDWIN | |
397 #ifdef FEAT_VISUAL | |
398 reset_VIsual_and_resel(); /* stop Visual mode */ | |
399 #endif | |
400 win_rotate(FALSE, (int)Prenum1); /* downwards */ | |
401 break; | |
402 | |
403 /* rotate windows upwards */ | |
404 case 'R': | |
405 CHECK_CMDWIN | |
406 #ifdef FEAT_VISUAL | |
407 reset_VIsual_and_resel(); /* stop Visual mode */ | |
408 #endif | |
409 win_rotate(TRUE, (int)Prenum1); /* upwards */ | |
410 break; | |
411 | |
412 /* move window to the very top/bottom/left/right */ | |
413 case 'K': | |
414 case 'J': | |
415 #ifdef FEAT_VERTSPLIT | |
416 case 'H': | |
417 case 'L': | |
418 #endif | |
419 CHECK_CMDWIN | |
420 win_totop((int)Prenum, | |
421 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0) | |
422 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT)); | |
423 break; | |
424 | |
425 /* make all windows the same height */ | |
426 case '=': | |
427 #ifdef FEAT_GUI | |
428 need_mouse_correct = TRUE; | |
429 #endif | |
430 win_equal(NULL, FALSE, 'b'); | |
431 break; | |
432 | |
433 /* increase current window height */ | |
434 case '+': | |
435 #ifdef FEAT_GUI | |
436 need_mouse_correct = TRUE; | |
437 #endif | |
438 win_setheight(curwin->w_height + (int)Prenum1); | |
439 break; | |
440 | |
441 /* decrease current window height */ | |
442 case '-': | |
443 #ifdef FEAT_GUI | |
444 need_mouse_correct = TRUE; | |
445 #endif | |
446 win_setheight(curwin->w_height - (int)Prenum1); | |
447 break; | |
448 | |
449 /* set current window height */ | |
450 case Ctrl__: | |
451 case '_': | |
452 #ifdef FEAT_GUI | |
453 need_mouse_correct = TRUE; | |
454 #endif | |
455 win_setheight(Prenum ? (int)Prenum : 9999); | |
456 break; | |
457 | |
458 #ifdef FEAT_VERTSPLIT | |
459 /* increase current window width */ | |
460 case '>': | |
461 #ifdef FEAT_GUI | |
462 need_mouse_correct = TRUE; | |
463 #endif | |
464 win_setwidth(curwin->w_width + (int)Prenum1); | |
465 break; | |
466 | |
467 /* decrease current window width */ | |
468 case '<': | |
469 #ifdef FEAT_GUI | |
470 need_mouse_correct = TRUE; | |
471 #endif | |
472 win_setwidth(curwin->w_width - (int)Prenum1); | |
473 break; | |
474 | |
475 /* set current window width */ | |
476 case '|': | |
477 #ifdef FEAT_GUI | |
478 need_mouse_correct = TRUE; | |
479 #endif | |
480 win_setwidth(Prenum != 0 ? (int)Prenum : 9999); | |
481 break; | |
482 #endif | |
483 | |
484 /* jump to tag and split window if tag exists (in preview window) */ | |
485 #if defined(FEAT_QUICKFIX) | |
486 case '}': | |
487 CHECK_CMDWIN | |
488 if (Prenum) | |
489 g_do_tagpreview = Prenum; | |
490 else | |
491 g_do_tagpreview = p_pvh; | |
492 /*FALLTHROUGH*/ | |
493 #endif | |
494 case ']': | |
495 case Ctrl_RSB: | |
496 CHECK_CMDWIN | |
497 #ifdef FEAT_VISUAL | |
498 reset_VIsual_and_resel(); /* stop Visual mode */ | |
499 #endif | |
500 if (Prenum) | |
501 postponed_split = Prenum; | |
502 else | |
503 postponed_split = -1; | |
504 | |
505 /* Execute the command right here, required when | |
506 * "wincmd ]" was used in a function. */ | |
507 do_nv_ident(Ctrl_RSB, NUL); | |
508 break; | |
509 | |
510 #ifdef FEAT_SEARCHPATH | |
511 /* edit file name under cursor in a new window */ | |
512 case 'f': | |
681 | 513 case 'F': |
7 | 514 case Ctrl_F: |
820 | 515 wingotofile: |
7 | 516 CHECK_CMDWIN |
344 | 517 |
681 | 518 ptr = grab_file_name(Prenum1, &lnum); |
7 | 519 if (ptr != NULL) |
520 { | |
820 | 521 # ifdef FEAT_GUI |
7 | 522 need_mouse_correct = TRUE; |
820 | 523 # endif |
7 | 524 setpcmark(); |
525 if (win_split(0, 0) == OK) | |
526 { | |
2583 | 527 RESET_BINDING(curwin); |
1743 | 528 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL, |
529 ECMD_HIDE, NULL); | |
681 | 530 if (nchar == 'F' && lnum >= 0) |
531 { | |
532 curwin->w_cursor.lnum = lnum; | |
533 check_cursor_lnum(); | |
534 beginline(BL_SOL | BL_FIX); | |
535 } | |
7 | 536 } |
537 vim_free(ptr); | |
538 } | |
539 break; | |
540 #endif | |
541 | |
542 #ifdef FEAT_FIND_ID | |
1187 | 543 /* Go to the first occurrence of the identifier under cursor along path in a |
7 | 544 * new window -- webb |
545 */ | |
546 case 'i': /* Go to any match */ | |
547 case Ctrl_I: | |
548 type = FIND_ANY; | |
549 /* FALLTHROUGH */ | |
550 case 'd': /* Go to definition, using 'define' */ | |
551 case Ctrl_D: | |
552 CHECK_CMDWIN | |
553 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) | |
554 break; | |
555 find_pattern_in_path(ptr, 0, len, TRUE, | |
556 Prenum == 0 ? TRUE : FALSE, type, | |
557 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM); | |
558 curwin->w_set_curswant = TRUE; | |
559 break; | |
560 #endif | |
561 | |
170 | 562 case K_KENTER: |
563 case CAR: | |
564 #if defined(FEAT_QUICKFIX) | |
565 /* | |
566 * In a quickfix window a <CR> jumps to the error under the | |
567 * cursor in a new window. | |
568 */ | |
569 if (bt_quickfix(curbuf)) | |
570 { | |
643 | 571 sprintf((char *)cbuf, "split +%ld%s", |
572 (long)curwin->w_cursor.lnum, | |
573 (curwin->w_llist_ref == NULL) ? "cc" : "ll"); | |
170 | 574 do_cmdline_cmd(cbuf); |
575 } | |
576 #endif | |
577 break; | |
578 | |
579 | |
7 | 580 /* CTRL-W g extended commands */ |
581 case 'g': | |
582 case Ctrl_G: | |
583 CHECK_CMDWIN | |
584 #ifdef USE_ON_FLY_SCROLL | |
585 dont_scroll = TRUE; /* disallow scrolling here */ | |
586 #endif | |
587 ++no_mapping; | |
588 ++allow_keys; /* no mapping for xchar, but allow key codes */ | |
589 if (xchar == NUL) | |
1389 | 590 xchar = plain_vgetc(); |
7 | 591 LANGMAP_ADJUST(xchar, TRUE); |
592 --no_mapping; | |
593 --allow_keys; | |
594 #ifdef FEAT_CMDL_INFO | |
595 (void)add_to_showcmd(xchar); | |
596 #endif | |
597 switch (xchar) | |
598 { | |
599 #if defined(FEAT_QUICKFIX) | |
600 case '}': | |
601 xchar = Ctrl_RSB; | |
602 if (Prenum) | |
603 g_do_tagpreview = Prenum; | |
604 else | |
605 g_do_tagpreview = p_pvh; | |
606 /*FALLTHROUGH*/ | |
607 #endif | |
608 case ']': | |
609 case Ctrl_RSB: | |
610 #ifdef FEAT_VISUAL | |
611 reset_VIsual_and_resel(); /* stop Visual mode */ | |
612 #endif | |
613 if (Prenum) | |
614 postponed_split = Prenum; | |
615 else | |
616 postponed_split = -1; | |
617 | |
618 /* Execute the command right here, required when | |
619 * "wincmd g}" was used in a function. */ | |
620 do_nv_ident('g', xchar); | |
621 break; | |
622 | |
820 | 623 #ifdef FEAT_SEARCHPATH |
624 case 'f': /* CTRL-W gf: "gf" in a new tab page */ | |
839 | 625 case 'F': /* CTRL-W gF: "gF" in a new tab page */ |
2064
f398e0cc5b7a
updated for version 7.2.349
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
626 cmdmod.tab = tabpage_index(curtab) + 1; |
839 | 627 nchar = xchar; |
820 | 628 goto wingotofile; |
629 #endif | |
7 | 630 default: |
631 beep_flush(); | |
632 break; | |
633 } | |
634 break; | |
635 | |
636 default: beep_flush(); | |
637 break; | |
638 } | |
639 } | |
640 | |
641 /* | |
642 * split the current window, implements CTRL-W s and :split | |
643 * | |
644 * "size" is the height or width for the new window, 0 to use half of current | |
645 * height or width. | |
646 * | |
647 * "flags": | |
648 * WSP_ROOM: require enough room for new window | |
649 * WSP_VERT: vertical split. | |
650 * WSP_TOP: open window at the top-left of the shell (help window). | |
651 * WSP_BOT: open window at the bottom-right of the shell (quickfix window). | |
652 * WSP_HELP: creating the help window, keep layout snapshot | |
653 * | |
654 * return FAIL for failure, OK otherwise | |
655 */ | |
656 int | |
657 win_split(size, flags) | |
658 int size; | |
659 int flags; | |
660 { | |
682 | 661 /* When the ":tab" modifier was used open a new tab page instead. */ |
662 if (may_open_tabpage() == OK) | |
663 return OK; | |
664 | |
7 | 665 /* Add flags from ":vertical", ":topleft" and ":botright". */ |
666 flags |= cmdmod.split; | |
667 if ((flags & WSP_TOP) && (flags & WSP_BOT)) | |
668 { | |
669 EMSG(_("E442: Can't split topleft and botright at the same time")); | |
670 return FAIL; | |
671 } | |
672 | |
673 /* When creating the help window make a snapshot of the window layout. | |
674 * Otherwise clear the snapshot, it's now invalid. */ | |
675 if (flags & WSP_HELP) | |
1906 | 676 make_snapshot(SNAP_HELP_IDX); |
7 | 677 else |
1906 | 678 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 679 |
680 return win_split_ins(size, flags, NULL, 0); | |
681 } | |
682 | |
683 /* | |
3263 | 684 * When "new_wp" is NULL: split the current window in two. |
685 * When "new_wp" is not NULL: insert this window at the far | |
7 | 686 * top/left/right/bottom. |
687 * return FAIL for failure, OK otherwise | |
688 */ | |
1906 | 689 int |
3263 | 690 win_split_ins(size, flags, new_wp, dir) |
7 | 691 int size; |
692 int flags; | |
3263 | 693 win_T *new_wp; |
7 | 694 int dir; |
695 { | |
3263 | 696 win_T *wp = new_wp; |
7 | 697 win_T *oldwin; |
698 int new_size = size; | |
699 int i; | |
700 int need_status = 0; | |
701 int do_equal = FALSE; | |
702 int needed; | |
703 int available; | |
704 int oldwin_height = 0; | |
705 int layout; | |
706 frame_T *frp, *curfrp; | |
707 int before; | |
708 | |
709 if (flags & WSP_TOP) | |
710 oldwin = firstwin; | |
711 else if (flags & WSP_BOT) | |
712 oldwin = lastwin; | |
713 else | |
714 oldwin = curwin; | |
715 | |
716 /* add a status line when p_ls == 1 and splitting the first window */ | |
717 if (lastwin == firstwin && p_ls == 1 && oldwin->w_status_height == 0) | |
718 { | |
3263 | 719 if (oldwin->w_height <= p_wmh && new_wp == NULL) |
7 | 720 { |
721 EMSG(_(e_noroom)); | |
722 return FAIL; | |
723 } | |
724 need_status = STATUS_HEIGHT; | |
725 } | |
726 | |
1114 | 727 #ifdef FEAT_GUI |
728 /* May be needed for the scrollbars that are going to change. */ | |
729 if (gui.in_use) | |
730 out_flush(); | |
731 #endif | |
732 | |
7 | 733 #ifdef FEAT_VERTSPLIT |
734 if (flags & WSP_VERT) | |
735 { | |
736 layout = FR_ROW; | |
737 | |
738 /* | |
739 * Check if we are able to split the current window and compute its | |
740 * width. | |
741 */ | |
742 needed = p_wmw + 1; | |
743 if (flags & WSP_ROOM) | |
744 needed += p_wiw - p_wmw; | |
745 if (p_ea || (flags & (WSP_BOT | WSP_TOP))) | |
746 { | |
747 available = topframe->fr_width; | |
748 needed += frame_minwidth(topframe, NULL); | |
749 } | |
750 else | |
751 available = oldwin->w_width; | |
3263 | 752 if (available < needed && new_wp == NULL) |
7 | 753 { |
754 EMSG(_(e_noroom)); | |
755 return FAIL; | |
756 } | |
757 if (new_size == 0) | |
758 new_size = oldwin->w_width / 2; | |
759 if (new_size > oldwin->w_width - p_wmw - 1) | |
760 new_size = oldwin->w_width - p_wmw - 1; | |
761 if (new_size < p_wmw) | |
762 new_size = p_wmw; | |
763 | |
764 /* if it doesn't fit in the current window, need win_equal() */ | |
765 if (oldwin->w_width - new_size - 1 < p_wmw) | |
766 do_equal = TRUE; | |
779 | 767 |
768 /* We don't like to take lines for the new window from a | |
769 * 'winfixwidth' window. Take them from a window to the left or right | |
770 * instead, if possible. */ | |
771 if (oldwin->w_p_wfw) | |
772 win_setwidth_win(oldwin->w_width + new_size, oldwin); | |
1354 | 773 |
774 /* Only make all windows the same width if one of them (except oldwin) | |
775 * is wider than one of the split windows. */ | |
776 if (!do_equal && p_ea && size == 0 && *p_ead != 'v' | |
777 && oldwin->w_frame->fr_parent != NULL) | |
778 { | |
779 frp = oldwin->w_frame->fr_parent->fr_child; | |
780 while (frp != NULL) | |
781 { | |
782 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
783 && (frp->fr_win->w_width > new_size | |
784 || frp->fr_win->w_width > oldwin->w_width | |
785 - new_size - STATUS_HEIGHT)) | |
786 { | |
787 do_equal = TRUE; | |
788 break; | |
789 } | |
790 frp = frp->fr_next; | |
791 } | |
792 } | |
7 | 793 } |
794 else | |
795 #endif | |
796 { | |
797 layout = FR_COL; | |
798 | |
799 /* | |
800 * Check if we are able to split the current window and compute its | |
801 * height. | |
802 */ | |
803 needed = p_wmh + STATUS_HEIGHT + need_status; | |
804 if (flags & WSP_ROOM) | |
805 needed += p_wh - p_wmh; | |
806 if (p_ea || (flags & (WSP_BOT | WSP_TOP))) | |
807 { | |
808 available = topframe->fr_height; | |
809 needed += frame_minheight(topframe, NULL); | |
810 } | |
811 else | |
812 { | |
813 available = oldwin->w_height; | |
814 needed += p_wmh; | |
815 } | |
3263 | 816 if (available < needed && new_wp == NULL) |
7 | 817 { |
818 EMSG(_(e_noroom)); | |
819 return FAIL; | |
820 } | |
821 oldwin_height = oldwin->w_height; | |
822 if (need_status) | |
823 { | |
824 oldwin->w_status_height = STATUS_HEIGHT; | |
825 oldwin_height -= STATUS_HEIGHT; | |
826 } | |
827 if (new_size == 0) | |
828 new_size = oldwin_height / 2; | |
829 | |
830 if (new_size > oldwin_height - p_wmh - STATUS_HEIGHT) | |
831 new_size = oldwin_height - p_wmh - STATUS_HEIGHT; | |
832 if (new_size < p_wmh) | |
833 new_size = p_wmh; | |
834 | |
835 /* if it doesn't fit in the current window, need win_equal() */ | |
836 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh) | |
837 do_equal = TRUE; | |
838 | |
839 /* We don't like to take lines for the new window from a | |
840 * 'winfixheight' window. Take them from a window above or below | |
841 * instead, if possible. */ | |
842 if (oldwin->w_p_wfh) | |
843 { | |
844 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT, | |
845 oldwin); | |
846 oldwin_height = oldwin->w_height; | |
847 if (need_status) | |
848 oldwin_height -= STATUS_HEIGHT; | |
849 } | |
1354 | 850 |
851 /* Only make all windows the same height if one of them (except oldwin) | |
852 * is higher than one of the split windows. */ | |
853 if (!do_equal && p_ea && size == 0 | |
854 #ifdef FEAT_VERTSPLIT | |
855 && *p_ead != 'h' | |
856 #endif | |
857 && oldwin->w_frame->fr_parent != NULL) | |
858 { | |
859 frp = oldwin->w_frame->fr_parent->fr_child; | |
860 while (frp != NULL) | |
861 { | |
862 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
863 && (frp->fr_win->w_height > new_size | |
864 || frp->fr_win->w_height > oldwin_height - new_size | |
865 - STATUS_HEIGHT)) | |
866 { | |
867 do_equal = TRUE; | |
868 break; | |
869 } | |
870 frp = frp->fr_next; | |
871 } | |
872 } | |
7 | 873 } |
874 | |
875 /* | |
876 * allocate new window structure and link it in the window list | |
877 */ | |
878 if ((flags & WSP_TOP) == 0 | |
879 && ((flags & WSP_BOT) | |
880 || (flags & WSP_BELOW) | |
881 || (!(flags & WSP_ABOVE) | |
882 && ( | |
883 #ifdef FEAT_VERTSPLIT | |
884 (flags & WSP_VERT) ? p_spr : | |
885 #endif | |
886 p_sb)))) | |
887 { | |
888 /* new window below/right of current one */ | |
3263 | 889 if (new_wp == NULL) |
1906 | 890 wp = win_alloc(oldwin, FALSE); |
7 | 891 else |
892 win_append(oldwin, wp); | |
893 } | |
894 else | |
895 { | |
3263 | 896 if (new_wp == NULL) |
1906 | 897 wp = win_alloc(oldwin->w_prev, FALSE); |
7 | 898 else |
899 win_append(oldwin->w_prev, wp); | |
900 } | |
901 | |
3263 | 902 if (new_wp == NULL) |
7 | 903 { |
904 if (wp == NULL) | |
905 return FAIL; | |
906 | |
1906 | 907 new_frame(wp); |
908 if (wp->w_frame == NULL) | |
909 { | |
910 win_free(wp, NULL); | |
911 return FAIL; | |
912 } | |
913 | |
675 | 914 /* make the contents of the new window the same as the current one */ |
1822 | 915 win_init(wp, curwin, flags); |
7 | 916 } |
917 | |
918 /* | |
919 * Reorganise the tree of frames to insert the new window. | |
920 */ | |
921 if (flags & (WSP_TOP | WSP_BOT)) | |
922 { | |
923 #ifdef FEAT_VERTSPLIT | |
924 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0) | |
925 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0)) | |
926 #else | |
927 if (topframe->fr_layout == FR_COL) | |
928 #endif | |
929 { | |
930 curfrp = topframe->fr_child; | |
931 if (flags & WSP_BOT) | |
932 while (curfrp->fr_next != NULL) | |
933 curfrp = curfrp->fr_next; | |
934 } | |
935 else | |
936 curfrp = topframe; | |
937 before = (flags & WSP_TOP); | |
938 } | |
939 else | |
940 { | |
941 curfrp = oldwin->w_frame; | |
942 if (flags & WSP_BELOW) | |
943 before = FALSE; | |
944 else if (flags & WSP_ABOVE) | |
945 before = TRUE; | |
946 else | |
947 #ifdef FEAT_VERTSPLIT | |
948 if (flags & WSP_VERT) | |
949 before = !p_spr; | |
950 else | |
951 #endif | |
952 before = !p_sb; | |
953 } | |
954 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout) | |
955 { | |
956 /* Need to create a new frame in the tree to make a branch. */ | |
957 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T)); | |
958 *frp = *curfrp; | |
959 curfrp->fr_layout = layout; | |
960 frp->fr_parent = curfrp; | |
961 frp->fr_next = NULL; | |
962 frp->fr_prev = NULL; | |
963 curfrp->fr_child = frp; | |
964 curfrp->fr_win = NULL; | |
965 curfrp = frp; | |
966 if (frp->fr_win != NULL) | |
967 oldwin->w_frame = frp; | |
968 else | |
969 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
970 frp->fr_parent = curfrp; | |
971 } | |
972 | |
3263 | 973 if (new_wp == NULL) |
1906 | 974 frp = wp->w_frame; |
7 | 975 else |
3263 | 976 frp = new_wp->w_frame; |
7 | 977 frp->fr_parent = curfrp->fr_parent; |
978 | |
979 /* Insert the new frame at the right place in the frame list. */ | |
980 if (before) | |
981 frame_insert(curfrp, frp); | |
982 else | |
983 frame_append(curfrp, frp); | |
984 | |
2665 | 985 /* Set w_fraction now so that the cursor keeps the same relative |
986 * vertical position. */ | |
2680 | 987 if (oldwin->w_height > 0) |
988 set_fraction(oldwin); | |
2665 | 989 wp->w_fraction = oldwin->w_fraction; |
990 | |
7 | 991 #ifdef FEAT_VERTSPLIT |
992 if (flags & WSP_VERT) | |
993 { | |
994 wp->w_p_scr = curwin->w_p_scr; | |
2665 | 995 |
7 | 996 if (need_status) |
997 { | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
998 win_new_height(oldwin, oldwin->w_height - 1); |
7 | 999 oldwin->w_status_height = need_status; |
1000 } | |
1001 if (flags & (WSP_TOP | WSP_BOT)) | |
1002 { | |
1003 /* set height and row of new window to full height */ | |
685 | 1004 wp->w_winrow = tabline_height(); |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1005 win_new_height(wp, curfrp->fr_height - (p_ls > 0)); |
7 | 1006 wp->w_status_height = (p_ls > 0); |
1007 } | |
1008 else | |
1009 { | |
1010 /* height and row of new window is same as current window */ | |
1011 wp->w_winrow = oldwin->w_winrow; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1012 win_new_height(wp, oldwin->w_height); |
7 | 1013 wp->w_status_height = oldwin->w_status_height; |
1014 } | |
1015 frp->fr_height = curfrp->fr_height; | |
1016 | |
1017 /* "new_size" of the current window goes to the new window, use | |
1018 * one column for the vertical separator */ | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1019 win_new_width(wp, new_size); |
7 | 1020 if (before) |
1021 wp->w_vsep_width = 1; | |
1022 else | |
1023 { | |
1024 wp->w_vsep_width = oldwin->w_vsep_width; | |
1025 oldwin->w_vsep_width = 1; | |
1026 } | |
1027 if (flags & (WSP_TOP | WSP_BOT)) | |
1028 { | |
1029 if (flags & WSP_BOT) | |
1030 frame_add_vsep(curfrp); | |
1031 /* Set width of neighbor frame */ | |
1032 frame_new_width(curfrp, curfrp->fr_width | |
779 | 1033 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP, |
1034 FALSE); | |
7 | 1035 } |
1036 else | |
779 | 1037 win_new_width(oldwin, oldwin->w_width - (new_size + 1)); |
7 | 1038 if (before) /* new window left of current one */ |
1039 { | |
1040 wp->w_wincol = oldwin->w_wincol; | |
1041 oldwin->w_wincol += new_size + 1; | |
1042 } | |
1043 else /* new window right of current one */ | |
1044 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1; | |
1045 frame_fix_width(oldwin); | |
1046 frame_fix_width(wp); | |
1047 } | |
1048 else | |
1049 #endif | |
1050 { | |
1051 /* width and column of new window is same as current window */ | |
1052 #ifdef FEAT_VERTSPLIT | |
1053 if (flags & (WSP_TOP | WSP_BOT)) | |
1054 { | |
1055 wp->w_wincol = 0; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1056 win_new_width(wp, Columns); |
7 | 1057 wp->w_vsep_width = 0; |
1058 } | |
1059 else | |
1060 { | |
1061 wp->w_wincol = oldwin->w_wincol; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1062 win_new_width(wp, oldwin->w_width); |
7 | 1063 wp->w_vsep_width = oldwin->w_vsep_width; |
1064 } | |
1065 frp->fr_width = curfrp->fr_width; | |
1066 #endif | |
1067 | |
1068 /* "new_size" of the current window goes to the new window, use | |
1069 * one row for the status line */ | |
1070 win_new_height(wp, new_size); | |
1071 if (flags & (WSP_TOP | WSP_BOT)) | |
1072 frame_new_height(curfrp, curfrp->fr_height | |
1073 - (new_size + STATUS_HEIGHT), flags & WSP_TOP, FALSE); | |
1074 else | |
1075 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT)); | |
1076 if (before) /* new window above current one */ | |
1077 { | |
1078 wp->w_winrow = oldwin->w_winrow; | |
1079 wp->w_status_height = STATUS_HEIGHT; | |
1080 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT; | |
1081 } | |
1082 else /* new window below current one */ | |
1083 { | |
1084 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT; | |
1085 wp->w_status_height = oldwin->w_status_height; | |
1086 oldwin->w_status_height = STATUS_HEIGHT; | |
1087 } | |
1088 #ifdef FEAT_VERTSPLIT | |
1089 if (flags & WSP_BOT) | |
1090 frame_add_statusline(curfrp); | |
1091 #endif | |
1092 frame_fix_height(wp); | |
1093 frame_fix_height(oldwin); | |
1094 } | |
1095 | |
1096 if (flags & (WSP_TOP | WSP_BOT)) | |
1097 (void)win_comp_pos(); | |
1098 | |
1099 /* | |
1100 * Both windows need redrawing | |
1101 */ | |
1102 redraw_win_later(wp, NOT_VALID); | |
1103 wp->w_redr_status = TRUE; | |
1104 redraw_win_later(oldwin, NOT_VALID); | |
1105 oldwin->w_redr_status = TRUE; | |
1106 | |
1107 if (need_status) | |
1108 { | |
1109 msg_row = Rows - 1; | |
1110 msg_col = sc_col; | |
1111 msg_clr_eos_force(); /* Old command/ruler may still be there */ | |
1112 comp_col(); | |
1113 msg_row = Rows - 1; | |
1114 msg_col = 0; /* put position back at start of line */ | |
1115 } | |
1116 | |
1117 /* | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1118 * equalize the window sizes. |
7 | 1119 */ |
1120 if (do_equal || dir != 0) | |
1121 win_equal(wp, TRUE, | |
1122 #ifdef FEAT_VERTSPLIT | |
1123 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h') | |
1124 : dir == 'h' ? 'b' : | |
1125 #endif | |
1126 'v'); | |
1127 | |
1128 /* Don't change the window height/width to 'winheight' / 'winwidth' if a | |
1129 * size was given. */ | |
1130 #ifdef FEAT_VERTSPLIT | |
1131 if (flags & WSP_VERT) | |
1132 { | |
1133 i = p_wiw; | |
1134 if (size != 0) | |
1135 p_wiw = size; | |
1136 | |
1137 # ifdef FEAT_GUI | |
1138 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */ | |
1139 if (gui.in_use) | |
1140 gui_init_which_components(NULL); | |
1141 # endif | |
1142 } | |
1143 else | |
1144 #endif | |
1145 { | |
1146 i = p_wh; | |
1147 if (size != 0) | |
1148 p_wh = size; | |
1149 } | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1150 |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1151 /* |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1152 * make the new window the current window |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1153 */ |
7 | 1154 win_enter(wp, FALSE); |
1155 #ifdef FEAT_VERTSPLIT | |
1156 if (flags & WSP_VERT) | |
1157 p_wiw = i; | |
1158 else | |
1159 #endif | |
1160 p_wh = i; | |
1161 | |
1162 return OK; | |
1163 } | |
1164 | |
1906 | 1165 |
675 | 1166 /* |
1167 * Initialize window "newp" from window "oldp". | |
1168 * Used when splitting a window and when creating a new tab page. | |
1169 * The windows will both edit the same buffer. | |
1822 | 1170 * WSP_NEWLOC may be specified in flags to prevent the location list from |
1171 * being copied. | |
675 | 1172 */ |
1173 static void | |
1822 | 1174 win_init(newp, oldp, flags) |
675 | 1175 win_T *newp; |
1176 win_T *oldp; | |
1887 | 1177 int flags UNUSED; |
675 | 1178 { |
1179 int i; | |
1180 | |
1181 newp->w_buffer = oldp->w_buffer; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1182 #ifdef FEAT_SYN_HL |
2253
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
1183 newp->w_s = &(oldp->w_buffer->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1184 #endif |
675 | 1185 oldp->w_buffer->b_nwindows++; |
1186 newp->w_cursor = oldp->w_cursor; | |
1187 newp->w_valid = 0; | |
1188 newp->w_curswant = oldp->w_curswant; | |
1189 newp->w_set_curswant = oldp->w_set_curswant; | |
1190 newp->w_topline = oldp->w_topline; | |
1191 #ifdef FEAT_DIFF | |
1192 newp->w_topfill = oldp->w_topfill; | |
1193 #endif | |
1194 newp->w_leftcol = oldp->w_leftcol; | |
1195 newp->w_pcmark = oldp->w_pcmark; | |
1196 newp->w_prev_pcmark = oldp->w_prev_pcmark; | |
1197 newp->w_alt_fnum = oldp->w_alt_fnum; | |
826 | 1198 newp->w_wrow = oldp->w_wrow; |
675 | 1199 newp->w_fraction = oldp->w_fraction; |
1200 newp->w_prev_fraction_row = oldp->w_prev_fraction_row; | |
1201 #ifdef FEAT_JUMPLIST | |
1202 copy_jumplist(oldp, newp); | |
1203 #endif | |
1204 #ifdef FEAT_QUICKFIX | |
1822 | 1205 if (flags & WSP_NEWLOC) |
1206 { | |
1207 /* Don't copy the location list. */ | |
1208 newp->w_llist = NULL; | |
1209 newp->w_llist_ref = NULL; | |
1210 } | |
1211 else | |
1212 copy_loclist(oldp, newp); | |
675 | 1213 #endif |
1214 if (oldp->w_localdir != NULL) | |
1215 newp->w_localdir = vim_strsave(oldp->w_localdir); | |
1216 | |
1906 | 1217 /* copy tagstack and folds */ |
675 | 1218 for (i = 0; i < oldp->w_tagstacklen; i++) |
1219 { | |
1220 newp->w_tagstack[i] = oldp->w_tagstack[i]; | |
1221 if (newp->w_tagstack[i].tagname != NULL) | |
1222 newp->w_tagstack[i].tagname = | |
1223 vim_strsave(newp->w_tagstack[i].tagname); | |
1224 } | |
1225 newp->w_tagstackidx = oldp->w_tagstackidx; | |
1226 newp->w_tagstacklen = oldp->w_tagstacklen; | |
3068 | 1227 #ifdef FEAT_FOLDING |
675 | 1228 copyFoldingState(oldp, newp); |
3068 | 1229 #endif |
1906 | 1230 |
1231 win_init_some(newp, oldp); | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1232 |
3068 | 1233 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1234 check_colorcolumn(newp); |
3068 | 1235 #endif |
1906 | 1236 } |
1237 | |
1238 /* | |
1239 * Initialize window "newp" from window"old". | |
1240 * Only the essential things are copied. | |
1241 */ | |
1242 static void | |
1243 win_init_some(newp, oldp) | |
1244 win_T *newp; | |
1245 win_T *oldp; | |
1246 { | |
1247 /* Use the same argument list. */ | |
1248 newp->w_alist = oldp->w_alist; | |
1249 ++newp->w_alist->al_refcount; | |
1250 newp->w_arg_idx = oldp->w_arg_idx; | |
1251 | |
1252 /* copy options from existing window */ | |
1253 win_copy_options(oldp, newp); | |
675 | 1254 } |
1255 | |
7 | 1256 #endif /* FEAT_WINDOWS */ |
1257 | |
1258 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
1259 /* | |
1260 * Check if "win" is a pointer to an existing window. | |
1261 */ | |
1262 int | |
1263 win_valid(win) | |
1264 win_T *win; | |
1265 { | |
1266 win_T *wp; | |
1267 | |
1268 if (win == NULL) | |
1269 return FALSE; | |
1270 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
1271 if (wp == win) | |
1272 return TRUE; | |
1273 return FALSE; | |
1274 } | |
1275 | |
1276 /* | |
1277 * Return the number of windows. | |
1278 */ | |
1279 int | |
1280 win_count() | |
1281 { | |
1282 win_T *wp; | |
1283 int count = 0; | |
1284 | |
1285 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
1286 ++count; | |
1287 return count; | |
1288 } | |
1289 | |
1290 /* | |
1291 * Make "count" windows on the screen. | |
1292 * Return actual number of windows on the screen. | |
1293 * Must be called when there is just one window, filling the whole screen | |
1294 * (excluding the command line). | |
1295 */ | |
1296 int | |
1297 make_windows(count, vertical) | |
1298 int count; | |
1887 | 1299 int vertical UNUSED; /* split windows vertically if TRUE */ |
7 | 1300 { |
1301 int maxcount; | |
1302 int todo; | |
1303 | |
1304 #ifdef FEAT_VERTSPLIT | |
1305 if (vertical) | |
1306 { | |
1307 /* Each windows needs at least 'winminwidth' lines and a separator | |
1308 * column. */ | |
1309 maxcount = (curwin->w_width + curwin->w_vsep_width | |
1310 - (p_wiw - p_wmw)) / (p_wmw + 1); | |
1311 } | |
1312 else | |
1313 #endif | |
1314 { | |
1315 /* Each window needs at least 'winminheight' lines and a status line. */ | |
1316 maxcount = (curwin->w_height + curwin->w_status_height | |
1317 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT); | |
1318 } | |
1319 | |
1320 if (maxcount < 2) | |
1321 maxcount = 2; | |
1322 if (count > maxcount) | |
1323 count = maxcount; | |
1324 | |
1325 /* | |
1326 * add status line now, otherwise first window will be too big | |
1327 */ | |
1328 if (count > 1) | |
1329 last_status(TRUE); | |
1330 | |
1331 #ifdef FEAT_AUTOCMD | |
1332 /* | |
1333 * Don't execute autocommands while creating the windows. Must do that | |
1334 * when putting the buffers in the windows. | |
1335 */ | |
1410 | 1336 block_autocmds(); |
7 | 1337 #endif |
1338 | |
1339 /* todo is number of windows left to create */ | |
1340 for (todo = count - 1; todo > 0; --todo) | |
1341 #ifdef FEAT_VERTSPLIT | |
1342 if (vertical) | |
1343 { | |
1344 if (win_split(curwin->w_width - (curwin->w_width - todo) | |
1345 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL) | |
1346 break; | |
1347 } | |
1348 else | |
1349 #endif | |
1350 { | |
1351 if (win_split(curwin->w_height - (curwin->w_height - todo | |
1352 * STATUS_HEIGHT) / (todo + 1) | |
1353 - STATUS_HEIGHT, WSP_ABOVE) == FAIL) | |
1354 break; | |
1355 } | |
1356 | |
1357 #ifdef FEAT_AUTOCMD | |
1410 | 1358 unblock_autocmds(); |
7 | 1359 #endif |
1360 | |
1361 /* return actual number of windows */ | |
1362 return (count - todo); | |
1363 } | |
1364 | |
1365 /* | |
1366 * Exchange current and next window | |
1367 */ | |
1368 static void | |
1369 win_exchange(Prenum) | |
1370 long Prenum; | |
1371 { | |
1372 frame_T *frp; | |
1373 frame_T *frp2; | |
1374 win_T *wp; | |
1375 win_T *wp2; | |
1376 int temp; | |
1377 | |
1378 if (lastwin == firstwin) /* just one window */ | |
1379 { | |
1380 beep_flush(); | |
1381 return; | |
1382 } | |
1383 | |
1384 #ifdef FEAT_GUI | |
1385 need_mouse_correct = TRUE; | |
1386 #endif | |
1387 | |
1388 /* | |
1389 * find window to exchange with | |
1390 */ | |
1391 if (Prenum) | |
1392 { | |
1393 frp = curwin->w_frame->fr_parent->fr_child; | |
1394 while (frp != NULL && --Prenum > 0) | |
1395 frp = frp->fr_next; | |
1396 } | |
1397 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */ | |
1398 frp = curwin->w_frame->fr_next; | |
1399 else /* Swap last window in row/col with previous */ | |
1400 frp = curwin->w_frame->fr_prev; | |
1401 | |
1402 /* We can only exchange a window with another window, not with a frame | |
1403 * containing windows. */ | |
1404 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin) | |
1405 return; | |
1406 wp = frp->fr_win; | |
1407 | |
1408 /* | |
1409 * 1. remove curwin from the list. Remember after which window it was in wp2 | |
1410 * 2. insert curwin before wp in the list | |
1411 * if wp != wp2 | |
1412 * 3. remove wp from the list | |
1413 * 4. insert wp after wp2 | |
1414 * 5. exchange the status line height and vsep width. | |
1415 */ | |
1416 wp2 = curwin->w_prev; | |
1417 frp2 = curwin->w_frame->fr_prev; | |
1418 if (wp->w_prev != curwin) | |
1419 { | |
671 | 1420 win_remove(curwin, NULL); |
7 | 1421 frame_remove(curwin->w_frame); |
1422 win_append(wp->w_prev, curwin); | |
1423 frame_insert(frp, curwin->w_frame); | |
1424 } | |
1425 if (wp != wp2) | |
1426 { | |
671 | 1427 win_remove(wp, NULL); |
7 | 1428 frame_remove(wp->w_frame); |
1429 win_append(wp2, wp); | |
1430 if (frp2 == NULL) | |
1431 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame); | |
1432 else | |
1433 frame_append(frp2, wp->w_frame); | |
1434 } | |
1435 temp = curwin->w_status_height; | |
1436 curwin->w_status_height = wp->w_status_height; | |
1437 wp->w_status_height = temp; | |
1438 #ifdef FEAT_VERTSPLIT | |
1439 temp = curwin->w_vsep_width; | |
1440 curwin->w_vsep_width = wp->w_vsep_width; | |
1441 wp->w_vsep_width = temp; | |
1442 | |
1443 /* If the windows are not in the same frame, exchange the sizes to avoid | |
1444 * messing up the window layout. Otherwise fix the frame sizes. */ | |
1445 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent) | |
1446 { | |
1447 temp = curwin->w_height; | |
1448 curwin->w_height = wp->w_height; | |
1449 wp->w_height = temp; | |
1450 temp = curwin->w_width; | |
1451 curwin->w_width = wp->w_width; | |
1452 wp->w_width = temp; | |
1453 } | |
1454 else | |
1455 { | |
1456 frame_fix_height(curwin); | |
1457 frame_fix_height(wp); | |
1458 frame_fix_width(curwin); | |
1459 frame_fix_width(wp); | |
1460 } | |
1461 #endif | |
1462 | |
1463 (void)win_comp_pos(); /* recompute window positions */ | |
1464 | |
1465 win_enter(wp, TRUE); | |
1466 redraw_later(CLEAR); | |
1467 } | |
1468 | |
1469 /* | |
1470 * rotate windows: if upwards TRUE the second window becomes the first one | |
1471 * if upwards FALSE the first window becomes the second one | |
1472 */ | |
1473 static void | |
1474 win_rotate(upwards, count) | |
1475 int upwards; | |
1476 int count; | |
1477 { | |
1478 win_T *wp1; | |
1479 win_T *wp2; | |
1480 frame_T *frp; | |
1481 int n; | |
1482 | |
1483 if (firstwin == lastwin) /* nothing to do */ | |
1484 { | |
1485 beep_flush(); | |
1486 return; | |
1487 } | |
1488 | |
1489 #ifdef FEAT_GUI | |
1490 need_mouse_correct = TRUE; | |
1491 #endif | |
1492 | |
1493 #ifdef FEAT_VERTSPLIT | |
1494 /* Check if all frames in this row/col have one window. */ | |
1495 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL; | |
1496 frp = frp->fr_next) | |
1497 if (frp->fr_win == NULL) | |
1498 { | |
1499 EMSG(_("E443: Cannot rotate when another window is split")); | |
1500 return; | |
1501 } | |
1502 #endif | |
1503 | |
1504 while (count--) | |
1505 { | |
1506 if (upwards) /* first window becomes last window */ | |
1507 { | |
1508 /* remove first window/frame from the list */ | |
1509 frp = curwin->w_frame->fr_parent->fr_child; | |
1510 wp1 = frp->fr_win; | |
671 | 1511 win_remove(wp1, NULL); |
7 | 1512 frame_remove(frp); |
1513 | |
1514 /* find last frame and append removed window/frame after it */ | |
1515 for ( ; frp->fr_next != NULL; frp = frp->fr_next) | |
1516 ; | |
1517 win_append(frp->fr_win, wp1); | |
1518 frame_append(frp, wp1->w_frame); | |
1519 | |
1520 wp2 = frp->fr_win; /* previously last window */ | |
1521 } | |
1522 else /* last window becomes first window */ | |
1523 { | |
1524 /* find last window/frame in the list and remove it */ | |
1525 for (frp = curwin->w_frame; frp->fr_next != NULL; | |
1526 frp = frp->fr_next) | |
1527 ; | |
1528 wp1 = frp->fr_win; | |
1529 wp2 = wp1->w_prev; /* will become last window */ | |
671 | 1530 win_remove(wp1, NULL); |
7 | 1531 frame_remove(frp); |
1532 | |
1533 /* append the removed window/frame before the first in the list */ | |
1534 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1); | |
1535 frame_insert(frp->fr_parent->fr_child, frp); | |
1536 } | |
1537 | |
1538 /* exchange status height and vsep width of old and new last window */ | |
1539 n = wp2->w_status_height; | |
1540 wp2->w_status_height = wp1->w_status_height; | |
1541 wp1->w_status_height = n; | |
1542 frame_fix_height(wp1); | |
1543 frame_fix_height(wp2); | |
1544 #ifdef FEAT_VERTSPLIT | |
1545 n = wp2->w_vsep_width; | |
1546 wp2->w_vsep_width = wp1->w_vsep_width; | |
1547 wp1->w_vsep_width = n; | |
1548 frame_fix_width(wp1); | |
1549 frame_fix_width(wp2); | |
1550 #endif | |
1551 | |
1552 /* recompute w_winrow and w_wincol for all windows */ | |
1553 (void)win_comp_pos(); | |
1554 } | |
1555 | |
1556 redraw_later(CLEAR); | |
1557 } | |
1558 | |
1559 /* | |
1560 * Move the current window to the very top/bottom/left/right of the screen. | |
1561 */ | |
1562 static void | |
1563 win_totop(size, flags) | |
1564 int size; | |
1565 int flags; | |
1566 { | |
1567 int dir; | |
1568 int height = curwin->w_height; | |
1569 | |
1570 if (lastwin == firstwin) | |
1571 { | |
1572 beep_flush(); | |
1573 return; | |
1574 } | |
1575 | |
1576 /* Remove the window and frame from the tree of frames. */ | |
671 | 1577 (void)winframe_remove(curwin, &dir, NULL); |
1578 win_remove(curwin, NULL); | |
7 | 1579 last_status(FALSE); /* may need to remove last status line */ |
1580 (void)win_comp_pos(); /* recompute window positions */ | |
1581 | |
1582 /* Split a window on the desired side and put the window there. */ | |
1583 (void)win_split_ins(size, flags, curwin, dir); | |
1584 if (!(flags & WSP_VERT)) | |
1585 { | |
1586 win_setheight(height); | |
1587 if (p_ea) | |
1588 win_equal(curwin, TRUE, 'v'); | |
1589 } | |
1590 | |
1591 #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT) | |
1592 /* When 'guioptions' includes 'L' or 'R' may have to remove or add | |
1593 * scrollbars. Have to update them anyway. */ | |
1906 | 1594 gui_may_update_scrollbars(); |
1595 #endif | |
7 | 1596 } |
1597 | |
1598 /* | |
1599 * Move window "win1" to below/right of "win2" and make "win1" the current | |
1600 * window. Only works within the same frame! | |
1601 */ | |
1602 void | |
1603 win_move_after(win1, win2) | |
1604 win_T *win1, *win2; | |
1605 { | |
1606 int height; | |
1607 | |
1608 /* check if the arguments are reasonable */ | |
1609 if (win1 == win2) | |
1610 return; | |
1611 | |
1612 /* check if there is something to do */ | |
1613 if (win2->w_next != win1) | |
1614 { | |
1615 /* may need move the status line/vertical separator of the last window | |
1616 * */ | |
1617 if (win1 == lastwin) | |
1618 { | |
1619 height = win1->w_prev->w_status_height; | |
1620 win1->w_prev->w_status_height = win1->w_status_height; | |
1621 win1->w_status_height = height; | |
1622 #ifdef FEAT_VERTSPLIT | |
1070 | 1623 if (win1->w_prev->w_vsep_width == 1) |
1624 { | |
1625 /* Remove the vertical separator from the last-but-one window, | |
1626 * add it to the last window. Adjust the frame widths. */ | |
1627 win1->w_prev->w_vsep_width = 0; | |
1628 win1->w_prev->w_frame->fr_width -= 1; | |
1629 win1->w_vsep_width = 1; | |
1630 win1->w_frame->fr_width += 1; | |
1631 } | |
7 | 1632 #endif |
1633 } | |
1634 else if (win2 == lastwin) | |
1635 { | |
1636 height = win1->w_status_height; | |
1637 win1->w_status_height = win2->w_status_height; | |
1638 win2->w_status_height = height; | |
1639 #ifdef FEAT_VERTSPLIT | |
1070 | 1640 if (win1->w_vsep_width == 1) |
1641 { | |
1642 /* Remove the vertical separator from win1, add it to the last | |
1643 * window, win2. Adjust the frame widths. */ | |
1644 win2->w_vsep_width = 1; | |
1645 win2->w_frame->fr_width += 1; | |
1646 win1->w_vsep_width = 0; | |
1647 win1->w_frame->fr_width -= 1; | |
1648 } | |
7 | 1649 #endif |
1650 } | |
671 | 1651 win_remove(win1, NULL); |
7 | 1652 frame_remove(win1->w_frame); |
1653 win_append(win2, win1); | |
1654 frame_append(win2->w_frame, win1->w_frame); | |
1655 | |
1656 (void)win_comp_pos(); /* recompute w_winrow for all windows */ | |
1657 redraw_later(NOT_VALID); | |
1658 } | |
1659 win_enter(win1, FALSE); | |
1660 } | |
1661 | |
1662 /* | |
1663 * Make all windows the same height. | |
1664 * 'next_curwin' will soon be the current window, make sure it has enough | |
1665 * rows. | |
1666 */ | |
1667 void | |
1668 win_equal(next_curwin, current, dir) | |
1669 win_T *next_curwin; /* pointer to current window to be or NULL */ | |
1670 int current; /* do only frame with current window */ | |
1671 int dir; /* 'v' for vertically, 'h' for horizontally, | |
1672 'b' for both, 0 for using p_ead */ | |
1673 { | |
1674 if (dir == 0) | |
1675 #ifdef FEAT_VERTSPLIT | |
1676 dir = *p_ead; | |
1677 #else | |
1678 dir = 'b'; | |
1679 #endif | |
1680 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current, | |
685 | 1681 topframe, dir, 0, tabline_height(), |
667 | 1682 (int)Columns, topframe->fr_height); |
7 | 1683 } |
1684 | |
1685 /* | |
1686 * Set a frame to a new position and height, spreading the available room | |
1687 * equally over contained frames. | |
1688 * The window "next_curwin" (if not NULL) should at least get the size from | |
1689 * 'winheight' and 'winwidth' if possible. | |
1690 */ | |
1691 static void | |
1692 win_equal_rec(next_curwin, current, topfr, dir, col, row, width, height) | |
1693 win_T *next_curwin; /* pointer to current window to be or NULL */ | |
1694 int current; /* do only frame with current window */ | |
1695 frame_T *topfr; /* frame to set size off */ | |
1696 int dir; /* 'v', 'h' or 'b', see win_equal() */ | |
1697 int col; /* horizontal position for frame */ | |
1698 int row; /* vertical position for frame */ | |
1699 int width; /* new width of frame */ | |
1700 int height; /* new height of frame */ | |
1701 { | |
1702 int n, m; | |
1703 int extra_sep = 0; | |
1704 int wincount, totwincount = 0; | |
1705 frame_T *fr; | |
1706 int next_curwin_size = 0; | |
1707 int room = 0; | |
1708 int new_size; | |
1709 int has_next_curwin = 0; | |
1710 int hnc; | |
1711 | |
1712 if (topfr->fr_layout == FR_LEAF) | |
1713 { | |
1714 /* Set the width/height of this frame. | |
1715 * Redraw when size or position changes */ | |
1716 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row | |
1717 #ifdef FEAT_VERTSPLIT | |
1718 || topfr->fr_width != width || topfr->fr_win->w_wincol != col | |
1719 #endif | |
1720 ) | |
1721 { | |
1722 topfr->fr_win->w_winrow = row; | |
1723 frame_new_height(topfr, height, FALSE, FALSE); | |
1724 #ifdef FEAT_VERTSPLIT | |
1725 topfr->fr_win->w_wincol = col; | |
779 | 1726 frame_new_width(topfr, width, FALSE, FALSE); |
7 | 1727 #endif |
1728 redraw_all_later(CLEAR); | |
1729 } | |
1730 } | |
1731 #ifdef FEAT_VERTSPLIT | |
1732 else if (topfr->fr_layout == FR_ROW) | |
1733 { | |
1734 topfr->fr_width = width; | |
1735 topfr->fr_height = height; | |
1736 | |
1737 if (dir != 'v') /* equalize frame widths */ | |
1738 { | |
1739 /* Compute the maximum number of windows horizontally in this | |
1740 * frame. */ | |
1741 n = frame_minwidth(topfr, NOWIN); | |
1742 /* add one for the rightmost window, it doesn't have a separator */ | |
1743 if (col + width == Columns) | |
1744 extra_sep = 1; | |
1745 else | |
1746 extra_sep = 0; | |
1747 totwincount = (n + extra_sep) / (p_wmw + 1); | |
779 | 1748 has_next_curwin = frame_has_win(topfr, next_curwin); |
1749 | |
1750 /* | |
1751 * Compute width for "next_curwin" window and room available for | |
1752 * other windows. | |
1753 * "m" is the minimal width when counting p_wiw for "next_curwin". | |
1754 */ | |
7 | 1755 m = frame_minwidth(topfr, next_curwin); |
1756 room = width - m; | |
1757 if (room < 0) | |
1758 { | |
1759 next_curwin_size = p_wiw + room; | |
1760 room = 0; | |
1761 } | |
1762 else | |
1763 { | |
779 | 1764 next_curwin_size = -1; |
1765 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next) | |
1766 { | |
1767 /* If 'winfixwidth' set keep the window width if | |
1768 * possible. | |
1769 * Watch out for this window being the next_curwin. */ | |
1770 if (frame_fixed_width(fr)) | |
1771 { | |
1772 n = frame_minwidth(fr, NOWIN); | |
1773 new_size = fr->fr_width; | |
1774 if (frame_has_win(fr, next_curwin)) | |
1775 { | |
1776 room += p_wiw - p_wmw; | |
1777 next_curwin_size = 0; | |
1778 if (new_size < p_wiw) | |
1779 new_size = p_wiw; | |
1780 } | |
1781 else | |
1782 /* These windows don't use up room. */ | |
1783 totwincount -= (n + (fr->fr_next == NULL | |
1784 ? extra_sep : 0)) / (p_wmw + 1); | |
1785 room -= new_size - n; | |
1786 if (room < 0) | |
1787 { | |
1788 new_size += room; | |
1789 room = 0; | |
1790 } | |
1791 fr->fr_newwidth = new_size; | |
1792 } | |
1793 } | |
1794 if (next_curwin_size == -1) | |
1795 { | |
1796 if (!has_next_curwin) | |
1797 next_curwin_size = 0; | |
1798 else if (totwincount > 1 | |
1799 && (room + (totwincount - 2)) | |
1800 / (totwincount - 1) > p_wiw) | |
1801 { | |
834 | 1802 /* Can make all windows wider than 'winwidth', spread |
1803 * the room equally. */ | |
1804 next_curwin_size = (room + p_wiw | |
1805 + (totwincount - 1) * p_wmw | |
1806 + (totwincount - 1)) / totwincount; | |
779 | 1807 room -= next_curwin_size - p_wiw; |
1808 } | |
1809 else | |
1810 next_curwin_size = p_wiw; | |
1811 } | |
7 | 1812 } |
779 | 1813 |
1814 if (has_next_curwin) | |
7 | 1815 --totwincount; /* don't count curwin */ |
1816 } | |
1817 | |
1818 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next) | |
1819 { | |
1820 n = m = 0; | |
1821 wincount = 1; | |
1822 if (fr->fr_next == NULL) | |
1823 /* last frame gets all that remains (avoid roundoff error) */ | |
1824 new_size = width; | |
1825 else if (dir == 'v') | |
1826 new_size = fr->fr_width; | |
779 | 1827 else if (frame_fixed_width(fr)) |
1828 { | |
1829 new_size = fr->fr_newwidth; | |
1830 wincount = 0; /* doesn't count as a sizeable window */ | |
1831 } | |
7 | 1832 else |
1833 { | |
1834 /* Compute the maximum number of windows horiz. in "fr". */ | |
1835 n = frame_minwidth(fr, NOWIN); | |
1836 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
1837 / (p_wmw + 1); | |
1838 m = frame_minwidth(fr, next_curwin); | |
779 | 1839 if (has_next_curwin) |
1840 hnc = frame_has_win(fr, next_curwin); | |
1841 else | |
1842 hnc = FALSE; | |
1843 if (hnc) /* don't count next_curwin */ | |
7 | 1844 --wincount; |
779 | 1845 if (totwincount == 0) |
1846 new_size = room; | |
1847 else | |
1848 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
7 | 1849 / totwincount; |
779 | 1850 if (hnc) /* add next_curwin size */ |
7 | 1851 { |
1852 next_curwin_size -= p_wiw - (m - n); | |
1853 new_size += next_curwin_size; | |
779 | 1854 room -= new_size - next_curwin_size; |
7 | 1855 } |
779 | 1856 else |
1857 room -= new_size; | |
1858 new_size += n; | |
7 | 1859 } |
1860 | |
779 | 1861 /* Skip frame that is full width when splitting or closing a |
7 | 1862 * window, unless equalizing all frames. */ |
1863 if (!current || dir != 'v' || topfr->fr_parent != NULL | |
1864 || (new_size != fr->fr_width) | |
1865 || frame_has_win(fr, next_curwin)) | |
1866 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
779 | 1867 new_size, height); |
1868 col += new_size; | |
1869 width -= new_size; | |
7 | 1870 totwincount -= wincount; |
1871 } | |
1872 } | |
1873 #endif | |
1874 else /* topfr->fr_layout == FR_COL */ | |
1875 { | |
1876 #ifdef FEAT_VERTSPLIT | |
1877 topfr->fr_width = width; | |
1878 #endif | |
1879 topfr->fr_height = height; | |
1880 | |
1881 if (dir != 'h') /* equalize frame heights */ | |
1882 { | |
1883 /* Compute maximum number of windows vertically in this frame. */ | |
1884 n = frame_minheight(topfr, NOWIN); | |
1885 /* add one for the bottom window if it doesn't have a statusline */ | |
1886 if (row + height == cmdline_row && p_ls == 0) | |
1887 extra_sep = 1; | |
1888 else | |
1889 extra_sep = 0; | |
1890 totwincount = (n + extra_sep) / (p_wmh + 1); | |
1891 has_next_curwin = frame_has_win(topfr, next_curwin); | |
1892 | |
1893 /* | |
1894 * Compute height for "next_curwin" window and room available for | |
1895 * other windows. | |
1896 * "m" is the minimal height when counting p_wh for "next_curwin". | |
1897 */ | |
1898 m = frame_minheight(topfr, next_curwin); | |
1899 room = height - m; | |
1900 if (room < 0) | |
1901 { | |
1902 /* The room is less then 'winheight', use all space for the | |
1903 * current window. */ | |
1904 next_curwin_size = p_wh + room; | |
1905 room = 0; | |
1906 } | |
1907 else | |
1908 { | |
1909 next_curwin_size = -1; | |
1910 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next) | |
1911 { | |
1912 /* If 'winfixheight' set keep the window height if | |
1913 * possible. | |
1914 * Watch out for this window being the next_curwin. */ | |
1915 if (frame_fixed_height(fr)) | |
1916 { | |
1917 n = frame_minheight(fr, NOWIN); | |
1918 new_size = fr->fr_height; | |
1919 if (frame_has_win(fr, next_curwin)) | |
1920 { | |
1921 room += p_wh - p_wmh; | |
1922 next_curwin_size = 0; | |
1923 if (new_size < p_wh) | |
1924 new_size = p_wh; | |
1925 } | |
1926 else | |
1927 /* These windows don't use up room. */ | |
1928 totwincount -= (n + (fr->fr_next == NULL | |
1929 ? extra_sep : 0)) / (p_wmh + 1); | |
1930 room -= new_size - n; | |
1931 if (room < 0) | |
1932 { | |
1933 new_size += room; | |
1934 room = 0; | |
1935 } | |
1936 fr->fr_newheight = new_size; | |
1937 } | |
1938 } | |
1939 if (next_curwin_size == -1) | |
1940 { | |
1941 if (!has_next_curwin) | |
1942 next_curwin_size = 0; | |
1943 else if (totwincount > 1 | |
1944 && (room + (totwincount - 2)) | |
1945 / (totwincount - 1) > p_wh) | |
1946 { | |
834 | 1947 /* can make all windows higher than 'winheight', |
1948 * spread the room equally. */ | |
1949 next_curwin_size = (room + p_wh | |
1950 + (totwincount - 1) * p_wmh | |
7 | 1951 + (totwincount - 1)) / totwincount; |
1952 room -= next_curwin_size - p_wh; | |
1953 } | |
1954 else | |
1955 next_curwin_size = p_wh; | |
1956 } | |
1957 } | |
1958 | |
1959 if (has_next_curwin) | |
1960 --totwincount; /* don't count curwin */ | |
1961 } | |
1962 | |
1963 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next) | |
1964 { | |
1965 n = m = 0; | |
1966 wincount = 1; | |
1967 if (fr->fr_next == NULL) | |
1968 /* last frame gets all that remains (avoid roundoff error) */ | |
1969 new_size = height; | |
1970 else if (dir == 'h') | |
1971 new_size = fr->fr_height; | |
1972 else if (frame_fixed_height(fr)) | |
1973 { | |
1974 new_size = fr->fr_newheight; | |
1975 wincount = 0; /* doesn't count as a sizeable window */ | |
1976 } | |
1977 else | |
1978 { | |
1979 /* Compute the maximum number of windows vert. in "fr". */ | |
1980 n = frame_minheight(fr, NOWIN); | |
1981 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
1982 / (p_wmh + 1); | |
1983 m = frame_minheight(fr, next_curwin); | |
1984 if (has_next_curwin) | |
1985 hnc = frame_has_win(fr, next_curwin); | |
1986 else | |
1987 hnc = FALSE; | |
1988 if (hnc) /* don't count next_curwin */ | |
1989 --wincount; | |
1990 if (totwincount == 0) | |
1991 new_size = room; | |
1992 else | |
1993 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
1994 / totwincount; | |
1995 if (hnc) /* add next_curwin size */ | |
1996 { | |
1997 next_curwin_size -= p_wh - (m - n); | |
1998 new_size += next_curwin_size; | |
1999 room -= new_size - next_curwin_size; | |
2000 } | |
2001 else | |
2002 room -= new_size; | |
2003 new_size += n; | |
2004 } | |
2005 /* Skip frame that is full width when splitting or closing a | |
2006 * window, unless equalizing all frames. */ | |
2007 if (!current || dir != 'h' || topfr->fr_parent != NULL | |
2008 || (new_size != fr->fr_height) | |
2009 || frame_has_win(fr, next_curwin)) | |
2010 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
2011 width, new_size); | |
2012 row += new_size; | |
2013 height -= new_size; | |
2014 totwincount -= wincount; | |
2015 } | |
2016 } | |
2017 } | |
2018 | |
2019 /* | |
2020 * close all windows for buffer 'buf' | |
2021 */ | |
2022 void | |
671 | 2023 close_windows(buf, keep_curwin) |
7 | 2024 buf_T *buf; |
671 | 2025 int keep_curwin; /* don't close "curwin" */ |
7 | 2026 { |
671 | 2027 win_T *wp; |
2028 tabpage_T *tp, *nexttp; | |
685 | 2029 int h = tabline_height(); |
7 | 2030 |
2031 ++RedrawingDisabled; | |
671 | 2032 |
2033 for (wp = firstwin; wp != NULL && lastwin != firstwin; ) | |
7 | 2034 { |
3570 | 2035 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin) |
2036 #ifdef FEAT_AUTOCMD | |
2037 && !(wp->w_closing || wp->w_buffer->b_closing) | |
2038 #endif | |
2039 ) | |
7 | 2040 { |
671 | 2041 win_close(wp, FALSE); |
2042 | |
2043 /* Start all over, autocommands may change the window layout. */ | |
2044 wp = firstwin; | |
7 | 2045 } |
2046 else | |
671 | 2047 wp = wp->w_next; |
7 | 2048 } |
671 | 2049 |
2050 /* Also check windows in other tab pages. */ | |
2051 for (tp = first_tabpage; tp != NULL; tp = nexttp) | |
2052 { | |
2053 nexttp = tp->tp_next; | |
672 | 2054 if (tp != curtab) |
671 | 2055 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next) |
3570 | 2056 if (wp->w_buffer == buf |
2057 #ifdef FEAT_AUTOCMD | |
2058 && !(wp->w_closing || wp->w_buffer->b_closing) | |
2059 #endif | |
2060 ) | |
671 | 2061 { |
2062 win_close_othertab(wp, FALSE, tp); | |
2063 | |
2064 /* Start all over, the tab page may be closed and | |
2065 * autocommands may change the window layout. */ | |
2066 nexttp = first_tabpage; | |
2067 break; | |
2068 } | |
2069 } | |
2070 | |
7 | 2071 --RedrawingDisabled; |
671 | 2072 |
4305 | 2073 redraw_tabline = TRUE; |
685 | 2074 if (h != tabline_height()) |
671 | 2075 shell_new_rows(); |
7 | 2076 } |
2077 | |
2078 /* | |
1906 | 2079 * Return TRUE if the current window is the only window that exists (ignoring |
2080 * "aucmd_win"). | |
672 | 2081 * Returns FALSE if there is a window, possibly in another tab page. |
667 | 2082 */ |
672 | 2083 static int |
667 | 2084 last_window() |
2085 { | |
1906 | 2086 return (one_window() && first_tabpage->tp_next == NULL); |
2087 } | |
2088 | |
2089 /* | |
2090 * Return TRUE if there is only one window other than "aucmd_win" in the | |
2091 * current tab page. | |
2092 */ | |
3365 | 2093 int |
1906 | 2094 one_window() |
2095 { | |
2096 #ifdef FEAT_AUTOCMD | |
2097 win_T *wp; | |
2098 int seen_one = FALSE; | |
2099 | |
2100 FOR_ALL_WINDOWS(wp) | |
2101 { | |
2102 if (wp != aucmd_win) | |
2103 { | |
2104 if (seen_one) | |
2105 return FALSE; | |
2106 seen_one = TRUE; | |
2107 } | |
2108 } | |
2109 return TRUE; | |
2110 #else | |
2111 return firstwin == lastwin; | |
2112 #endif | |
667 | 2113 } |
2114 | |
2115 /* | |
3535 | 2116 * Close the possibly last window in a tab page. |
2117 * Returns TRUE when the window was closed already. | |
2118 */ | |
2119 static int | |
2120 close_last_window_tabpage(win, free_buf, prev_curtab) | |
2121 win_T *win; | |
2122 int free_buf; | |
2123 tabpage_T *prev_curtab; | |
2124 { | |
2125 if (firstwin == lastwin) | |
2126 { | |
4423 | 2127 #ifdef FEAT_AUTOCMD |
4354 | 2128 buf_T *old_curbuf = curbuf; |
4423 | 2129 #endif |
4354 | 2130 |
3535 | 2131 /* |
2132 * Closing the last window in a tab page. First go to another tab | |
2133 * page and then close the window and the tab page. This avoids that | |
2134 * curwin and curtab are invalid while we are freeing memory, they may | |
2135 * be used in GUI events. | |
3582 | 2136 * Don't trigger autocommands yet, they may use wrong values, so do |
2137 * that below. | |
3535 | 2138 */ |
4354 | 2139 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE); |
3535 | 2140 redraw_tabline = TRUE; |
2141 | |
2142 /* Safety check: Autocommands may have closed the window when jumping | |
2143 * to the other tab page. */ | |
2144 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win) | |
2145 { | |
2146 int h = tabline_height(); | |
2147 | |
2148 win_close_othertab(win, free_buf, prev_curtab); | |
2149 if (h != tabline_height()) | |
2150 shell_new_rows(); | |
2151 } | |
3582 | 2152 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do |
2153 * that now. */ | |
2154 #ifdef FEAT_AUTOCMD | |
4354 | 2155 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
3582 | 2156 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
4354 | 2157 if (old_curbuf != curbuf) |
2158 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3582 | 2159 #endif |
3535 | 2160 return TRUE; |
2161 } | |
2162 return FALSE; | |
2163 } | |
2164 | |
2165 /* | |
819 | 2166 * Close window "win". Only works for the current tab page. |
7 | 2167 * If "free_buf" is TRUE related buffer may be unloaded. |
2168 * | |
3365 | 2169 * Called by :quit, :close, :xit, :wq and findtag(). |
7 | 2170 */ |
2171 void | |
2172 win_close(win, free_buf) | |
2173 win_T *win; | |
2174 int free_buf; | |
2175 { | |
2176 win_T *wp; | |
2177 #ifdef FEAT_AUTOCMD | |
2178 int other_buffer = FALSE; | |
2179 #endif | |
2180 int close_curwin = FALSE; | |
2181 int dir; | |
2182 int help_window = FALSE; | |
847 | 2183 tabpage_T *prev_curtab = curtab; |
7 | 2184 |
667 | 2185 if (last_window()) |
7 | 2186 { |
2187 EMSG(_("E444: Cannot close last window")); | |
2188 return; | |
2189 } | |
2190 | |
1906 | 2191 #ifdef FEAT_AUTOCMD |
3656 | 2192 if (win->w_closing || (win->w_buffer != NULL && win->w_buffer->b_closing)) |
3570 | 2193 return; /* window is already being closed */ |
1906 | 2194 if (win == aucmd_win) |
2195 { | |
2196 EMSG(_("E813: Cannot close autocmd window")); | |
2197 return; | |
2198 } | |
2199 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) | |
2200 { | |
2201 EMSG(_("E814: Cannot close window, only autocmd window would remain")); | |
2202 return; | |
2203 } | |
2204 #endif | |
2205 | |
3535 | 2206 /* When closing the last window in a tab page first go to another tab page |
2207 * and then close the window and the tab page to avoid that curwin and | |
2208 * curtab are invalid while we are freeing memory. */ | |
2209 if (close_last_window_tabpage(win, free_buf, prev_curtab)) | |
2210 return; | |
856 | 2211 |
7 | 2212 /* When closing the help window, try restoring a snapshot after closing |
2213 * the window. Otherwise clear the snapshot, it's now invalid. */ | |
3242 | 2214 if (win->w_buffer != NULL && win->w_buffer->b_help) |
7 | 2215 help_window = TRUE; |
2216 else | |
1906 | 2217 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 2218 |
2219 #ifdef FEAT_AUTOCMD | |
2220 if (win == curwin) | |
2221 { | |
2222 /* | |
2223 * Guess which window is going to be the new current window. | |
2224 * This may change because of the autocommands (sigh). | |
2225 */ | |
671 | 2226 wp = frame2win(win_altframe(win, NULL)); |
7 | 2227 |
2228 /* | |
3570 | 2229 * Be careful: If autocommands delete the window or cause this window |
2230 * to be the last one left, return now. | |
7 | 2231 */ |
2232 if (wp->w_buffer != curbuf) | |
2233 { | |
2234 other_buffer = TRUE; | |
3570 | 2235 win->w_closing = TRUE; |
7 | 2236 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2237 if (!win_valid(win)) |
2238 return; | |
2239 win->w_closing = FALSE; | |
2240 if (last_window()) | |
7 | 2241 return; |
2242 } | |
3570 | 2243 win->w_closing = TRUE; |
7 | 2244 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2245 if (!win_valid(win)) |
2246 return; | |
2247 win->w_closing = FALSE; | |
2248 if (last_window()) | |
7 | 2249 return; |
2250 # ifdef FEAT_EVAL | |
2251 /* autocmds may abort script processing */ | |
2252 if (aborting()) | |
2253 return; | |
2254 # endif | |
2255 } | |
2256 #endif | |
2257 | |
1101 | 2258 #ifdef FEAT_GUI |
2259 /* Avoid trouble with scrollbars that are going to be deleted in | |
2260 * win_free(). */ | |
2261 if (gui.in_use) | |
2262 out_flush(); | |
2263 #endif | |
2264 | |
3068 | 2265 #ifdef FEAT_SYN_HL |
2266 /* Free independent synblock before the buffer is freed. */ | |
3242 | 2267 if (win->w_buffer != NULL) |
2268 reset_synblock(win); | |
3068 | 2269 #endif |
2270 | |
7 | 2271 /* |
2272 * Close the link to the buffer. | |
2273 */ | |
3242 | 2274 if (win->w_buffer != NULL) |
3570 | 2275 { |
2276 #ifdef FEAT_AUTOCMD | |
2277 win->w_closing = TRUE; | |
2278 #endif | |
3768 | 2279 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE); |
3570 | 2280 #ifdef FEAT_AUTOCMD |
2281 if (win_valid(win)) | |
2282 win->w_closing = FALSE; | |
2283 #endif | |
2284 } | |
847 | 2285 |
4021 | 2286 if (only_one_window() && win_valid(win) && win->w_buffer == NULL |
2287 && (last_window() || curtab != prev_curtab | |
2288 || close_last_window_tabpage(win, free_buf, prev_curtab))) | |
2289 /* Autocommands have close all windows, quit now. */ | |
2290 getout(0); | |
2291 | |
7 | 2292 /* Autocommands may have closed the window already, or closed the only |
847 | 2293 * other window or moved to another tab page. */ |
4021 | 2294 else if (!win_valid(win) || last_window() || curtab != prev_curtab |
3535 | 2295 || close_last_window_tabpage(win, free_buf, prev_curtab)) |
7 | 2296 return; |
2297 | |
3068 | 2298 /* Free the memory used for the window and get the window that received |
2299 * the screen space. */ | |
847 | 2300 wp = win_free_mem(win, &dir, NULL); |
2301 | |
7 | 2302 /* Make sure curwin isn't invalid. It can cause severe trouble when |
2303 * printing an error message. For win_equal() curbuf needs to be valid | |
2304 * too. */ | |
847 | 2305 if (win == curwin) |
7 | 2306 { |
2307 curwin = wp; | |
2308 #ifdef FEAT_QUICKFIX | |
2309 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer)) | |
2310 { | |
2311 /* | |
1346 | 2312 * If the cursor goes to the preview or the quickfix window, try |
7 | 2313 * finding another window to go to. |
2314 */ | |
2315 for (;;) | |
2316 { | |
2317 if (wp->w_next == NULL) | |
2318 wp = firstwin; | |
2319 else | |
2320 wp = wp->w_next; | |
2321 if (wp == curwin) | |
2322 break; | |
2323 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer)) | |
2324 { | |
2325 curwin = wp; | |
2326 break; | |
2327 } | |
2328 } | |
2329 } | |
2330 #endif | |
2331 curbuf = curwin->w_buffer; | |
2332 close_curwin = TRUE; | |
2333 } | |
36 | 2334 if (p_ea |
2335 #ifdef FEAT_VERTSPLIT | |
2336 && (*p_ead == 'b' || *p_ead == dir) | |
2337 #endif | |
2338 ) | |
7 | 2339 win_equal(curwin, TRUE, |
2340 #ifdef FEAT_VERTSPLIT | |
2341 dir | |
2342 #else | |
2343 0 | |
2344 #endif | |
2345 ); | |
2346 else | |
2347 win_comp_pos(); | |
2348 if (close_curwin) | |
2349 { | |
4354 | 2350 win_enter_ext(wp, FALSE, TRUE, TRUE, TRUE); |
7 | 2351 #ifdef FEAT_AUTOCMD |
2352 if (other_buffer) | |
2353 /* careful: after this wp and win may be invalid! */ | |
2354 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
2355 #endif | |
2356 } | |
2357 | |
2358 /* | |
667 | 2359 * If last window has a status line now and we don't want one, |
2360 * remove the status line. | |
7 | 2361 */ |
2362 last_status(FALSE); | |
2363 | |
2364 /* After closing the help window, try restoring the window layout from | |
2365 * before it was opened. */ | |
2366 if (help_window) | |
1906 | 2367 restore_snapshot(SNAP_HELP_IDX, close_curwin); |
7 | 2368 |
2369 #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT) | |
2370 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */ | |
2371 if (gui.in_use && !win_hasvertsplit()) | |
2372 gui_init_which_components(NULL); | |
2373 #endif | |
2374 | |
2375 redraw_all_later(NOT_VALID); | |
2376 } | |
2377 | |
2378 /* | |
671 | 2379 * Close window "win" in tab page "tp", which is not the current tab page. |
3535 | 2380 * This may be the last window in that tab page and result in closing the tab, |
671 | 2381 * thus "tp" may become invalid! |
856 | 2382 * Caller must check if buffer is hidden and whether the tabline needs to be |
2383 * updated. | |
671 | 2384 */ |
2385 void | |
2386 win_close_othertab(win, free_buf, tp) | |
2387 win_T *win; | |
2388 int free_buf; | |
2389 tabpage_T *tp; | |
2390 { | |
2391 win_T *wp; | |
2392 int dir; | |
2393 tabpage_T *ptp = NULL; | |
2191 | 2394 int free_tp = FALSE; |
671 | 2395 |
3570 | 2396 #ifdef FEAT_AUTOCMD |
2397 if (win->w_closing || win->w_buffer->b_closing) | |
2398 return; /* window is already being closed */ | |
2399 #endif | |
2400 | |
671 | 2401 /* Close the link to the buffer. */ |
3365 | 2402 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE); |
671 | 2403 |
2404 /* Careful: Autocommands may have closed the tab page or made it the | |
2405 * current tab page. */ | |
2406 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) | |
2407 ; | |
672 | 2408 if (ptp == NULL || tp == curtab) |
671 | 2409 return; |
2410 | |
2411 /* Autocommands may have closed the window already. */ | |
2412 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next) | |
2413 ; | |
2414 if (wp == NULL) | |
2415 return; | |
2416 | |
2417 /* When closing the last window in a tab page remove the tab page. */ | |
2191 | 2418 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin) |
671 | 2419 { |
2420 if (tp == first_tabpage) | |
2421 first_tabpage = tp->tp_next; | |
2422 else | |
2423 { | |
2424 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; | |
2425 ptp = ptp->tp_next) | |
2426 ; | |
2427 if (ptp == NULL) | |
2428 { | |
2429 EMSG2(_(e_intern2), "win_close_othertab()"); | |
2430 return; | |
2431 } | |
2432 ptp->tp_next = tp->tp_next; | |
2433 } | |
2191 | 2434 free_tp = TRUE; |
2435 } | |
2436 | |
2437 /* Free the memory used for the window. */ | |
2438 win_free_mem(win, &dir, tp); | |
2439 | |
2440 if (free_tp) | |
847 | 2441 free_tabpage(tp); |
671 | 2442 } |
2443 | |
2444 /* | |
355 | 2445 * Free the memory used for a window. |
2446 * Returns a pointer to the window that got the freed up space. | |
2447 */ | |
2448 static win_T * | |
671 | 2449 win_free_mem(win, dirp, tp) |
355 | 2450 win_T *win; |
2451 int *dirp; /* set to 'v' or 'h' for direction if 'ea' */ | |
671 | 2452 tabpage_T *tp; /* tab page "win" is in, NULL for current */ |
355 | 2453 { |
2454 frame_T *frp; | |
2455 win_T *wp; | |
2456 | |
667 | 2457 /* Remove the window and its frame from the tree of frames. */ |
355 | 2458 frp = win->w_frame; |
671 | 2459 wp = winframe_remove(win, dirp, tp); |
355 | 2460 vim_free(frp); |
671 | 2461 win_free(win, tp); |
355 | 2462 |
819 | 2463 /* When deleting the current window of another tab page select a new |
2464 * current window. */ | |
2465 if (tp != NULL && win == tp->tp_curwin) | |
2466 tp->tp_curwin = wp; | |
2467 | |
355 | 2468 return wp; |
2469 } | |
2470 | |
2471 #if defined(EXITFREE) || defined(PROTO) | |
2472 void | |
2473 win_free_all() | |
2474 { | |
2475 int dummy; | |
2476 | |
671 | 2477 # ifdef FEAT_WINDOWS |
2478 while (first_tabpage->tp_next != NULL) | |
2479 tabpage_close(TRUE); | |
2480 # endif | |
2481 | |
1906 | 2482 # ifdef FEAT_AUTOCMD |
2483 if (aucmd_win != NULL) | |
2484 { | |
2485 (void)win_free_mem(aucmd_win, &dummy, NULL); | |
2486 aucmd_win = NULL; | |
2487 } | |
2488 # endif | |
1918 | 2489 |
2490 while (firstwin != NULL) | |
2491 (void)win_free_mem(firstwin, &dummy, NULL); | |
355 | 2492 } |
2493 #endif | |
2494 | |
2495 /* | |
7 | 2496 * Remove a window and its frame from the tree of frames. |
2497 * Returns a pointer to the window that got the freed up space. | |
2498 */ | |
1906 | 2499 win_T * |
671 | 2500 winframe_remove(win, dirp, tp) |
7 | 2501 win_T *win; |
1887 | 2502 int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */ |
671 | 2503 tabpage_T *tp; /* tab page "win" is in, NULL for current */ |
7 | 2504 { |
2505 frame_T *frp, *frp2, *frp3; | |
2506 frame_T *frp_close = win->w_frame; | |
2507 win_T *wp; | |
2508 | |
2509 /* | |
671 | 2510 * If there is only one window there is nothing to remove. |
2511 */ | |
2512 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin) | |
2513 return NULL; | |
2514 | |
2515 /* | |
7 | 2516 * Remove the window from its frame. |
2517 */ | |
671 | 2518 frp2 = win_altframe(win, tp); |
7 | 2519 wp = frame2win(frp2); |
2520 | |
2521 /* Remove this frame from the list of frames. */ | |
2522 frame_remove(frp_close); | |
2523 | |
2524 #ifdef FEAT_VERTSPLIT | |
2525 if (frp_close->fr_parent->fr_layout == FR_COL) | |
2526 { | |
2527 #endif | |
1346 | 2528 /* When 'winfixheight' is set, try to find another frame in the column |
2529 * (as close to the closed frame as possible) to distribute the height | |
2530 * to. */ | |
2531 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh) | |
2532 { | |
2533 frp = frp_close->fr_prev; | |
2534 frp3 = frp_close->fr_next; | |
2535 while (frp != NULL || frp3 != NULL) | |
2536 { | |
2537 if (frp != NULL) | |
2538 { | |
2539 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh) | |
2540 { | |
2541 frp2 = frp; | |
2542 wp = frp->fr_win; | |
2543 break; | |
2544 } | |
2545 frp = frp->fr_prev; | |
2546 } | |
2547 if (frp3 != NULL) | |
2548 { | |
2549 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh) | |
2550 { | |
2551 frp2 = frp3; | |
2552 wp = frp3->fr_win; | |
2553 break; | |
2554 } | |
2555 frp3 = frp3->fr_next; | |
2556 } | |
2557 } | |
2558 } | |
7 | 2559 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height, |
2560 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); | |
2561 #ifdef FEAT_VERTSPLIT | |
2562 *dirp = 'v'; | |
2563 } | |
2564 else | |
2565 { | |
1346 | 2566 /* When 'winfixwidth' is set, try to find another frame in the column |
2567 * (as close to the closed frame as possible) to distribute the width | |
2568 * to. */ | |
2569 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw) | |
2570 { | |
2571 frp = frp_close->fr_prev; | |
2572 frp3 = frp_close->fr_next; | |
2573 while (frp != NULL || frp3 != NULL) | |
2574 { | |
2575 if (frp != NULL) | |
2576 { | |
2577 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw) | |
2578 { | |
2579 frp2 = frp; | |
2580 wp = frp->fr_win; | |
2581 break; | |
2582 } | |
2583 frp = frp->fr_prev; | |
2584 } | |
2585 if (frp3 != NULL) | |
2586 { | |
2587 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw) | |
2588 { | |
2589 frp2 = frp3; | |
2590 wp = frp3->fr_win; | |
2591 break; | |
2592 } | |
2593 frp3 = frp3->fr_next; | |
2594 } | |
2595 } | |
2596 } | |
7 | 2597 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width, |
779 | 2598 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); |
7 | 2599 *dirp = 'h'; |
2600 } | |
2601 #endif | |
2602 | |
2603 /* If rows/columns go to a window below/right its positions need to be | |
2604 * updated. Can only be done after the sizes have been updated. */ | |
2605 if (frp2 == frp_close->fr_next) | |
2606 { | |
2607 int row = win->w_winrow; | |
2608 int col = W_WINCOL(win); | |
2609 | |
2610 frame_comp_pos(frp2, &row, &col); | |
2611 } | |
2612 | |
2613 if (frp2->fr_next == NULL && frp2->fr_prev == NULL) | |
2614 { | |
2615 /* There is no other frame in this list, move its info to the parent | |
2616 * and remove it. */ | |
2617 frp2->fr_parent->fr_layout = frp2->fr_layout; | |
2618 frp2->fr_parent->fr_child = frp2->fr_child; | |
2619 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next) | |
2620 frp->fr_parent = frp2->fr_parent; | |
2621 frp2->fr_parent->fr_win = frp2->fr_win; | |
2622 if (frp2->fr_win != NULL) | |
2623 frp2->fr_win->w_frame = frp2->fr_parent; | |
2624 frp = frp2->fr_parent; | |
2625 vim_free(frp2); | |
2626 | |
2627 frp2 = frp->fr_parent; | |
2628 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout) | |
2629 { | |
2630 /* The frame above the parent has the same layout, have to merge | |
2631 * the frames into this list. */ | |
2632 if (frp2->fr_child == frp) | |
2633 frp2->fr_child = frp->fr_child; | |
2634 frp->fr_child->fr_prev = frp->fr_prev; | |
2635 if (frp->fr_prev != NULL) | |
2636 frp->fr_prev->fr_next = frp->fr_child; | |
2637 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next) | |
2638 { | |
2639 frp3->fr_parent = frp2; | |
2640 if (frp3->fr_next == NULL) | |
2641 { | |
2642 frp3->fr_next = frp->fr_next; | |
2643 if (frp->fr_next != NULL) | |
2644 frp->fr_next->fr_prev = frp3; | |
2645 break; | |
2646 } | |
2647 } | |
2648 vim_free(frp); | |
2649 } | |
2650 } | |
2651 | |
2652 return wp; | |
2653 } | |
2654 | |
2655 /* | |
2656 * Find out which frame is going to get the freed up space when "win" is | |
2657 * closed. | |
2658 * if 'splitbelow'/'splitleft' the space goes to the window above/left. | |
2659 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right. | |
2660 * This makes opening a window and closing it immediately keep the same window | |
2661 * layout. | |
2662 */ | |
2663 static frame_T * | |
671 | 2664 win_altframe(win, tp) |
7 | 2665 win_T *win; |
671 | 2666 tabpage_T *tp; /* tab page "win" is in, NULL for current */ |
7 | 2667 { |
2668 frame_T *frp; | |
2669 int b; | |
2670 | |
671 | 2671 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin) |
667 | 2672 /* Last window in this tab page, will go to next tab page. */ |
2673 return alt_tabpage()->tp_curwin->w_frame; | |
2674 | |
7 | 2675 frp = win->w_frame; |
2676 #ifdef FEAT_VERTSPLIT | |
355 | 2677 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW) |
7 | 2678 b = p_spr; |
2679 else | |
2680 #endif | |
2681 b = p_sb; | |
2682 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL) | |
2683 return frp->fr_next; | |
2684 return frp->fr_prev; | |
2685 } | |
2686 | |
2687 /* | |
667 | 2688 * Return the tabpage that will be used if the current one is closed. |
2689 */ | |
2690 static tabpage_T * | |
2691 alt_tabpage() | |
2692 { | |
672 | 2693 tabpage_T *tp; |
2694 | |
682 | 2695 /* Use the next tab page if possible. */ |
2696 if (curtab->tp_next != NULL) | |
672 | 2697 return curtab->tp_next; |
2698 | |
682 | 2699 /* Find the last but one tab page. */ |
2700 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next) | |
2701 ; | |
674 | 2702 return tp; |
667 | 2703 } |
2704 | |
2705 /* | |
7 | 2706 * Find the left-upper window in frame "frp". |
2707 */ | |
2708 static win_T * | |
2709 frame2win(frp) | |
2710 frame_T *frp; | |
2711 { | |
2712 while (frp->fr_win == NULL) | |
2713 frp = frp->fr_child; | |
2714 return frp->fr_win; | |
2715 } | |
2716 | |
2717 /* | |
2718 * Return TRUE if frame "frp" contains window "wp". | |
2719 */ | |
2720 static int | |
2721 frame_has_win(frp, wp) | |
2722 frame_T *frp; | |
2723 win_T *wp; | |
2724 { | |
2725 frame_T *p; | |
2726 | |
2727 if (frp->fr_layout == FR_LEAF) | |
2728 return frp->fr_win == wp; | |
2729 | |
2730 for (p = frp->fr_child; p != NULL; p = p->fr_next) | |
2731 if (frame_has_win(p, wp)) | |
2732 return TRUE; | |
2733 return FALSE; | |
2734 } | |
2735 | |
2736 /* | |
2737 * Set a new height for a frame. Recursively sets the height for contained | |
2738 * frames and windows. Caller must take care of positions. | |
2739 */ | |
2740 static void | |
2741 frame_new_height(topfrp, height, topfirst, wfh) | |
2742 frame_T *topfrp; | |
2743 int height; | |
2744 int topfirst; /* resize topmost contained frame first */ | |
2745 int wfh; /* obey 'winfixheight' when there is a choice; | |
2746 may cause the height not to be set */ | |
2747 { | |
2748 frame_T *frp; | |
2749 int extra_lines; | |
2750 int h; | |
2751 | |
2752 if (topfrp->fr_win != NULL) | |
2753 { | |
2754 /* Simple case: just one window. */ | |
2755 win_new_height(topfrp->fr_win, | |
2756 height - topfrp->fr_win->w_status_height); | |
2757 } | |
2758 #ifdef FEAT_VERTSPLIT | |
2759 else if (topfrp->fr_layout == FR_ROW) | |
2760 { | |
2761 do | |
2762 { | |
2763 /* All frames in this row get the same new height. */ | |
2764 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
2765 { | |
2766 frame_new_height(frp, height, topfirst, wfh); | |
2767 if (frp->fr_height > height) | |
2768 { | |
2769 /* Could not fit the windows, make the whole row higher. */ | |
2770 height = frp->fr_height; | |
2771 break; | |
2772 } | |
2773 } | |
2774 } | |
2775 while (frp != NULL); | |
2776 } | |
2777 #endif | |
779 | 2778 else /* fr_layout == FR_COL */ |
7 | 2779 { |
2780 /* Complicated case: Resize a column of frames. Resize the bottom | |
2781 * frame first, frames above that when needed. */ | |
2782 | |
2783 frp = topfrp->fr_child; | |
2784 if (wfh) | |
2785 /* Advance past frames with one window with 'wfh' set. */ | |
2786 while (frame_fixed_height(frp)) | |
2787 { | |
2788 frp = frp->fr_next; | |
2789 if (frp == NULL) | |
2790 return; /* no frame without 'wfh', give up */ | |
2791 } | |
2792 if (!topfirst) | |
2793 { | |
2794 /* Find the bottom frame of this column */ | |
2795 while (frp->fr_next != NULL) | |
2796 frp = frp->fr_next; | |
2797 if (wfh) | |
2798 /* Advance back for frames with one window with 'wfh' set. */ | |
2799 while (frame_fixed_height(frp)) | |
2800 frp = frp->fr_prev; | |
2801 } | |
2802 | |
2803 extra_lines = height - topfrp->fr_height; | |
2804 if (extra_lines < 0) | |
2805 { | |
2806 /* reduce height of contained frames, bottom or top frame first */ | |
2807 while (frp != NULL) | |
2808 { | |
2809 h = frame_minheight(frp, NULL); | |
2810 if (frp->fr_height + extra_lines < h) | |
2811 { | |
2812 extra_lines += frp->fr_height - h; | |
2813 frame_new_height(frp, h, topfirst, wfh); | |
2814 } | |
2815 else | |
2816 { | |
2817 frame_new_height(frp, frp->fr_height + extra_lines, | |
2818 topfirst, wfh); | |
2819 break; | |
2820 } | |
2821 if (topfirst) | |
2822 { | |
2823 do | |
2824 frp = frp->fr_next; | |
2825 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
2826 } | |
2827 else | |
2828 { | |
2829 do | |
2830 frp = frp->fr_prev; | |
2831 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
2832 } | |
2833 /* Increase "height" if we could not reduce enough frames. */ | |
2834 if (frp == NULL) | |
2835 height -= extra_lines; | |
2836 } | |
2837 } | |
2838 else if (extra_lines > 0) | |
2839 { | |
2840 /* increase height of bottom or top frame */ | |
2841 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh); | |
2842 } | |
2843 } | |
2844 topfrp->fr_height = height; | |
2845 } | |
2846 | |
2847 /* | |
2848 * Return TRUE if height of frame "frp" should not be changed because of | |
2849 * the 'winfixheight' option. | |
2850 */ | |
2851 static int | |
2852 frame_fixed_height(frp) | |
2853 frame_T *frp; | |
2854 { | |
2855 /* frame with one window: fixed height if 'winfixheight' set. */ | |
2856 if (frp->fr_win != NULL) | |
2857 return frp->fr_win->w_p_wfh; | |
2858 | |
2859 if (frp->fr_layout == FR_ROW) | |
2860 { | |
2861 /* The frame is fixed height if one of the frames in the row is fixed | |
2862 * height. */ | |
2863 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
2864 if (frame_fixed_height(frp)) | |
2865 return TRUE; | |
2866 return FALSE; | |
2867 } | |
2868 | |
2869 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the | |
2870 * frames in the row are fixed height. */ | |
2871 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
2872 if (!frame_fixed_height(frp)) | |
2873 return FALSE; | |
2874 return TRUE; | |
2875 } | |
2876 | |
2877 #ifdef FEAT_VERTSPLIT | |
2878 /* | |
779 | 2879 * Return TRUE if width of frame "frp" should not be changed because of |
2880 * the 'winfixwidth' option. | |
2881 */ | |
2882 static int | |
2883 frame_fixed_width(frp) | |
2884 frame_T *frp; | |
2885 { | |
2886 /* frame with one window: fixed width if 'winfixwidth' set. */ | |
2887 if (frp->fr_win != NULL) | |
2888 return frp->fr_win->w_p_wfw; | |
2889 | |
2890 if (frp->fr_layout == FR_COL) | |
2891 { | |
2892 /* The frame is fixed width if one of the frames in the row is fixed | |
2893 * width. */ | |
2894 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
2895 if (frame_fixed_width(frp)) | |
2896 return TRUE; | |
2897 return FALSE; | |
2898 } | |
2899 | |
2900 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the | |
2901 * frames in the row are fixed width. */ | |
2902 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
2903 if (!frame_fixed_width(frp)) | |
2904 return FALSE; | |
2905 return TRUE; | |
2906 } | |
2907 | |
2908 /* | |
7 | 2909 * Add a status line to windows at the bottom of "frp". |
2910 * Note: Does not check if there is room! | |
2911 */ | |
2912 static void | |
2913 frame_add_statusline(frp) | |
2914 frame_T *frp; | |
2915 { | |
2916 win_T *wp; | |
2917 | |
2918 if (frp->fr_layout == FR_LEAF) | |
2919 { | |
2920 wp = frp->fr_win; | |
2921 if (wp->w_status_height == 0) | |
2922 { | |
2923 if (wp->w_height > 0) /* don't make it negative */ | |
2924 --wp->w_height; | |
2925 wp->w_status_height = STATUS_HEIGHT; | |
2926 } | |
2927 } | |
2928 else if (frp->fr_layout == FR_ROW) | |
2929 { | |
2930 /* Handle all the frames in the row. */ | |
2931 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
2932 frame_add_statusline(frp); | |
2933 } | |
2934 else /* frp->fr_layout == FR_COL */ | |
2935 { | |
2936 /* Only need to handle the last frame in the column. */ | |
2937 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next) | |
2938 ; | |
2939 frame_add_statusline(frp); | |
2940 } | |
2941 } | |
2942 | |
2943 /* | |
2944 * Set width of a frame. Handles recursively going through contained frames. | |
2945 * May remove separator line for windows at the right side (for win_close()). | |
2946 */ | |
2947 static void | |
779 | 2948 frame_new_width(topfrp, width, leftfirst, wfw) |
7 | 2949 frame_T *topfrp; |
2950 int width; | |
2951 int leftfirst; /* resize leftmost contained frame first */ | |
779 | 2952 int wfw; /* obey 'winfixwidth' when there is a choice; |
2953 may cause the width not to be set */ | |
7 | 2954 { |
2955 frame_T *frp; | |
2956 int extra_cols; | |
2957 int w; | |
2958 win_T *wp; | |
2959 | |
2960 if (topfrp->fr_layout == FR_LEAF) | |
2961 { | |
2962 /* Simple case: just one window. */ | |
2963 wp = topfrp->fr_win; | |
2964 /* Find out if there are any windows right of this one. */ | |
2965 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent) | |
2966 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL) | |
2967 break; | |
2968 if (frp->fr_parent == NULL) | |
2969 wp->w_vsep_width = 0; | |
2970 win_new_width(wp, width - wp->w_vsep_width); | |
2971 } | |
2972 else if (topfrp->fr_layout == FR_COL) | |
2973 { | |
779 | 2974 do |
2975 { | |
2976 /* All frames in this column get the same new width. */ | |
2977 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
2978 { | |
2979 frame_new_width(frp, width, leftfirst, wfw); | |
2980 if (frp->fr_width > width) | |
2981 { | |
2982 /* Could not fit the windows, make whole column wider. */ | |
2983 width = frp->fr_width; | |
2984 break; | |
2985 } | |
2986 } | |
2987 } while (frp != NULL); | |
7 | 2988 } |
2989 else /* fr_layout == FR_ROW */ | |
2990 { | |
2991 /* Complicated case: Resize a row of frames. Resize the rightmost | |
2992 * frame first, frames left of it when needed. */ | |
2993 | |
2994 frp = topfrp->fr_child; | |
779 | 2995 if (wfw) |
2996 /* Advance past frames with one window with 'wfw' set. */ | |
2997 while (frame_fixed_width(frp)) | |
2998 { | |
2999 frp = frp->fr_next; | |
3000 if (frp == NULL) | |
3001 return; /* no frame without 'wfw', give up */ | |
3002 } | |
7 | 3003 if (!leftfirst) |
779 | 3004 { |
3005 /* Find the rightmost frame of this row */ | |
7 | 3006 while (frp->fr_next != NULL) |
3007 frp = frp->fr_next; | |
779 | 3008 if (wfw) |
3009 /* Advance back for frames with one window with 'wfw' set. */ | |
3010 while (frame_fixed_width(frp)) | |
3011 frp = frp->fr_prev; | |
3012 } | |
7 | 3013 |
3014 extra_cols = width - topfrp->fr_width; | |
3015 if (extra_cols < 0) | |
3016 { | |
3017 /* reduce frame width, rightmost frame first */ | |
3018 while (frp != NULL) | |
3019 { | |
3020 w = frame_minwidth(frp, NULL); | |
3021 if (frp->fr_width + extra_cols < w) | |
3022 { | |
3023 extra_cols += frp->fr_width - w; | |
779 | 3024 frame_new_width(frp, w, leftfirst, wfw); |
7 | 3025 } |
3026 else | |
3027 { | |
779 | 3028 frame_new_width(frp, frp->fr_width + extra_cols, |
3029 leftfirst, wfw); | |
7 | 3030 break; |
3031 } | |
3032 if (leftfirst) | |
779 | 3033 { |
3034 do | |
3035 frp = frp->fr_next; | |
3036 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3037 } | |
7 | 3038 else |
779 | 3039 { |
3040 do | |
3041 frp = frp->fr_prev; | |
3042 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3043 } | |
3044 /* Increase "width" if we could not reduce enough frames. */ | |
3045 if (frp == NULL) | |
3046 width -= extra_cols; | |
7 | 3047 } |
3048 } | |
3049 else if (extra_cols > 0) | |
3050 { | |
3051 /* increase width of rightmost frame */ | |
779 | 3052 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw); |
7 | 3053 } |
3054 } | |
3055 topfrp->fr_width = width; | |
3056 } | |
3057 | |
3058 /* | |
3059 * Add the vertical separator to windows at the right side of "frp". | |
3060 * Note: Does not check if there is room! | |
3061 */ | |
3062 static void | |
3063 frame_add_vsep(frp) | |
3064 frame_T *frp; | |
3065 { | |
3066 win_T *wp; | |
3067 | |
3068 if (frp->fr_layout == FR_LEAF) | |
3069 { | |
3070 wp = frp->fr_win; | |
3071 if (wp->w_vsep_width == 0) | |
3072 { | |
3073 if (wp->w_width > 0) /* don't make it negative */ | |
3074 --wp->w_width; | |
3075 wp->w_vsep_width = 1; | |
3076 } | |
3077 } | |
3078 else if (frp->fr_layout == FR_COL) | |
3079 { | |
3080 /* Handle all the frames in the column. */ | |
3081 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next) | |
3082 frame_add_vsep(frp); | |
3083 } | |
3084 else /* frp->fr_layout == FR_ROW */ | |
3085 { | |
3086 /* Only need to handle the last frame in the row. */ | |
3087 frp = frp->fr_child; | |
3088 while (frp->fr_next != NULL) | |
3089 frp = frp->fr_next; | |
3090 frame_add_vsep(frp); | |
3091 } | |
3092 } | |
3093 | |
3094 /* | |
3095 * Set frame width from the window it contains. | |
3096 */ | |
3097 static void | |
3098 frame_fix_width(wp) | |
3099 win_T *wp; | |
3100 { | |
3101 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width; | |
3102 } | |
3103 #endif | |
3104 | |
3105 /* | |
3106 * Set frame height from the window it contains. | |
3107 */ | |
3108 static void | |
3109 frame_fix_height(wp) | |
3110 win_T *wp; | |
3111 { | |
3112 wp->w_frame->fr_height = wp->w_height + wp->w_status_height; | |
3113 } | |
3114 | |
3115 /* | |
3116 * Compute the minimal height for frame "topfrp". | |
3117 * Uses the 'winminheight' option. | |
3118 * When "next_curwin" isn't NULL, use p_wh for this window. | |
3119 * When "next_curwin" is NOWIN, don't use at least one line for the current | |
3120 * window. | |
3121 */ | |
3122 static int | |
3123 frame_minheight(topfrp, next_curwin) | |
3124 frame_T *topfrp; | |
3125 win_T *next_curwin; | |
3126 { | |
3127 frame_T *frp; | |
3128 int m; | |
3129 #ifdef FEAT_VERTSPLIT | |
3130 int n; | |
3131 #endif | |
3132 | |
3133 if (topfrp->fr_win != NULL) | |
3134 { | |
3135 if (topfrp->fr_win == next_curwin) | |
3136 m = p_wh + topfrp->fr_win->w_status_height; | |
3137 else | |
3138 { | |
3139 /* window: minimal height of the window plus status line */ | |
3140 m = p_wmh + topfrp->fr_win->w_status_height; | |
3141 /* Current window is minimal one line high */ | |
3142 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL) | |
3143 ++m; | |
3144 } | |
3145 } | |
3146 #ifdef FEAT_VERTSPLIT | |
3147 else if (topfrp->fr_layout == FR_ROW) | |
3148 { | |
3149 /* get the minimal height from each frame in this row */ | |
3150 m = 0; | |
3151 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
3152 { | |
3153 n = frame_minheight(frp, next_curwin); | |
3154 if (n > m) | |
3155 m = n; | |
3156 } | |
3157 } | |
3158 #endif | |
3159 else | |
3160 { | |
3161 /* Add up the minimal heights for all frames in this column. */ | |
3162 m = 0; | |
3163 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
3164 m += frame_minheight(frp, next_curwin); | |
3165 } | |
3166 | |
3167 return m; | |
3168 } | |
3169 | |
3170 #ifdef FEAT_VERTSPLIT | |
3171 /* | |
3172 * Compute the minimal width for frame "topfrp". | |
3173 * When "next_curwin" isn't NULL, use p_wiw for this window. | |
3174 * When "next_curwin" is NOWIN, don't use at least one column for the current | |
3175 * window. | |
3176 */ | |
3177 static int | |
3178 frame_minwidth(topfrp, next_curwin) | |
3179 frame_T *topfrp; | |
3180 win_T *next_curwin; /* use p_wh and p_wiw for next_curwin */ | |
3181 { | |
3182 frame_T *frp; | |
3183 int m, n; | |
3184 | |
3185 if (topfrp->fr_win != NULL) | |
3186 { | |
3187 if (topfrp->fr_win == next_curwin) | |
3188 m = p_wiw + topfrp->fr_win->w_vsep_width; | |
3189 else | |
3190 { | |
3191 /* window: minimal width of the window plus separator column */ | |
3192 m = p_wmw + topfrp->fr_win->w_vsep_width; | |
3193 /* Current window is minimal one column wide */ | |
3194 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL) | |
3195 ++m; | |
3196 } | |
3197 } | |
3198 else if (topfrp->fr_layout == FR_COL) | |
3199 { | |
3200 /* get the minimal width from each frame in this column */ | |
3201 m = 0; | |
3202 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
3203 { | |
3204 n = frame_minwidth(frp, next_curwin); | |
3205 if (n > m) | |
3206 m = n; | |
3207 } | |
3208 } | |
3209 else | |
3210 { | |
3211 /* Add up the minimal widths for all frames in this row. */ | |
3212 m = 0; | |
3213 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
3214 m += frame_minwidth(frp, next_curwin); | |
3215 } | |
3216 | |
3217 return m; | |
3218 } | |
3219 #endif | |
3220 | |
3221 | |
3222 /* | |
3223 * Try to close all windows except current one. | |
3224 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is | |
3225 * used and the buffer was modified. | |
3226 * | |
3227 * Used by ":bdel" and ":only". | |
3228 */ | |
3229 void | |
3230 close_others(message, forceit) | |
3231 int message; | |
3232 int forceit; /* always hide all other windows */ | |
3233 { | |
3234 win_T *wp; | |
3235 win_T *nextwp; | |
3236 int r; | |
3237 | |
1906 | 3238 if (one_window()) |
7 | 3239 { |
3240 if (message | |
3241 #ifdef FEAT_AUTOCMD | |
3242 && !autocmd_busy | |
3243 #endif | |
3244 ) | |
826 | 3245 MSG(_(m_onlyone)); |
7 | 3246 return; |
3247 } | |
3248 | |
3249 /* Be very careful here: autocommands may change the window layout. */ | |
3250 for (wp = firstwin; win_valid(wp); wp = nextwp) | |
3251 { | |
3252 nextwp = wp->w_next; | |
3253 if (wp != curwin) /* don't close current window */ | |
3254 { | |
3255 | |
3256 /* Check if it's allowed to abandon this window */ | |
3257 r = can_abandon(wp->w_buffer, forceit); | |
3258 #ifdef FEAT_AUTOCMD | |
3259 if (!win_valid(wp)) /* autocommands messed wp up */ | |
3260 { | |
3261 nextwp = firstwin; | |
3262 continue; | |
3263 } | |
3264 #endif | |
3265 if (!r) | |
3266 { | |
3267 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3268 if (message && (p_confirm || cmdmod.confirm) && p_write) | |
3269 { | |
3270 dialog_changed(wp->w_buffer, FALSE); | |
3271 # ifdef FEAT_AUTOCMD | |
3272 if (!win_valid(wp)) /* autocommands messed wp up */ | |
3273 { | |
3274 nextwp = firstwin; | |
3275 continue; | |
3276 } | |
3277 # endif | |
3278 } | |
3279 if (bufIsChanged(wp->w_buffer)) | |
3280 #endif | |
3281 continue; | |
3282 } | |
3283 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer)); | |
3284 } | |
3285 } | |
3286 | |
667 | 3287 if (message && lastwin != firstwin) |
7 | 3288 EMSG(_("E445: Other window contains changes")); |
3289 } | |
3290 | |
3291 #endif /* FEAT_WINDOWS */ | |
3292 | |
3293 /* | |
675 | 3294 * Init the current window "curwin". |
3295 * Called when a new file is being edited. | |
7 | 3296 */ |
3297 void | |
675 | 3298 curwin_init() |
7 | 3299 { |
1918 | 3300 win_init_empty(curwin); |
3301 } | |
3302 | |
3303 void | |
3304 win_init_empty(wp) | |
3305 win_T *wp; | |
3306 { | |
3307 redraw_win_later(wp, NOT_VALID); | |
3308 wp->w_lines_valid = 0; | |
3309 wp->w_cursor.lnum = 1; | |
3310 wp->w_curswant = wp->w_cursor.col = 0; | |
7 | 3311 #ifdef FEAT_VIRTUALEDIT |
1918 | 3312 wp->w_cursor.coladd = 0; |
3313 #endif | |
3314 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */ | |
3315 wp->w_pcmark.col = 0; | |
3316 wp->w_prev_pcmark.lnum = 0; | |
3317 wp->w_prev_pcmark.col = 0; | |
3318 wp->w_topline = 1; | |
7 | 3319 #ifdef FEAT_DIFF |
1918 | 3320 wp->w_topfill = 0; |
3321 #endif | |
3322 wp->w_botline = 2; | |
7 | 3323 #ifdef FEAT_FKMAP |
1918 | 3324 if (wp->w_p_rl) |
3325 wp->w_farsi = W_CONV + W_R_L; | |
7 | 3326 else |
1918 | 3327 wp->w_farsi = W_CONV; |
7 | 3328 #endif |
3068 | 3329 #ifdef FEAT_SYN_HL |
3330 wp->w_s = &wp->w_buffer->b_s; | |
3331 #endif | |
7 | 3332 } |
3333 | |
3334 /* | |
3335 * Allocate the first window and put an empty buffer in it. | |
3336 * Called from main(). | |
667 | 3337 * Return FAIL when something goes wrong (out of memory). |
7 | 3338 */ |
667 | 3339 int |
7 | 3340 win_alloc_first() |
3341 { | |
675 | 3342 if (win_alloc_firstwin(NULL) == FAIL) |
667 | 3343 return FAIL; |
3344 | |
3345 #ifdef FEAT_WINDOWS | |
672 | 3346 first_tabpage = alloc_tabpage(); |
667 | 3347 if (first_tabpage == NULL) |
3348 return FAIL; | |
3349 first_tabpage->tp_topframe = topframe; | |
672 | 3350 curtab = first_tabpage; |
667 | 3351 #endif |
1906 | 3352 |
667 | 3353 return OK; |
3354 } | |
3355 | |
1906 | 3356 #if defined(FEAT_AUTOCMD) || defined(PROTO) |
3357 /* | |
3358 * Init "aucmd_win". This can only be done after the first | |
3359 * window is fully initialized, thus it can't be in win_alloc_first(). | |
3360 */ | |
3361 void | |
3362 win_alloc_aucmd_win() | |
3363 { | |
3364 aucmd_win = win_alloc(NULL, TRUE); | |
3365 if (aucmd_win != NULL) | |
3366 { | |
3367 win_init_some(aucmd_win, curwin); | |
2583 | 3368 RESET_BINDING(aucmd_win); |
1906 | 3369 new_frame(aucmd_win); |
3370 } | |
3371 } | |
3372 #endif | |
3373 | |
667 | 3374 /* |
675 | 3375 * Allocate the first window or the first window in a new tab page. |
3376 * When "oldwin" is NULL create an empty buffer for it. | |
3377 * When "oldwin" is not NULL copy info from it to the new window (only with | |
3378 * FEAT_WINDOWS). | |
667 | 3379 * Return FAIL when something goes wrong (out of memory). |
3380 */ | |
3381 static int | |
675 | 3382 win_alloc_firstwin(oldwin) |
3383 win_T *oldwin; | |
667 | 3384 { |
1906 | 3385 curwin = win_alloc(NULL, FALSE); |
675 | 3386 if (oldwin == NULL) |
3387 { | |
3388 /* Very first window, need to create an empty buffer for it and | |
3389 * initialize from scratch. */ | |
3390 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); | |
3391 if (curwin == NULL || curbuf == NULL) | |
3392 return FAIL; | |
3393 curwin->w_buffer = curbuf; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3394 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3395 curwin->w_s = &(curbuf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3396 #endif |
675 | 3397 curbuf->b_nwindows = 1; /* there is one window */ |
7 | 3398 #ifdef FEAT_WINDOWS |
675 | 3399 curwin->w_alist = &global_alist; |
3400 #endif | |
3401 curwin_init(); /* init current window */ | |
3402 } | |
3403 #ifdef FEAT_WINDOWS | |
3404 else | |
3405 { | |
3406 /* First window in new tab page, initialize it from "oldwin". */ | |
1822 | 3407 win_init(curwin, oldwin, 0); |
675 | 3408 |
2583 | 3409 /* We don't want cursor- and scroll-binding in the first window. */ |
3410 RESET_BINDING(curwin); | |
675 | 3411 } |
3412 #endif | |
7 | 3413 |
1906 | 3414 new_frame(curwin); |
3415 if (curwin->w_frame == NULL) | |
667 | 3416 return FAIL; |
1906 | 3417 topframe = curwin->w_frame; |
7 | 3418 #ifdef FEAT_VERTSPLIT |
3419 topframe->fr_width = Columns; | |
3420 #endif | |
3421 topframe->fr_height = Rows - p_ch; | |
3422 topframe->fr_win = curwin; | |
667 | 3423 |
3424 return OK; | |
3425 } | |
3426 | |
3427 /* | |
1906 | 3428 * Create a frame for window "wp". |
3429 */ | |
3430 static void | |
3431 new_frame(win_T *wp) | |
3432 { | |
3433 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T)); | |
3434 | |
3435 wp->w_frame = frp; | |
3436 if (frp != NULL) | |
3437 { | |
3438 frp->fr_layout = FR_LEAF; | |
3439 frp->fr_win = wp; | |
3440 } | |
3441 } | |
3442 | |
3443 /* | |
667 | 3444 * Initialize the window and frame size to the maximum. |
3445 */ | |
3446 void | |
3447 win_init_size() | |
3448 { | |
3449 firstwin->w_height = ROWS_AVAIL; | |
3450 topframe->fr_height = ROWS_AVAIL; | |
3451 #ifdef FEAT_VERTSPLIT | |
3452 firstwin->w_width = Columns; | |
3453 topframe->fr_width = Columns; | |
3454 #endif | |
7 | 3455 } |
3456 | |
3457 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
672 | 3458 |
3459 /* | |
3460 * Allocate a new tabpage_T and init the values. | |
3461 * Returns NULL when out of memory. | |
3462 */ | |
3463 static tabpage_T * | |
3464 alloc_tabpage() | |
3465 { | |
3466 tabpage_T *tp; | |
4287 | 3467 # ifdef FEAT_GUI |
3468 int i; | |
3469 # endif | |
3470 | |
672 | 3471 |
3472 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T)); | |
4287 | 3473 if (tp == NULL) |
3474 return NULL; | |
3475 | |
3476 # ifdef FEAT_EVAL | |
3477 /* init t: variables */ | |
3478 tp->tp_vars = dict_alloc(); | |
3479 if (tp->tp_vars == NULL) | |
3480 { | |
3481 vim_free(tp); | |
3482 return NULL; | |
3483 } | |
3484 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); | |
3485 # endif | |
3486 | |
788 | 3487 # ifdef FEAT_GUI |
4287 | 3488 for (i = 0; i < 3; i++) |
3489 tp->tp_prev_which_scrollbars[i] = -1; | |
788 | 3490 # endif |
672 | 3491 # ifdef FEAT_DIFF |
4287 | 3492 tp->tp_diff_invalid = TRUE; |
672 | 3493 # endif |
4287 | 3494 tp->tp_ch_used = p_ch; |
3495 | |
672 | 3496 return tp; |
3497 } | |
3498 | |
852 | 3499 void |
672 | 3500 free_tabpage(tp) |
3501 tabpage_T *tp; | |
3502 { | |
1906 | 3503 int idx; |
3504 | |
672 | 3505 # ifdef FEAT_DIFF |
3506 diff_clear(tp); | |
3507 # endif | |
1906 | 3508 for (idx = 0; idx < SNAP_COUNT; ++idx) |
3509 clear_snapshot(tp, idx); | |
819 | 3510 #ifdef FEAT_EVAL |
4287 | 3511 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */ |
3512 hash_init(&tp->tp_vars->dv_hashtab); | |
3513 unref_var_dict(tp->tp_vars); | |
819 | 3514 #endif |
4401 | 3515 |
3516 #ifdef FEAT_PYTHON | |
3517 python_tabpage_free(tp); | |
3518 #endif | |
3519 | |
3520 #ifdef FEAT_PYTHON3 | |
3521 python3_tabpage_free(tp); | |
3522 #endif | |
3523 | |
672 | 3524 vim_free(tp); |
3525 } | |
3526 | |
667 | 3527 /* |
675 | 3528 * Create a new Tab page with one window. |
3529 * It will edit the current buffer, like after ":split". | |
682 | 3530 * When "after" is 0 put it just after the current Tab page. |
3531 * Otherwise put it just before tab page "after". | |
667 | 3532 * Return FAIL or OK. |
3533 */ | |
3534 int | |
682 | 3535 win_new_tabpage(after) |
3536 int after; | |
667 | 3537 { |
672 | 3538 tabpage_T *tp = curtab; |
667 | 3539 tabpage_T *newtp; |
682 | 3540 int n; |
667 | 3541 |
672 | 3542 newtp = alloc_tabpage(); |
667 | 3543 if (newtp == NULL) |
3544 return FAIL; | |
3545 | |
3546 /* Remember the current windows in this Tab page. */ | |
4354 | 3547 if (leave_tabpage(curbuf, TRUE) == FAIL) |
674 | 3548 { |
3549 vim_free(newtp); | |
3550 return FAIL; | |
3551 } | |
672 | 3552 curtab = newtp; |
667 | 3553 |
3554 /* Create a new empty window. */ | |
675 | 3555 if (win_alloc_firstwin(tp->tp_curwin) == OK) |
667 | 3556 { |
3557 /* Make the new Tab page the new topframe. */ | |
682 | 3558 if (after == 1) |
3559 { | |
3560 /* New tab page becomes the first one. */ | |
3561 newtp->tp_next = first_tabpage; | |
3562 first_tabpage = newtp; | |
3563 } | |
3564 else | |
3565 { | |
3566 if (after > 0) | |
3567 { | |
3568 /* Put new tab page before tab page "after". */ | |
3569 n = 2; | |
3570 for (tp = first_tabpage; tp->tp_next != NULL | |
3571 && n < after; tp = tp->tp_next) | |
3572 ++n; | |
3573 } | |
3574 newtp->tp_next = tp->tp_next; | |
3575 tp->tp_next = newtp; | |
3576 } | |
667 | 3577 win_init_size(); |
685 | 3578 firstwin->w_winrow = tabline_height(); |
819 | 3579 win_comp_scroll(curwin); |
667 | 3580 |
3581 newtp->tp_topframe = topframe; | |
671 | 3582 last_status(FALSE); |
815 | 3583 |
3584 #if defined(FEAT_GUI) | |
3585 /* When 'guioptions' includes 'L' or 'R' may have to remove or add | |
3586 * scrollbars. Have to update them anyway. */ | |
1906 | 3587 gui_may_update_scrollbars(); |
815 | 3588 #endif |
3589 | |
667 | 3590 redraw_all_later(CLEAR); |
675 | 3591 #ifdef FEAT_AUTOCMD |
4354 | 3592 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
675 | 3593 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
3594 #endif | |
667 | 3595 return OK; |
3596 } | |
3597 | |
3598 /* Failed, get back the previous Tab page */ | |
4354 | 3599 enter_tabpage(curtab, curbuf, TRUE, TRUE); |
667 | 3600 return FAIL; |
3601 } | |
3602 | |
3603 /* | |
682 | 3604 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer, |
3605 * like with ":split". | |
3606 * Returns OK if a new tab page was created, FAIL otherwise. | |
3607 */ | |
3608 int | |
3609 may_open_tabpage() | |
3610 { | |
1090 | 3611 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab; |
3612 | |
3613 if (n != 0) | |
682 | 3614 { |
3615 cmdmod.tab = 0; /* reset it to avoid doing it twice */ | |
1090 | 3616 postponed_split_tab = 0; |
682 | 3617 return win_new_tabpage(n); |
3618 } | |
3619 return FAIL; | |
3620 } | |
3621 | |
3622 /* | |
672 | 3623 * Create up to "maxcount" tabpages with empty windows. |
3624 * Returns the number of resulting tab pages. | |
667 | 3625 */ |
672 | 3626 int |
3627 make_tabpages(maxcount) | |
3628 int maxcount; | |
667 | 3629 { |
672 | 3630 int count = maxcount; |
3631 int todo; | |
3632 | |
698 | 3633 /* Limit to 'tabpagemax' tabs. */ |
3634 if (count > p_tpm) | |
3635 count = p_tpm; | |
672 | 3636 |
3637 #ifdef FEAT_AUTOCMD | |
3638 /* | |
3639 * Don't execute autocommands while creating the tab pages. Must do that | |
3640 * when putting the buffers in the windows. | |
3641 */ | |
1410 | 3642 block_autocmds(); |
672 | 3643 #endif |
3644 | |
3645 for (todo = count - 1; todo > 0; --todo) | |
682 | 3646 if (win_new_tabpage(0) == FAIL) |
667 | 3647 break; |
672 | 3648 |
3649 #ifdef FEAT_AUTOCMD | |
1410 | 3650 unblock_autocmds(); |
672 | 3651 #endif |
3652 | |
3653 /* return actual number of tab pages */ | |
3654 return (count - todo); | |
667 | 3655 } |
3656 | |
3657 /* | |
671 | 3658 * Return TRUE when "tpc" points to a valid tab page. |
3659 */ | |
3660 int | |
3661 valid_tabpage(tpc) | |
3662 tabpage_T *tpc; | |
3663 { | |
3664 tabpage_T *tp; | |
3665 | |
3666 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next) | |
3667 if (tp == tpc) | |
3668 return TRUE; | |
3669 return FALSE; | |
3670 } | |
3671 | |
3672 /* | |
3673 * Find tab page "n" (first one is 1). Returns NULL when not found. | |
3674 */ | |
3675 tabpage_T * | |
3676 find_tabpage(n) | |
3677 int n; | |
3678 { | |
3679 tabpage_T *tp; | |
3680 int i = 1; | |
3681 | |
3682 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next) | |
3683 ++i; | |
3684 return tp; | |
3685 } | |
3686 | |
3687 /* | |
685 | 3688 * Get index of tab page "tp". First one has index 1. |
686 | 3689 * When not found returns number of tab pages plus one. |
685 | 3690 */ |
3691 int | |
3692 tabpage_index(ftp) | |
3693 tabpage_T *ftp; | |
3694 { | |
3695 int i = 1; | |
3696 tabpage_T *tp; | |
3697 | |
3698 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next) | |
3699 ++i; | |
3700 return i; | |
3701 } | |
3702 | |
3703 /* | |
674 | 3704 * Prepare for leaving the current tab page. |
4352 | 3705 * When autocommands change "curtab" we don't leave the tab page and return |
674 | 3706 * FAIL. |
3707 * Careful: When OK is returned need to get a new tab page very very soon! | |
667 | 3708 */ |
674 | 3709 static int |
4354 | 3710 leave_tabpage(new_curbuf, trigger_leave_autocmds) |
1887 | 3711 buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf, |
674 | 3712 NULL if unknown */ |
4354 | 3713 int trigger_leave_autocmds UNUSED; |
667 | 3714 { |
674 | 3715 tabpage_T *tp = curtab; |
3716 | |
819 | 3717 #ifdef FEAT_VISUAL |
3718 reset_VIsual_and_resel(); /* stop Visual mode */ | |
3719 #endif | |
674 | 3720 #ifdef FEAT_AUTOCMD |
4354 | 3721 if (trigger_leave_autocmds) |
3722 { | |
3723 if (new_curbuf != curbuf) | |
3724 { | |
3725 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
3726 if (curtab != tp) | |
3727 return FAIL; | |
3728 } | |
3729 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
674 | 3730 if (curtab != tp) |
3731 return FAIL; | |
4354 | 3732 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); |
3733 if (curtab != tp) | |
3734 return FAIL; | |
3735 } | |
674 | 3736 #endif |
668 | 3737 #if defined(FEAT_GUI) |
3738 /* Remove the scrollbars. They may be added back later. */ | |
3739 if (gui.in_use) | |
3740 gui_remove_scrollbars(); | |
3741 #endif | |
667 | 3742 tp->tp_curwin = curwin; |
671 | 3743 tp->tp_prevwin = prevwin; |
667 | 3744 tp->tp_firstwin = firstwin; |
3745 tp->tp_lastwin = lastwin; | |
668 | 3746 tp->tp_old_Rows = Rows; |
3747 tp->tp_old_Columns = Columns; | |
667 | 3748 firstwin = NULL; |
3749 lastwin = NULL; | |
674 | 3750 return OK; |
667 | 3751 } |
3752 | |
3753 /* | |
3754 * Start using tab page "tp". | |
675 | 3755 * Only to be used after leave_tabpage() or freeing the current tab page. |
4354 | 3756 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
3757 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
667 | 3758 */ |
3759 static void | |
4354 | 3760 enter_tabpage(tp, old_curbuf, trigger_enter_autocmds, trigger_leave_autocmds) |
667 | 3761 tabpage_T *tp; |
1887 | 3762 buf_T *old_curbuf UNUSED; |
4354 | 3763 int trigger_enter_autocmds UNUSED; |
3764 int trigger_leave_autocmds UNUSED; | |
667 | 3765 { |
668 | 3766 int old_off = tp->tp_firstwin->w_winrow; |
870 | 3767 win_T *next_prevwin = tp->tp_prevwin; |
668 | 3768 |
672 | 3769 curtab = tp; |
667 | 3770 firstwin = tp->tp_firstwin; |
3771 lastwin = tp->tp_lastwin; | |
3772 topframe = tp->tp_topframe; | |
870 | 3773 |
3774 /* We would like doing the TabEnter event first, but we don't have a | |
3775 * valid current window yet, which may break some commands. | |
3776 * This triggers autocommands, thus may make "tp" invalid. */ | |
4354 | 3777 win_enter_ext(tp->tp_curwin, FALSE, TRUE, trigger_enter_autocmds, trigger_leave_autocmds); |
870 | 3778 prevwin = next_prevwin; |
3779 | |
668 | 3780 last_status(FALSE); /* status line may appear or disappear */ |
3781 (void)win_comp_pos(); /* recompute w_winrow for all windows */ | |
672 | 3782 must_redraw = CLEAR; /* need to redraw everything */ |
3783 #ifdef FEAT_DIFF | |
3784 diff_need_scrollbind = TRUE; | |
3785 #endif | |
668 | 3786 |
3787 /* The tabpage line may have appeared or disappeared, may need to resize | |
3788 * the frames for that. When the Vim window was resized need to update | |
824 | 3789 * frame sizes too. Use the stored value of p_ch, so that it can be |
3790 * different for each tab page. */ | |
3791 p_ch = curtab->tp_ch_used; | |
685 | 3792 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow |
3793 #ifdef FEAT_GUI_TABLINE | |
3794 && !gui_use_tabline() | |
3795 #endif | |
3796 )) | |
668 | 3797 shell_new_rows(); |
3798 #ifdef FEAT_VERTSPLIT | |
674 | 3799 if (curtab->tp_old_Columns != Columns && starting == 0) |
668 | 3800 shell_new_columns(); /* update window widths */ |
3801 #endif | |
3802 | |
3803 #if defined(FEAT_GUI) | |
3804 /* When 'guioptions' includes 'L' or 'R' may have to remove or add | |
3805 * scrollbars. Have to update them anyway. */ | |
1906 | 3806 gui_may_update_scrollbars(); |
667 | 3807 #endif |
3808 | |
3413 | 3809 #ifdef FEAT_AUTOCMD |
3810 /* Apply autocommands after updating the display, when 'rows' and | |
3811 * 'columns' have been set correctly. */ | |
4354 | 3812 if (trigger_enter_autocmds) |
3582 | 3813 { |
3814 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); | |
3815 if (old_curbuf != curbuf) | |
3816 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3817 } | |
3413 | 3818 #endif |
3819 | |
667 | 3820 redraw_all_later(CLEAR); |
3821 } | |
3822 | |
3823 /* | |
3824 * Go to tab page "n". For ":tab N" and "Ngt". | |
685 | 3825 * When "n" is 9999 go to the last tab page. |
667 | 3826 */ |
3827 void | |
3828 goto_tabpage(n) | |
3829 int n; | |
3830 { | |
3831 tabpage_T *tp; | |
682 | 3832 tabpage_T *ttp; |
667 | 3833 int i; |
3834 | |
857 | 3835 if (text_locked()) |
3836 { | |
3837 /* Not allowed when editing the command line. */ | |
3838 #ifdef FEAT_CMDWIN | |
3839 if (cmdwin_type != 0) | |
3840 EMSG(_(e_cmdwin)); | |
3841 else | |
3842 #endif | |
3843 EMSG(_(e_secure)); | |
3844 return; | |
3845 } | |
3846 | |
675 | 3847 /* If there is only one it can't work. */ |
3848 if (first_tabpage->tp_next == NULL) | |
3849 { | |
3850 if (n > 1) | |
3851 beep_flush(); | |
3852 return; | |
3853 } | |
3854 | |
667 | 3855 if (n == 0) |
3856 { | |
3857 /* No count, go to next tab page, wrap around end. */ | |
674 | 3858 if (curtab->tp_next == NULL) |
667 | 3859 tp = first_tabpage; |
3860 else | |
674 | 3861 tp = curtab->tp_next; |
667 | 3862 } |
682 | 3863 else if (n < 0) |
3864 { | |
3865 /* "gT": go to previous tab page, wrap around end. "N gT" repeats | |
3866 * this N times. */ | |
3867 ttp = curtab; | |
3868 for (i = n; i < 0; ++i) | |
3869 { | |
3870 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL; | |
3871 tp = tp->tp_next) | |
3872 ; | |
3873 ttp = tp; | |
3874 } | |
3875 } | |
685 | 3876 else if (n == 9999) |
3877 { | |
3878 /* Go to last tab page. */ | |
3879 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next) | |
3880 ; | |
3881 } | |
667 | 3882 else |
3883 { | |
3884 /* Go to tab page "n". */ | |
685 | 3885 tp = find_tabpage(n); |
671 | 3886 if (tp == NULL) |
3887 { | |
3888 beep_flush(); | |
3889 return; | |
3890 } | |
667 | 3891 } |
3892 | |
4354 | 3893 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 3894 |
3895 #ifdef FEAT_GUI_TABLINE | |
3896 if (gui_use_tabline()) | |
690 | 3897 gui_mch_set_curtab(tabpage_index(curtab)); |
685 | 3898 #endif |
3899 } | |
3900 | |
3901 /* | |
3902 * Go to tabpage "tp". | |
4354 | 3903 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
3904 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
685 | 3905 * Note: doesn't update the GUI tab. |
3906 */ | |
3907 void | |
4354 | 3908 goto_tabpage_tp(tp, trigger_enter_autocmds, trigger_leave_autocmds) |
685 | 3909 tabpage_T *tp; |
4354 | 3910 int trigger_enter_autocmds; |
3911 int trigger_leave_autocmds; | |
685 | 3912 { |
2201
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
3913 /* Don't repeat a message in another tab page. */ |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
3914 set_keep_msg(NULL, 0); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
3915 |
4354 | 3916 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer, |
3917 trigger_leave_autocmds) == OK) | |
674 | 3918 { |
3919 if (valid_tabpage(tp)) | |
4354 | 3920 enter_tabpage(tp, curbuf, trigger_enter_autocmds, |
3921 trigger_leave_autocmds); | |
674 | 3922 else |
4354 | 3923 enter_tabpage(curtab, curbuf, trigger_enter_autocmds, |
3924 trigger_leave_autocmds); | |
674 | 3925 } |
667 | 3926 } |
7 | 3927 |
3928 /* | |
825 | 3929 * Enter window "wp" in tab page "tp". |
3930 * Also updates the GUI tab. | |
3931 */ | |
3932 void | |
3933 goto_tabpage_win(tp, wp) | |
3934 tabpage_T *tp; | |
3935 win_T *wp; | |
3936 { | |
4354 | 3937 goto_tabpage_tp(tp, TRUE, TRUE); |
825 | 3938 if (curtab == tp && win_valid(wp)) |
3939 { | |
3940 win_enter(wp, TRUE); | |
3941 # ifdef FEAT_GUI_TABLINE | |
3942 if (gui_use_tabline()) | |
3943 gui_mch_set_curtab(tabpage_index(curtab)); | |
3944 # endif | |
3945 } | |
3946 } | |
3947 | |
3948 /* | |
682 | 3949 * Move the current tab page to before tab page "nr". |
3950 */ | |
3951 void | |
3952 tabpage_move(nr) | |
3953 int nr; | |
3954 { | |
3955 int n = nr; | |
3956 tabpage_T *tp; | |
3957 | |
3958 if (first_tabpage->tp_next == NULL) | |
3959 return; | |
3960 | |
3961 /* Remove the current tab page from the list of tab pages. */ | |
3962 if (curtab == first_tabpage) | |
3963 first_tabpage = curtab->tp_next; | |
3964 else | |
3965 { | |
3966 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next) | |
3967 if (tp->tp_next == curtab) | |
3968 break; | |
3969 if (tp == NULL) /* "cannot happen" */ | |
3970 return; | |
3971 tp->tp_next = curtab->tp_next; | |
3972 } | |
3973 | |
3974 /* Re-insert it at the specified position. */ | |
3662 | 3975 if (n <= 0) |
682 | 3976 { |
3977 curtab->tp_next = first_tabpage; | |
3978 first_tabpage = curtab; | |
3979 } | |
3980 else | |
3981 { | |
3982 for (tp = first_tabpage; tp->tp_next != NULL && n > 1; tp = tp->tp_next) | |
3983 --n; | |
3984 curtab->tp_next = tp->tp_next; | |
3985 tp->tp_next = curtab; | |
3986 } | |
3987 | |
3988 /* Need to redraw the tabline. Tab page contents doesn't change. */ | |
3989 redraw_tabline = TRUE; | |
3990 } | |
3991 | |
3992 | |
3993 /* | |
7 | 3994 * Go to another window. |
3995 * When jumping to another buffer, stop Visual mode. Do this before | |
3996 * changing windows so we can yank the selection into the '*' register. | |
3997 * When jumping to another window on the same buffer, adjust its cursor | |
3998 * position to keep the same Visual area. | |
3999 */ | |
4000 void | |
4001 win_goto(wp) | |
4002 win_T *wp; | |
4003 { | |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4004 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4005 win_T *owp = curwin; |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4006 #endif |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4007 |
633 | 4008 if (text_locked()) |
7 | 4009 { |
4010 beep_flush(); | |
633 | 4011 text_locked_msg(); |
7 | 4012 return; |
4013 } | |
819 | 4014 #ifdef FEAT_AUTOCMD |
4015 if (curbuf_locked()) | |
4016 return; | |
4017 #endif | |
631 | 4018 |
7 | 4019 #ifdef FEAT_VISUAL |
4020 if (wp->w_buffer != curbuf) | |
4021 reset_VIsual_and_resel(); | |
4022 else if (VIsual_active) | |
4023 wp->w_cursor = curwin->w_cursor; | |
4024 #endif | |
4025 | |
4026 #ifdef FEAT_GUI | |
4027 need_mouse_correct = TRUE; | |
4028 #endif | |
4029 win_enter(wp, TRUE); | |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4030 |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4031 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4032 /* Conceal cursor line in previous window, unconceal in current window. */ |
4094 | 4033 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled) |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4034 update_single_line(owp, owp->w_cursor.lnum); |
4094 | 4035 if (curwin->w_p_cole > 0 && !msg_scrolled) |
4036 need_cursor_line_redraw = TRUE; | |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4037 #endif |
7 | 4038 } |
4039 | |
4040 #if defined(FEAT_PERL) || defined(PROTO) | |
4041 /* | |
4042 * Find window number "winnr" (counting top to bottom). | |
4043 */ | |
4044 win_T * | |
4045 win_find_nr(winnr) | |
4046 int winnr; | |
4047 { | |
4048 win_T *wp; | |
4049 | |
4050 # ifdef FEAT_WINDOWS | |
4051 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
4052 if (--winnr == 0) | |
4053 break; | |
4054 return wp; | |
4055 # else | |
4056 return curwin; | |
4057 # endif | |
4058 } | |
4059 #endif | |
4060 | |
4442 | 4061 #if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \ |
4062 || defined(PROTO) | |
4429 | 4063 /* |
4064 * Find the tabpage for window "win". | |
4065 */ | |
4066 tabpage_T * | |
4067 win_find_tabpage(win) | |
4068 win_T *win; | |
4069 { | |
4070 win_T *wp; | |
4071 tabpage_T *tp; | |
4072 | |
4073 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next) | |
4074 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next) | |
4075 if (wp == win) | |
4076 return tp; | |
4077 return NULL; | |
4078 } | |
4079 #endif | |
4080 | |
7 | 4081 #ifdef FEAT_VERTSPLIT |
4082 /* | |
4083 * Move to window above or below "count" times. | |
4084 */ | |
4085 static void | |
4086 win_goto_ver(up, count) | |
4087 int up; /* TRUE to go to win above */ | |
4088 long count; | |
4089 { | |
4090 frame_T *fr; | |
4091 frame_T *nfr; | |
4092 frame_T *foundfr; | |
4093 | |
4094 foundfr = curwin->w_frame; | |
4095 while (count--) | |
4096 { | |
4097 /* | |
4098 * First go upwards in the tree of frames until we find a upwards or | |
4099 * downwards neighbor. | |
4100 */ | |
4101 fr = foundfr; | |
4102 for (;;) | |
4103 { | |
4104 if (fr == topframe) | |
4105 goto end; | |
4106 if (up) | |
4107 nfr = fr->fr_prev; | |
4108 else | |
4109 nfr = fr->fr_next; | |
4110 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL) | |
4111 break; | |
4112 fr = fr->fr_parent; | |
4113 } | |
4114 | |
4115 /* | |
4116 * Now go downwards to find the bottom or top frame in it. | |
4117 */ | |
4118 for (;;) | |
4119 { | |
4120 if (nfr->fr_layout == FR_LEAF) | |
4121 { | |
4122 foundfr = nfr; | |
4123 break; | |
4124 } | |
4125 fr = nfr->fr_child; | |
4126 if (nfr->fr_layout == FR_ROW) | |
4127 { | |
4128 /* Find the frame at the cursor row. */ | |
4129 while (fr->fr_next != NULL | |
4130 && frame2win(fr)->w_wincol + fr->fr_width | |
4131 <= curwin->w_wincol + curwin->w_wcol) | |
4132 fr = fr->fr_next; | |
4133 } | |
4134 if (nfr->fr_layout == FR_COL && up) | |
4135 while (fr->fr_next != NULL) | |
4136 fr = fr->fr_next; | |
4137 nfr = fr; | |
4138 } | |
4139 } | |
4140 end: | |
4141 if (foundfr != NULL) | |
4142 win_goto(foundfr->fr_win); | |
4143 } | |
4144 | |
4145 /* | |
4146 * Move to left or right window. | |
4147 */ | |
4148 static void | |
4149 win_goto_hor(left, count) | |
4150 int left; /* TRUE to go to left win */ | |
4151 long count; | |
4152 { | |
4153 frame_T *fr; | |
4154 frame_T *nfr; | |
4155 frame_T *foundfr; | |
4156 | |
4157 foundfr = curwin->w_frame; | |
4158 while (count--) | |
4159 { | |
4160 /* | |
4161 * First go upwards in the tree of frames until we find a left or | |
4162 * right neighbor. | |
4163 */ | |
4164 fr = foundfr; | |
4165 for (;;) | |
4166 { | |
4167 if (fr == topframe) | |
4168 goto end; | |
4169 if (left) | |
4170 nfr = fr->fr_prev; | |
4171 else | |
4172 nfr = fr->fr_next; | |
4173 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL) | |
4174 break; | |
4175 fr = fr->fr_parent; | |
4176 } | |
4177 | |
4178 /* | |
4179 * Now go downwards to find the leftmost or rightmost frame in it. | |
4180 */ | |
4181 for (;;) | |
4182 { | |
4183 if (nfr->fr_layout == FR_LEAF) | |
4184 { | |
4185 foundfr = nfr; | |
4186 break; | |
4187 } | |
4188 fr = nfr->fr_child; | |
4189 if (nfr->fr_layout == FR_COL) | |
4190 { | |
4191 /* Find the frame at the cursor row. */ | |
4192 while (fr->fr_next != NULL | |
4193 && frame2win(fr)->w_winrow + fr->fr_height | |
4194 <= curwin->w_winrow + curwin->w_wrow) | |
4195 fr = fr->fr_next; | |
4196 } | |
4197 if (nfr->fr_layout == FR_ROW && left) | |
4198 while (fr->fr_next != NULL) | |
4199 fr = fr->fr_next; | |
4200 nfr = fr; | |
4201 } | |
4202 } | |
4203 end: | |
4204 if (foundfr != NULL) | |
4205 win_goto(foundfr->fr_win); | |
4206 } | |
4207 #endif | |
4208 | |
4209 /* | |
4210 * Make window "wp" the current window. | |
4211 */ | |
4212 void | |
4213 win_enter(wp, undo_sync) | |
4214 win_T *wp; | |
4215 int undo_sync; | |
4216 { | |
4354 | 4217 win_enter_ext(wp, undo_sync, FALSE, TRUE, TRUE); |
7 | 4218 } |
4219 | |
4220 /* | |
4221 * Make window wp the current window. | |
4222 * Can be called with "curwin_invalid" TRUE, which means that curwin has just | |
4223 * been closed and isn't valid. | |
4224 */ | |
4225 static void | |
4354 | 4226 win_enter_ext(wp, undo_sync, curwin_invalid, trigger_enter_autocmds, trigger_leave_autocmds) |
7 | 4227 win_T *wp; |
4228 int undo_sync; | |
4229 int curwin_invalid; | |
4354 | 4230 int trigger_enter_autocmds UNUSED; |
4231 int trigger_leave_autocmds UNUSED; | |
7 | 4232 { |
4233 #ifdef FEAT_AUTOCMD | |
4234 int other_buffer = FALSE; | |
4235 #endif | |
4236 | |
4237 if (wp == curwin && !curwin_invalid) /* nothing to do */ | |
4238 return; | |
4239 | |
4240 #ifdef FEAT_AUTOCMD | |
4354 | 4241 if (!curwin_invalid && trigger_leave_autocmds) |
7 | 4242 { |
4243 /* | |
4244 * Be careful: If autocommands delete the window, return now. | |
4245 */ | |
4246 if (wp->w_buffer != curbuf) | |
4247 { | |
4248 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4249 other_buffer = TRUE; | |
4250 if (!win_valid(wp)) | |
4251 return; | |
4252 } | |
4253 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
4254 if (!win_valid(wp)) | |
4255 return; | |
4256 # ifdef FEAT_EVAL | |
4257 /* autocmds may abort script processing */ | |
4258 if (aborting()) | |
4259 return; | |
4260 # endif | |
4261 } | |
4262 #endif | |
4263 | |
4264 /* sync undo before leaving the current buffer */ | |
4265 if (undo_sync && curbuf != wp->w_buffer) | |
825 | 4266 u_sync(FALSE); |
7 | 4267 /* may have to copy the buffer options when 'cpo' contains 'S' */ |
4268 if (wp->w_buffer != curbuf) | |
4269 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP); | |
4270 if (!curwin_invalid) | |
4271 { | |
4272 prevwin = curwin; /* remember for CTRL-W p */ | |
4273 curwin->w_redr_status = TRUE; | |
4274 } | |
4275 curwin = wp; | |
4276 curbuf = wp->w_buffer; | |
4277 check_cursor(); | |
4278 #ifdef FEAT_VIRTUALEDIT | |
4279 if (!virtual_active()) | |
4280 curwin->w_cursor.coladd = 0; | |
4281 #endif | |
4282 changed_line_abv_curs(); /* assume cursor position needs updating */ | |
4283 | |
4284 if (curwin->w_localdir != NULL) | |
4285 { | |
4286 /* Window has a local directory: Save current directory as global | |
4287 * directory (unless that was done already) and change to the local | |
4288 * directory. */ | |
4289 if (globaldir == NULL) | |
4290 { | |
4291 char_u cwd[MAXPATHL]; | |
4292 | |
4293 if (mch_dirname(cwd, MAXPATHL) == OK) | |
4294 globaldir = vim_strsave(cwd); | |
4295 } | |
1757 | 4296 if (mch_chdir((char *)curwin->w_localdir) == 0) |
4297 shorten_fnames(TRUE); | |
7 | 4298 } |
4299 else if (globaldir != NULL) | |
4300 { | |
4301 /* Window doesn't have a local directory and we are not in the global | |
4302 * directory: Change to the global directory. */ | |
1757 | 4303 ignored = mch_chdir((char *)globaldir); |
7 | 4304 vim_free(globaldir); |
4305 globaldir = NULL; | |
4306 shorten_fnames(TRUE); | |
4307 } | |
4308 | |
4309 #ifdef FEAT_AUTOCMD | |
4354 | 4310 if (trigger_enter_autocmds) |
4311 { | |
4312 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); | |
4313 if (other_buffer) | |
4314 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4315 } | |
7 | 4316 #endif |
4317 | |
4318 #ifdef FEAT_TITLE | |
4319 maketitle(); | |
4320 #endif | |
4321 curwin->w_redr_status = TRUE; | |
672 | 4322 redraw_tabline = TRUE; |
7 | 4323 if (restart_edit) |
4324 redraw_later(VALID); /* causes status line redraw */ | |
4325 | |
4326 /* set window height to desired minimal value */ | |
4327 if (curwin->w_height < p_wh && !curwin->w_p_wfh) | |
4328 win_setheight((int)p_wh); | |
4329 else if (curwin->w_height == 0) | |
4330 win_setheight(1); | |
4331 | |
4332 #ifdef FEAT_VERTSPLIT | |
4333 /* set window width to desired minimal value */ | |
779 | 4334 if (curwin->w_width < p_wiw && !curwin->w_p_wfw) |
7 | 4335 win_setwidth((int)p_wiw); |
4336 #endif | |
4337 | |
4338 #ifdef FEAT_MOUSE | |
4339 setmouse(); /* in case jumped to/from help buffer */ | |
4340 #endif | |
4341 | |
961 | 4342 /* Change directories when the 'acd' option is set. */ |
4343 DO_AUTOCHDIR | |
7 | 4344 } |
4345 | |
4346 #endif /* FEAT_WINDOWS */ | |
4347 | |
4348 #if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO) | |
4349 /* | |
825 | 4350 * Jump to the first open window that contains buffer "buf", if one exists. |
4351 * Returns a pointer to the window found, otherwise NULL. | |
7 | 4352 */ |
4353 win_T * | |
4354 buf_jump_open_win(buf) | |
4355 buf_T *buf; | |
4356 { | |
4357 # ifdef FEAT_WINDOWS | |
4358 win_T *wp; | |
4359 | |
825 | 4360 for (wp = firstwin; wp != NULL; wp = wp->w_next) |
7 | 4361 if (wp->w_buffer == buf) |
4362 break; | |
4363 if (wp != NULL) | |
4364 win_enter(wp, FALSE); | |
4365 return wp; | |
4366 # else | |
4367 if (curwin->w_buffer == buf) | |
4368 return curwin; | |
4369 return NULL; | |
4370 # endif | |
4371 } | |
825 | 4372 |
4373 /* | |
4374 * Jump to the first open window in any tab page that contains buffer "buf", | |
4375 * if one exists. | |
4376 * Returns a pointer to the window found, otherwise NULL. | |
4377 */ | |
4378 win_T * | |
4379 buf_jump_open_tab(buf) | |
4380 buf_T *buf; | |
4381 { | |
4382 # ifdef FEAT_WINDOWS | |
4383 win_T *wp; | |
4384 tabpage_T *tp; | |
4385 | |
4386 /* First try the current tab page. */ | |
4387 wp = buf_jump_open_win(buf); | |
4388 if (wp != NULL) | |
4389 return wp; | |
4390 | |
4391 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next) | |
4392 if (tp != curtab) | |
4393 { | |
4394 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next) | |
4395 if (wp->w_buffer == buf) | |
4396 break; | |
4397 if (wp != NULL) | |
4398 { | |
4399 goto_tabpage_win(tp, wp); | |
4400 if (curwin != wp) | |
4401 wp = NULL; /* something went wrong */ | |
4402 break; | |
4403 } | |
4404 } | |
4405 | |
4406 return wp; | |
4407 # else | |
4408 if (curwin->w_buffer == buf) | |
4409 return curwin; | |
4410 return NULL; | |
4411 # endif | |
4412 } | |
7 | 4413 #endif |
4414 | |
4415 /* | |
1906 | 4416 * Allocate a window structure and link it in the window list when "hidden" is |
4417 * FALSE. | |
7 | 4418 */ |
4419 static win_T * | |
1906 | 4420 win_alloc(after, hidden) |
1887 | 4421 win_T *after UNUSED; |
1906 | 4422 int hidden UNUSED; |
7 | 4423 { |
3263 | 4424 win_T *new_wp; |
7 | 4425 |
4426 /* | |
4427 * allocate window structure and linesizes arrays | |
4428 */ | |
3263 | 4429 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T)); |
4287 | 4430 if (new_wp == NULL) |
4431 return NULL; | |
4432 | |
4433 if (win_alloc_lines(new_wp) == FAIL) | |
3263 | 4434 { |
4435 vim_free(new_wp); | |
4287 | 4436 return NULL; |
4437 } | |
4438 | |
4439 #ifdef FEAT_EVAL | |
4440 /* init w: variables */ | |
4441 new_wp->w_vars = dict_alloc(); | |
4442 if (new_wp->w_vars == NULL) | |
4443 { | |
4444 win_free_lsize(new_wp); | |
4445 vim_free(new_wp); | |
4446 return NULL; | |
4447 } | |
4448 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE); | |
4449 #endif | |
4450 | |
1114 | 4451 #ifdef FEAT_AUTOCMD |
4287 | 4452 /* Don't execute autocommands while the window is not properly |
4453 * initialized yet. gui_create_scrollbar() may trigger a FocusGained | |
4454 * event. */ | |
4455 block_autocmds(); | |
4456 #endif | |
4457 /* | |
4458 * link the window in the window list | |
4459 */ | |
7 | 4460 #ifdef FEAT_WINDOWS |
4287 | 4461 if (!hidden) |
4462 win_append(after, new_wp); | |
7 | 4463 #endif |
4464 #ifdef FEAT_VERTSPLIT | |
4287 | 4465 new_wp->w_wincol = 0; |
4466 new_wp->w_width = Columns; | |
4467 #endif | |
4468 | |
4469 /* position the display and the cursor at the top of the file. */ | |
4470 new_wp->w_topline = 1; | |
7 | 4471 #ifdef FEAT_DIFF |
4287 | 4472 new_wp->w_topfill = 0; |
4473 #endif | |
4474 new_wp->w_botline = 2; | |
4475 new_wp->w_cursor.lnum = 1; | |
7 | 4476 #ifdef FEAT_SCROLLBIND |
4287 | 4477 new_wp->w_scbind_pos = 1; |
4478 #endif | |
4479 | |
4480 /* We won't calculate w_fraction until resizing the window */ | |
4481 new_wp->w_fraction = 0; | |
4482 new_wp->w_prev_fraction_row = -1; | |
7 | 4483 |
4484 #ifdef FEAT_GUI | |
4287 | 4485 if (gui.in_use) |
4486 { | |
4487 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT], | |
4488 SBAR_LEFT, new_wp); | |
4489 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT], | |
4490 SBAR_RIGHT, new_wp); | |
4491 } | |
7 | 4492 #endif |
4493 #ifdef FEAT_FOLDING | |
4287 | 4494 foldInitWin(new_wp); |
7 | 4495 #endif |
1114 | 4496 #ifdef FEAT_AUTOCMD |
4287 | 4497 unblock_autocmds(); |
1114 | 4498 #endif |
1326 | 4499 #ifdef FEAT_SEARCH_EXTRA |
4287 | 4500 new_wp->w_match_head = NULL; |
4501 new_wp->w_next_match_id = 4; | |
4502 #endif | |
3263 | 4503 return new_wp; |
7 | 4504 } |
4505 | |
4506 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
4507 | |
4508 /* | |
4509 * remove window 'wp' from the window list and free the structure | |
4510 */ | |
4511 static void | |
671 | 4512 win_free(wp, tp) |
7 | 4513 win_T *wp; |
671 | 4514 tabpage_T *tp; /* tab page "win" is in, NULL for current */ |
7 | 4515 { |
4516 int i; | |
4517 | |
1918 | 4518 #ifdef FEAT_FOLDING |
4519 clearFolding(wp); | |
4520 #endif | |
4521 | |
4522 /* reduce the reference count to the argument list. */ | |
4523 alist_unlink(wp->w_alist); | |
4524 | |
1114 | 4525 #ifdef FEAT_AUTOCMD |
4526 /* Don't execute autocommands while the window is halfway being deleted. | |
4527 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */ | |
1410 | 4528 block_autocmds(); |
1114 | 4529 #endif |
4530 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4531 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4532 lua_window_free(wp); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4533 #endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4534 |
14 | 4535 #ifdef FEAT_MZSCHEME |
4536 mzscheme_window_free(wp); | |
4537 #endif | |
4538 | |
7 | 4539 #ifdef FEAT_PERL |
4540 perl_win_free(wp); | |
4541 #endif | |
4542 | |
4543 #ifdef FEAT_PYTHON | |
4544 python_window_free(wp); | |
4545 #endif | |
4546 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4547 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4548 python3_window_free(wp); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4549 #endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4550 |
7 | 4551 #ifdef FEAT_TCL |
4552 tcl_window_free(wp); | |
4553 #endif | |
4554 | |
4555 #ifdef FEAT_RUBY | |
4556 ruby_window_free(wp); | |
4557 #endif | |
4558 | |
4559 clear_winopt(&wp->w_onebuf_opt); | |
4560 clear_winopt(&wp->w_allbuf_opt); | |
4561 | |
4562 #ifdef FEAT_EVAL | |
4287 | 4563 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */ |
4564 hash_init(&wp->w_vars->dv_hashtab); | |
4565 unref_var_dict(wp->w_vars); | |
7 | 4566 #endif |
4567 | |
4568 if (prevwin == wp) | |
4569 prevwin = NULL; | |
4570 win_free_lsize(wp); | |
4571 | |
4572 for (i = 0; i < wp->w_tagstacklen; ++i) | |
4573 vim_free(wp->w_tagstack[i].tagname); | |
4574 | |
4575 vim_free(wp->w_localdir); | |
1326 | 4576 |
7 | 4577 #ifdef FEAT_SEARCH_EXTRA |
1326 | 4578 clear_matches(wp); |
4579 #endif | |
4580 | |
7 | 4581 #ifdef FEAT_JUMPLIST |
4582 free_jumplist(wp); | |
4583 #endif | |
4584 | |
643 | 4585 #ifdef FEAT_QUICKFIX |
4586 qf_free_all(wp); | |
4587 #endif | |
4588 | |
7 | 4589 #ifdef FEAT_GUI |
4590 if (gui.in_use) | |
4591 { | |
4592 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]); | |
4593 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]); | |
4594 } | |
4595 #endif /* FEAT_GUI */ | |
4596 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
4597 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
4598 vim_free(wp->w_p_cc_cols); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
4599 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
4600 |
1918 | 4601 #ifdef FEAT_AUTOCMD |
4602 if (wp != aucmd_win) | |
4603 #endif | |
4604 win_remove(wp, tp); | |
7 | 4605 vim_free(wp); |
1114 | 4606 |
4607 #ifdef FEAT_AUTOCMD | |
1410 | 4608 unblock_autocmds(); |
1114 | 4609 #endif |
7 | 4610 } |
4611 | |
4612 /* | |
4613 * Append window "wp" in the window list after window "after". | |
4614 */ | |
1906 | 4615 void |
7 | 4616 win_append(after, wp) |
4617 win_T *after, *wp; | |
4618 { | |
4619 win_T *before; | |
4620 | |
4621 if (after == NULL) /* after NULL is in front of the first */ | |
4622 before = firstwin; | |
4623 else | |
4624 before = after->w_next; | |
4625 | |
4626 wp->w_next = before; | |
4627 wp->w_prev = after; | |
4628 if (after == NULL) | |
4629 firstwin = wp; | |
4630 else | |
4631 after->w_next = wp; | |
4632 if (before == NULL) | |
4633 lastwin = wp; | |
4634 else | |
4635 before->w_prev = wp; | |
4636 } | |
4637 | |
4638 /* | |
4639 * Remove a window from the window list. | |
4640 */ | |
1906 | 4641 void |
671 | 4642 win_remove(wp, tp) |
7 | 4643 win_T *wp; |
671 | 4644 tabpage_T *tp; /* tab page "win" is in, NULL for current */ |
7 | 4645 { |
4646 if (wp->w_prev != NULL) | |
4647 wp->w_prev->w_next = wp->w_next; | |
671 | 4648 else if (tp == NULL) |
4649 firstwin = wp->w_next; | |
7 | 4650 else |
671 | 4651 tp->tp_firstwin = wp->w_next; |
7 | 4652 if (wp->w_next != NULL) |
4653 wp->w_next->w_prev = wp->w_prev; | |
671 | 4654 else if (tp == NULL) |
4655 lastwin = wp->w_prev; | |
7 | 4656 else |
671 | 4657 tp->tp_lastwin = wp->w_prev; |
7 | 4658 } |
4659 | |
4660 /* | |
4661 * Append frame "frp" in a frame list after frame "after". | |
4662 */ | |
4663 static void | |
4664 frame_append(after, frp) | |
4665 frame_T *after, *frp; | |
4666 { | |
4667 frp->fr_next = after->fr_next; | |
4668 after->fr_next = frp; | |
4669 if (frp->fr_next != NULL) | |
4670 frp->fr_next->fr_prev = frp; | |
4671 frp->fr_prev = after; | |
4672 } | |
4673 | |
4674 /* | |
4675 * Insert frame "frp" in a frame list before frame "before". | |
4676 */ | |
4677 static void | |
4678 frame_insert(before, frp) | |
4679 frame_T *before, *frp; | |
4680 { | |
4681 frp->fr_next = before; | |
4682 frp->fr_prev = before->fr_prev; | |
4683 before->fr_prev = frp; | |
4684 if (frp->fr_prev != NULL) | |
4685 frp->fr_prev->fr_next = frp; | |
4686 else | |
4687 frp->fr_parent->fr_child = frp; | |
4688 } | |
4689 | |
4690 /* | |
4691 * Remove a frame from a frame list. | |
4692 */ | |
4693 static void | |
4694 frame_remove(frp) | |
4695 frame_T *frp; | |
4696 { | |
4697 if (frp->fr_prev != NULL) | |
4698 frp->fr_prev->fr_next = frp->fr_next; | |
4699 else | |
4700 frp->fr_parent->fr_child = frp->fr_next; | |
4701 if (frp->fr_next != NULL) | |
4702 frp->fr_next->fr_prev = frp->fr_prev; | |
4703 } | |
4704 | |
4705 #endif /* FEAT_WINDOWS */ | |
4706 | |
4707 /* | |
4708 * Allocate w_lines[] for window "wp". | |
4709 * Return FAIL for failure, OK for success. | |
4710 */ | |
4711 int | |
4712 win_alloc_lines(wp) | |
4713 win_T *wp; | |
4714 { | |
4715 wp->w_lines_valid = 0; | |
1042 | 4716 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T))); |
7 | 4717 if (wp->w_lines == NULL) |
4718 return FAIL; | |
4719 return OK; | |
4720 } | |
4721 | |
4722 /* | |
4723 * free lsize arrays for a window | |
4724 */ | |
4725 void | |
4726 win_free_lsize(wp) | |
4727 win_T *wp; | |
4728 { | |
4729 vim_free(wp->w_lines); | |
4730 wp->w_lines = NULL; | |
4731 } | |
4732 | |
4733 /* | |
4734 * Called from win_new_shellsize() after Rows changed. | |
671 | 4735 * This only does the current tab page, others must be done when made active. |
7 | 4736 */ |
4737 void | |
4738 shell_new_rows() | |
4739 { | |
667 | 4740 int h = (int)ROWS_AVAIL; |
7 | 4741 |
4742 if (firstwin == NULL) /* not initialized yet */ | |
4743 return; | |
4744 #ifdef FEAT_WINDOWS | |
4745 if (h < frame_minheight(topframe, NULL)) | |
4746 h = frame_minheight(topframe, NULL); | |
779 | 4747 |
4748 /* First try setting the heights of windows with 'winfixheight'. If | |
7 | 4749 * that doesn't result in the right height, forget about that option. */ |
4750 frame_new_height(topframe, h, FALSE, TRUE); | |
4751 if (topframe->fr_height != h) | |
4752 frame_new_height(topframe, h, FALSE, FALSE); | |
4753 | |
4754 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */ | |
4755 #else | |
4756 if (h < 1) | |
4757 h = 1; | |
4758 win_new_height(firstwin, h); | |
4759 #endif | |
4760 compute_cmdrow(); | |
170 | 4761 #ifdef FEAT_WINDOWS |
824 | 4762 curtab->tp_ch_used = p_ch; |
170 | 4763 #endif |
4764 | |
7 | 4765 #if 0 |
4766 /* Disabled: don't want making the screen smaller make a window larger. */ | |
4767 if (p_ea) | |
4768 win_equal(curwin, FALSE, 'v'); | |
4769 #endif | |
4770 } | |
4771 | |
4772 #if defined(FEAT_VERTSPLIT) || defined(PROTO) | |
4773 /* | |
4774 * Called from win_new_shellsize() after Columns changed. | |
4775 */ | |
4776 void | |
4777 shell_new_columns() | |
4778 { | |
4779 if (firstwin == NULL) /* not initialized yet */ | |
4780 return; | |
779 | 4781 |
4782 /* First try setting the widths of windows with 'winfixwidth'. If that | |
4783 * doesn't result in the right width, forget about that option. */ | |
4784 frame_new_width(topframe, (int)Columns, FALSE, TRUE); | |
4785 if (topframe->fr_width != Columns) | |
4786 frame_new_width(topframe, (int)Columns, FALSE, FALSE); | |
4787 | |
7 | 4788 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */ |
4789 #if 0 | |
4790 /* Disabled: don't want making the screen smaller make a window larger. */ | |
4791 if (p_ea) | |
4792 win_equal(curwin, FALSE, 'h'); | |
4793 #endif | |
4794 } | |
4795 #endif | |
4796 | |
4797 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
4798 /* | |
4799 * Save the size of all windows in "gap". | |
4800 */ | |
4801 void | |
4802 win_size_save(gap) | |
4803 garray_T *gap; | |
4804 | |
4805 { | |
4806 win_T *wp; | |
4807 | |
4808 ga_init2(gap, (int)sizeof(int), 1); | |
4809 if (ga_grow(gap, win_count() * 2) == OK) | |
4810 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
4811 { | |
4812 ((int *)gap->ga_data)[gap->ga_len++] = | |
4813 wp->w_width + wp->w_vsep_width; | |
4814 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height; | |
4815 } | |
4816 } | |
4817 | |
4818 /* | |
4819 * Restore window sizes, but only if the number of windows is still the same. | |
4820 * Does not free the growarray. | |
4821 */ | |
4822 void | |
4823 win_size_restore(gap) | |
4824 garray_T *gap; | |
4825 { | |
4826 win_T *wp; | |
4827 int i; | |
4828 | |
4829 if (win_count() * 2 == gap->ga_len) | |
4830 { | |
4831 i = 0; | |
4832 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
4833 { | |
4834 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]); | |
4835 win_setheight_win(((int *)gap->ga_data)[i++], wp); | |
4836 } | |
4837 /* recompute the window positions */ | |
4838 (void)win_comp_pos(); | |
4839 } | |
4840 } | |
4841 #endif /* FEAT_CMDWIN */ | |
4842 | |
4843 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
4844 /* | |
4845 * Update the position for all windows, using the width and height of the | |
4846 * frames. | |
4847 * Returns the row just after the last window. | |
4848 */ | |
668 | 4849 int |
7 | 4850 win_comp_pos() |
4851 { | |
685 | 4852 int row = tabline_height(); |
7 | 4853 int col = 0; |
4854 | |
4855 frame_comp_pos(topframe, &row, &col); | |
4856 return row; | |
4857 } | |
4858 | |
4859 /* | |
4860 * Update the position of the windows in frame "topfrp", using the width and | |
4861 * height of the frames. | |
4862 * "*row" and "*col" are the top-left position of the frame. They are updated | |
4863 * to the bottom-right position plus one. | |
4864 */ | |
4865 static void | |
4866 frame_comp_pos(topfrp, row, col) | |
4867 frame_T *topfrp; | |
4868 int *row; | |
4869 int *col; | |
4870 { | |
4871 win_T *wp; | |
4872 frame_T *frp; | |
4873 #ifdef FEAT_VERTSPLIT | |
4874 int startcol; | |
4875 int startrow; | |
4876 #endif | |
4877 | |
4878 wp = topfrp->fr_win; | |
4879 if (wp != NULL) | |
4880 { | |
4881 if (wp->w_winrow != *row | |
4882 #ifdef FEAT_VERTSPLIT | |
4883 || wp->w_wincol != *col | |
4884 #endif | |
4885 ) | |
4886 { | |
4887 /* position changed, redraw */ | |
4888 wp->w_winrow = *row; | |
4889 #ifdef FEAT_VERTSPLIT | |
4890 wp->w_wincol = *col; | |
4891 #endif | |
4892 redraw_win_later(wp, NOT_VALID); | |
4893 wp->w_redr_status = TRUE; | |
4894 } | |
4895 *row += wp->w_height + wp->w_status_height; | |
4896 #ifdef FEAT_VERTSPLIT | |
4897 *col += wp->w_width + wp->w_vsep_width; | |
4898 #endif | |
4899 } | |
4900 else | |
4901 { | |
4902 #ifdef FEAT_VERTSPLIT | |
4903 startrow = *row; | |
4904 startcol = *col; | |
4905 #endif | |
4906 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next) | |
4907 { | |
4908 #ifdef FEAT_VERTSPLIT | |
4909 if (topfrp->fr_layout == FR_ROW) | |
4910 *row = startrow; /* all frames are at the same row */ | |
4911 else | |
4912 *col = startcol; /* all frames are at the same col */ | |
4913 #endif | |
4914 frame_comp_pos(frp, row, col); | |
4915 } | |
4916 } | |
4917 } | |
4918 | |
4919 #endif /* FEAT_WINDOWS */ | |
4920 | |
4921 /* | |
4922 * Set current window height and take care of repositioning other windows to | |
4923 * fit around it. | |
4924 */ | |
4925 void | |
4926 win_setheight(height) | |
4927 int height; | |
4928 { | |
4929 win_setheight_win(height, curwin); | |
4930 } | |
4931 | |
4932 /* | |
4933 * Set the window height of window "win" and take care of repositioning other | |
4934 * windows to fit around it. | |
4935 */ | |
4936 void | |
4937 win_setheight_win(height, win) | |
4938 int height; | |
4939 win_T *win; | |
4940 { | |
4941 int row; | |
4942 | |
4943 if (win == curwin) | |
4944 { | |
4945 /* Always keep current window at least one line high, even when | |
4946 * 'winminheight' is zero. */ | |
4947 #ifdef FEAT_WINDOWS | |
4948 if (height < p_wmh) | |
4949 height = p_wmh; | |
4950 #endif | |
4951 if (height == 0) | |
4952 height = 1; | |
4953 } | |
4954 | |
4955 #ifdef FEAT_WINDOWS | |
4956 frame_setheight(win->w_frame, height + win->w_status_height); | |
4957 | |
4958 /* recompute the window positions */ | |
4959 row = win_comp_pos(); | |
4960 #else | |
4961 if (height > topframe->fr_height) | |
4962 height = topframe->fr_height; | |
4963 win->w_height = height; | |
4964 row = height; | |
4965 #endif | |
4966 | |
4967 /* | |
4968 * If there is extra space created between the last window and the command | |
4969 * line, clear it. | |
4970 */ | |
4971 if (full_screen && msg_scrolled == 0 && row < cmdline_row) | |
4972 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
4973 cmdline_row = row; | |
4974 msg_row = row; | |
4975 msg_col = 0; | |
4976 | |
4977 redraw_all_later(NOT_VALID); | |
4978 } | |
4979 | |
4980 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
4981 | |
4982 /* | |
4983 * Set the height of a frame to "height" and take care that all frames and | |
4984 * windows inside it are resized. Also resize frames on the left and right if | |
4985 * the are in the same FR_ROW frame. | |
4986 * | |
4987 * Strategy: | |
4988 * If the frame is part of a FR_COL frame, try fitting the frame in that | |
4989 * frame. If that doesn't work (the FR_COL frame is too small), recursively | |
4990 * go to containing frames to resize them and make room. | |
4991 * If the frame is part of a FR_ROW frame, all frames must be resized as well. | |
4992 * Check for the minimal height of the FR_ROW frame. | |
4993 * At the top level we can also use change the command line height. | |
4994 */ | |
4995 static void | |
4996 frame_setheight(curfrp, height) | |
4997 frame_T *curfrp; | |
4998 int height; | |
4999 { | |
5000 int room; /* total number of lines available */ | |
5001 int take; /* number of lines taken from other windows */ | |
5002 int room_cmdline; /* lines available from cmdline */ | |
5003 int run; | |
5004 frame_T *frp; | |
5005 int h; | |
5006 int room_reserved; | |
5007 | |
5008 /* If the height already is the desired value, nothing to do. */ | |
5009 if (curfrp->fr_height == height) | |
5010 return; | |
5011 | |
5012 if (curfrp->fr_parent == NULL) | |
5013 { | |
5014 /* topframe: can only change the command line */ | |
667 | 5015 if (height > ROWS_AVAIL) |
5016 height = ROWS_AVAIL; | |
7 | 5017 if (height > 0) |
5018 frame_new_height(curfrp, height, FALSE, FALSE); | |
5019 } | |
5020 else if (curfrp->fr_parent->fr_layout == FR_ROW) | |
5021 { | |
5022 /* Row of frames: Also need to resize frames left and right of this | |
5023 * one. First check for the minimal height of these. */ | |
5024 h = frame_minheight(curfrp->fr_parent, NULL); | |
5025 if (height < h) | |
5026 height = h; | |
5027 frame_setheight(curfrp->fr_parent, height); | |
5028 } | |
5029 else | |
5030 { | |
5031 /* | |
5032 * Column of frames: try to change only frames in this column. | |
5033 */ | |
5034 #ifdef FEAT_VERTSPLIT | |
5035 /* | |
5036 * Do this twice: | |
5037 * 1: compute room available, if it's not enough try resizing the | |
5038 * containing frame. | |
5039 * 2: compute the room available and adjust the height to it. | |
5040 * Try not to reduce the height of a window with 'winfixheight' set. | |
5041 */ | |
5042 for (run = 1; run <= 2; ++run) | |
5043 #else | |
5044 for (;;) | |
5045 #endif | |
5046 { | |
5047 room = 0; | |
5048 room_reserved = 0; | |
5049 for (frp = curfrp->fr_parent->fr_child; frp != NULL; | |
5050 frp = frp->fr_next) | |
5051 { | |
5052 if (frp != curfrp | |
5053 && frp->fr_win != NULL | |
5054 && frp->fr_win->w_p_wfh) | |
5055 room_reserved += frp->fr_height; | |
5056 room += frp->fr_height; | |
5057 if (frp != curfrp) | |
5058 room -= frame_minheight(frp, NULL); | |
5059 } | |
5060 #ifdef FEAT_VERTSPLIT | |
5061 if (curfrp->fr_width != Columns) | |
5062 room_cmdline = 0; | |
5063 else | |
5064 #endif | |
5065 { | |
5066 room_cmdline = Rows - p_ch - (lastwin->w_winrow | |
5067 + lastwin->w_height + lastwin->w_status_height); | |
5068 if (room_cmdline < 0) | |
5069 room_cmdline = 0; | |
5070 } | |
5071 | |
5072 if (height <= room + room_cmdline) | |
5073 break; | |
5074 #ifdef FEAT_VERTSPLIT | |
5075 if (run == 2 || curfrp->fr_width == Columns) | |
5076 #endif | |
5077 { | |
5078 if (height > room + room_cmdline) | |
5079 height = room + room_cmdline; | |
5080 break; | |
5081 } | |
5082 #ifdef FEAT_VERTSPLIT | |
5083 frame_setheight(curfrp->fr_parent, height | |
5084 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1); | |
5085 #endif | |
5086 /*NOTREACHED*/ | |
5087 } | |
5088 | |
5089 /* | |
5090 * Compute the number of lines we will take from others frames (can be | |
5091 * negative!). | |
5092 */ | |
5093 take = height - curfrp->fr_height; | |
5094 | |
5095 /* If there is not enough room, also reduce the height of a window | |
5096 * with 'winfixheight' set. */ | |
5097 if (height > room + room_cmdline - room_reserved) | |
5098 room_reserved = room + room_cmdline - height; | |
5099 /* If there is only a 'winfixheight' window and making the | |
5100 * window smaller, need to make the other window taller. */ | |
5101 if (take < 0 && room - curfrp->fr_height < room_reserved) | |
5102 room_reserved = 0; | |
5103 | |
5104 if (take > 0 && room_cmdline > 0) | |
5105 { | |
5106 /* use lines from cmdline first */ | |
5107 if (take < room_cmdline) | |
5108 room_cmdline = take; | |
5109 take -= room_cmdline; | |
5110 topframe->fr_height += room_cmdline; | |
5111 } | |
5112 | |
5113 /* | |
5114 * set the current frame to the new height | |
5115 */ | |
5116 frame_new_height(curfrp, height, FALSE, FALSE); | |
5117 | |
5118 /* | |
5119 * First take lines from the frames after the current frame. If | |
5120 * that is not enough, takes lines from frames above the current | |
5121 * frame. | |
5122 */ | |
5123 for (run = 0; run < 2; ++run) | |
5124 { | |
5125 if (run == 0) | |
5126 frp = curfrp->fr_next; /* 1st run: start with next window */ | |
5127 else | |
5128 frp = curfrp->fr_prev; /* 2nd run: start with prev window */ | |
5129 while (frp != NULL && take != 0) | |
5130 { | |
5131 h = frame_minheight(frp, NULL); | |
5132 if (room_reserved > 0 | |
5133 && frp->fr_win != NULL | |
5134 && frp->fr_win->w_p_wfh) | |
5135 { | |
5136 if (room_reserved >= frp->fr_height) | |
5137 room_reserved -= frp->fr_height; | |
5138 else | |
5139 { | |
5140 if (frp->fr_height - room_reserved > take) | |
5141 room_reserved = frp->fr_height - take; | |
5142 take -= frp->fr_height - room_reserved; | |
5143 frame_new_height(frp, room_reserved, FALSE, FALSE); | |
5144 room_reserved = 0; | |
5145 } | |
5146 } | |
5147 else | |
5148 { | |
5149 if (frp->fr_height - take < h) | |
5150 { | |
5151 take -= frp->fr_height - h; | |
5152 frame_new_height(frp, h, FALSE, FALSE); | |
5153 } | |
5154 else | |
5155 { | |
5156 frame_new_height(frp, frp->fr_height - take, | |
5157 FALSE, FALSE); | |
5158 take = 0; | |
5159 } | |
5160 } | |
5161 if (run == 0) | |
5162 frp = frp->fr_next; | |
5163 else | |
5164 frp = frp->fr_prev; | |
5165 } | |
5166 } | |
5167 } | |
5168 } | |
5169 | |
5170 #if defined(FEAT_VERTSPLIT) || defined(PROTO) | |
5171 /* | |
5172 * Set current window width and take care of repositioning other windows to | |
5173 * fit around it. | |
5174 */ | |
5175 void | |
5176 win_setwidth(width) | |
5177 int width; | |
5178 { | |
5179 win_setwidth_win(width, curwin); | |
5180 } | |
5181 | |
5182 void | |
5183 win_setwidth_win(width, wp) | |
5184 int width; | |
5185 win_T *wp; | |
5186 { | |
5187 /* Always keep current window at least one column wide, even when | |
5188 * 'winminwidth' is zero. */ | |
5189 if (wp == curwin) | |
5190 { | |
5191 if (width < p_wmw) | |
5192 width = p_wmw; | |
5193 if (width == 0) | |
5194 width = 1; | |
5195 } | |
5196 | |
5197 frame_setwidth(wp->w_frame, width + wp->w_vsep_width); | |
5198 | |
5199 /* recompute the window positions */ | |
5200 (void)win_comp_pos(); | |
5201 | |
5202 redraw_all_later(NOT_VALID); | |
5203 } | |
5204 | |
5205 /* | |
5206 * Set the width of a frame to "width" and take care that all frames and | |
5207 * windows inside it are resized. Also resize frames above and below if the | |
5208 * are in the same FR_ROW frame. | |
5209 * | |
5210 * Strategy is similar to frame_setheight(). | |
5211 */ | |
5212 static void | |
5213 frame_setwidth(curfrp, width) | |
5214 frame_T *curfrp; | |
5215 int width; | |
5216 { | |
5217 int room; /* total number of lines available */ | |
5218 int take; /* number of lines taken from other windows */ | |
5219 int run; | |
5220 frame_T *frp; | |
5221 int w; | |
779 | 5222 int room_reserved; |
7 | 5223 |
5224 /* If the width already is the desired value, nothing to do. */ | |
5225 if (curfrp->fr_width == width) | |
5226 return; | |
5227 | |
5228 if (curfrp->fr_parent == NULL) | |
5229 /* topframe: can't change width */ | |
5230 return; | |
5231 | |
5232 if (curfrp->fr_parent->fr_layout == FR_COL) | |
5233 { | |
5234 /* Column of frames: Also need to resize frames above and below of | |
5235 * this one. First check for the minimal width of these. */ | |
5236 w = frame_minwidth(curfrp->fr_parent, NULL); | |
5237 if (width < w) | |
5238 width = w; | |
5239 frame_setwidth(curfrp->fr_parent, width); | |
5240 } | |
5241 else | |
5242 { | |
5243 /* | |
5244 * Row of frames: try to change only frames in this row. | |
5245 * | |
5246 * Do this twice: | |
5247 * 1: compute room available, if it's not enough try resizing the | |
5248 * containing frame. | |
5249 * 2: compute the room available and adjust the width to it. | |
5250 */ | |
5251 for (run = 1; run <= 2; ++run) | |
5252 { | |
5253 room = 0; | |
779 | 5254 room_reserved = 0; |
7 | 5255 for (frp = curfrp->fr_parent->fr_child; frp != NULL; |
5256 frp = frp->fr_next) | |
5257 { | |
779 | 5258 if (frp != curfrp |
5259 && frp->fr_win != NULL | |
5260 && frp->fr_win->w_p_wfw) | |
5261 room_reserved += frp->fr_width; | |
7 | 5262 room += frp->fr_width; |
5263 if (frp != curfrp) | |
5264 room -= frame_minwidth(frp, NULL); | |
5265 } | |
5266 | |
5267 if (width <= room) | |
5268 break; | |
667 | 5269 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL) |
7 | 5270 { |
5271 if (width > room) | |
5272 width = room; | |
5273 break; | |
5274 } | |
5275 frame_setwidth(curfrp->fr_parent, width | |
5276 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1); | |
5277 } | |
5278 | |
5279 /* | |
5280 * Compute the number of lines we will take from others frames (can be | |
5281 * negative!). | |
5282 */ | |
5283 take = width - curfrp->fr_width; | |
5284 | |
779 | 5285 /* If there is not enough room, also reduce the width of a window |
5286 * with 'winfixwidth' set. */ | |
5287 if (width > room - room_reserved) | |
5288 room_reserved = room - width; | |
5289 /* If there is only a 'winfixwidth' window and making the | |
5290 * window smaller, need to make the other window narrower. */ | |
5291 if (take < 0 && room - curfrp->fr_width < room_reserved) | |
5292 room_reserved = 0; | |
5293 | |
7 | 5294 /* |
5295 * set the current frame to the new width | |
5296 */ | |
779 | 5297 frame_new_width(curfrp, width, FALSE, FALSE); |
7 | 5298 |
5299 /* | |
5300 * First take lines from the frames right of the current frame. If | |
5301 * that is not enough, takes lines from frames left of the current | |
5302 * frame. | |
5303 */ | |
5304 for (run = 0; run < 2; ++run) | |
5305 { | |
5306 if (run == 0) | |
5307 frp = curfrp->fr_next; /* 1st run: start with next window */ | |
5308 else | |
5309 frp = curfrp->fr_prev; /* 2nd run: start with prev window */ | |
5310 while (frp != NULL && take != 0) | |
5311 { | |
5312 w = frame_minwidth(frp, NULL); | |
779 | 5313 if (room_reserved > 0 |
5314 && frp->fr_win != NULL | |
5315 && frp->fr_win->w_p_wfw) | |
7 | 5316 { |
779 | 5317 if (room_reserved >= frp->fr_width) |
5318 room_reserved -= frp->fr_width; | |
5319 else | |
5320 { | |
5321 if (frp->fr_width - room_reserved > take) | |
5322 room_reserved = frp->fr_width - take; | |
5323 take -= frp->fr_width - room_reserved; | |
5324 frame_new_width(frp, room_reserved, FALSE, FALSE); | |
5325 room_reserved = 0; | |
5326 } | |
7 | 5327 } |
5328 else | |
5329 { | |
779 | 5330 if (frp->fr_width - take < w) |
5331 { | |
5332 take -= frp->fr_width - w; | |
5333 frame_new_width(frp, w, FALSE, FALSE); | |
5334 } | |
5335 else | |
5336 { | |
5337 frame_new_width(frp, frp->fr_width - take, | |
5338 FALSE, FALSE); | |
5339 take = 0; | |
5340 } | |
7 | 5341 } |
5342 if (run == 0) | |
5343 frp = frp->fr_next; | |
5344 else | |
5345 frp = frp->fr_prev; | |
5346 } | |
5347 } | |
5348 } | |
5349 } | |
5350 #endif /* FEAT_VERTSPLIT */ | |
5351 | |
5352 /* | |
5353 * Check 'winminheight' for a valid value. | |
5354 */ | |
5355 void | |
5356 win_setminheight() | |
5357 { | |
5358 int room; | |
5359 int first = TRUE; | |
5360 win_T *wp; | |
5361 | |
5362 /* loop until there is a 'winminheight' that is possible */ | |
5363 while (p_wmh > 0) | |
5364 { | |
5365 /* TODO: handle vertical splits */ | |
5366 room = -p_wh; | |
5367 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5368 room += wp->w_height - p_wmh; | |
5369 if (room >= 0) | |
5370 break; | |
5371 --p_wmh; | |
5372 if (first) | |
5373 { | |
5374 EMSG(_(e_noroom)); | |
5375 first = FALSE; | |
5376 } | |
5377 } | |
5378 } | |
5379 | |
5380 #ifdef FEAT_MOUSE | |
5381 | |
5382 /* | |
5383 * Status line of dragwin is dragged "offset" lines down (negative is up). | |
5384 */ | |
5385 void | |
5386 win_drag_status_line(dragwin, offset) | |
5387 win_T *dragwin; | |
5388 int offset; | |
5389 { | |
5390 frame_T *curfr; | |
5391 frame_T *fr; | |
5392 int room; | |
5393 int row; | |
5394 int up; /* if TRUE, drag status line up, otherwise down */ | |
5395 int n; | |
5396 | |
5397 fr = dragwin->w_frame; | |
5398 curfr = fr; | |
5399 if (fr != topframe) /* more than one window */ | |
5400 { | |
5401 fr = fr->fr_parent; | |
5402 /* When the parent frame is not a column of frames, its parent should | |
5403 * be. */ | |
5404 if (fr->fr_layout != FR_COL) | |
5405 { | |
5406 curfr = fr; | |
5407 if (fr != topframe) /* only a row of windows, may drag statusline */ | |
5408 fr = fr->fr_parent; | |
5409 } | |
5410 } | |
5411 | |
5412 /* If this is the last frame in a column, may want to resize the parent | |
5413 * frame instead (go two up to skip a row of frames). */ | |
5414 while (curfr != topframe && curfr->fr_next == NULL) | |
5415 { | |
5416 if (fr != topframe) | |
5417 fr = fr->fr_parent; | |
5418 curfr = fr; | |
5419 if (fr != topframe) | |
5420 fr = fr->fr_parent; | |
5421 } | |
5422 | |
5423 if (offset < 0) /* drag up */ | |
5424 { | |
5425 up = TRUE; | |
5426 offset = -offset; | |
5427 /* sum up the room of the current frame and above it */ | |
5428 if (fr == curfr) | |
5429 { | |
5430 /* only one window */ | |
5431 room = fr->fr_height - frame_minheight(fr, NULL); | |
5432 } | |
5433 else | |
5434 { | |
5435 room = 0; | |
5436 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5437 { | |
5438 room += fr->fr_height - frame_minheight(fr, NULL); | |
5439 if (fr == curfr) | |
5440 break; | |
5441 } | |
5442 } | |
5443 fr = curfr->fr_next; /* put fr at frame that grows */ | |
5444 } | |
5445 else /* drag down */ | |
5446 { | |
5447 up = FALSE; | |
5448 /* | |
5449 * Only dragging the last status line can reduce p_ch. | |
5450 */ | |
5451 room = Rows - cmdline_row; | |
5452 if (curfr->fr_next == NULL) | |
5453 room -= 1; | |
5454 else | |
5455 room -= p_ch; | |
5456 if (room < 0) | |
5457 room = 0; | |
5458 /* sum up the room of frames below of the current one */ | |
5459 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next) | |
5460 room += fr->fr_height - frame_minheight(fr, NULL); | |
5461 fr = curfr; /* put fr at window that grows */ | |
5462 } | |
5463 | |
5464 if (room < offset) /* Not enough room */ | |
5465 offset = room; /* Move as far as we can */ | |
5466 if (offset <= 0) | |
5467 return; | |
5468 | |
5469 /* | |
5470 * Grow frame fr by "offset" lines. | |
5471 * Doesn't happen when dragging the last status line up. | |
5472 */ | |
5473 if (fr != NULL) | |
5474 frame_new_height(fr, fr->fr_height + offset, up, FALSE); | |
5475 | |
5476 if (up) | |
5477 fr = curfr; /* current frame gets smaller */ | |
5478 else | |
5479 fr = curfr->fr_next; /* next frame gets smaller */ | |
5480 | |
5481 /* | |
5482 * Now make the other frames smaller. | |
5483 */ | |
5484 while (fr != NULL && offset > 0) | |
5485 { | |
5486 n = frame_minheight(fr, NULL); | |
5487 if (fr->fr_height - offset <= n) | |
5488 { | |
5489 offset -= fr->fr_height - n; | |
5490 frame_new_height(fr, n, !up, FALSE); | |
5491 } | |
5492 else | |
5493 { | |
5494 frame_new_height(fr, fr->fr_height - offset, !up, FALSE); | |
5495 break; | |
5496 } | |
5497 if (up) | |
5498 fr = fr->fr_prev; | |
5499 else | |
5500 fr = fr->fr_next; | |
5501 } | |
5502 row = win_comp_pos(); | |
5503 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5504 cmdline_row = row; | |
5505 p_ch = Rows - cmdline_row; | |
5506 if (p_ch < 1) | |
5507 p_ch = 1; | |
824 | 5508 curtab->tp_ch_used = p_ch; |
737 | 5509 redraw_all_later(SOME_VALID); |
7 | 5510 showmode(); |
5511 } | |
5512 | |
5513 #ifdef FEAT_VERTSPLIT | |
5514 /* | |
5515 * Separator line of dragwin is dragged "offset" lines right (negative is left). | |
5516 */ | |
5517 void | |
5518 win_drag_vsep_line(dragwin, offset) | |
5519 win_T *dragwin; | |
5520 int offset; | |
5521 { | |
5522 frame_T *curfr; | |
5523 frame_T *fr; | |
5524 int room; | |
5525 int left; /* if TRUE, drag separator line left, otherwise right */ | |
5526 int n; | |
5527 | |
5528 fr = dragwin->w_frame; | |
840 | 5529 if (fr == topframe) /* only one window (cannot happen?) */ |
7 | 5530 return; |
5531 curfr = fr; | |
5532 fr = fr->fr_parent; | |
5533 /* When the parent frame is not a row of frames, its parent should be. */ | |
5534 if (fr->fr_layout != FR_ROW) | |
5535 { | |
5536 if (fr == topframe) /* only a column of windows (cannot happen?) */ | |
5537 return; | |
5538 curfr = fr; | |
5539 fr = fr->fr_parent; | |
5540 } | |
5541 | |
5542 /* If this is the last frame in a row, may want to resize a parent | |
5543 * frame instead. */ | |
5544 while (curfr->fr_next == NULL) | |
5545 { | |
5546 if (fr == topframe) | |
5547 break; | |
5548 curfr = fr; | |
5549 fr = fr->fr_parent; | |
5550 if (fr != topframe) | |
5551 { | |
5552 curfr = fr; | |
5553 fr = fr->fr_parent; | |
5554 } | |
5555 } | |
5556 | |
5557 if (offset < 0) /* drag left */ | |
5558 { | |
5559 left = TRUE; | |
5560 offset = -offset; | |
5561 /* sum up the room of the current frame and left of it */ | |
5562 room = 0; | |
5563 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5564 { | |
5565 room += fr->fr_width - frame_minwidth(fr, NULL); | |
5566 if (fr == curfr) | |
5567 break; | |
5568 } | |
5569 fr = curfr->fr_next; /* put fr at frame that grows */ | |
5570 } | |
5571 else /* drag right */ | |
5572 { | |
5573 left = FALSE; | |
5574 /* sum up the room of frames right of the current one */ | |
5575 room = 0; | |
5576 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next) | |
5577 room += fr->fr_width - frame_minwidth(fr, NULL); | |
5578 fr = curfr; /* put fr at window that grows */ | |
5579 } | |
5580 | |
5581 if (room < offset) /* Not enough room */ | |
5582 offset = room; /* Move as far as we can */ | |
5583 if (offset <= 0) /* No room at all, quit. */ | |
5584 return; | |
5585 | |
5586 /* grow frame fr by offset lines */ | |
779 | 5587 frame_new_width(fr, fr->fr_width + offset, left, FALSE); |
7 | 5588 |
5589 /* shrink other frames: current and at the left or at the right */ | |
5590 if (left) | |
5591 fr = curfr; /* current frame gets smaller */ | |
5592 else | |
5593 fr = curfr->fr_next; /* next frame gets smaller */ | |
5594 | |
5595 while (fr != NULL && offset > 0) | |
5596 { | |
5597 n = frame_minwidth(fr, NULL); | |
5598 if (fr->fr_width - offset <= n) | |
5599 { | |
5600 offset -= fr->fr_width - n; | |
779 | 5601 frame_new_width(fr, n, !left, FALSE); |
7 | 5602 } |
5603 else | |
5604 { | |
779 | 5605 frame_new_width(fr, fr->fr_width - offset, !left, FALSE); |
7 | 5606 break; |
5607 } | |
5608 if (left) | |
5609 fr = fr->fr_prev; | |
5610 else | |
5611 fr = fr->fr_next; | |
5612 } | |
5613 (void)win_comp_pos(); | |
5614 redraw_all_later(NOT_VALID); | |
5615 } | |
5616 #endif /* FEAT_VERTSPLIT */ | |
5617 #endif /* FEAT_MOUSE */ | |
5618 | |
5619 #endif /* FEAT_WINDOWS */ | |
5620 | |
2665 | 5621 #define FRACTION_MULT 16384L |
5622 | |
5623 /* | |
5624 * Set wp->w_fraction for the current w_wrow and w_height. | |
5625 */ | |
5626 static void | |
5627 set_fraction(wp) | |
5628 win_T *wp; | |
5629 { | |
5630 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT | |
5631 + FRACTION_MULT / 2) / (long)wp->w_height; | |
5632 } | |
5633 | |
7 | 5634 /* |
5635 * Set the height of a window. | |
5636 * This takes care of the things inside the window, not what happens to the | |
5637 * window position, the frame or to other windows. | |
5638 */ | |
3697 | 5639 void |
7 | 5640 win_new_height(wp, height) |
5641 win_T *wp; | |
5642 int height; | |
5643 { | |
5644 linenr_T lnum; | |
5645 int sline, line_size; | |
5646 | |
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; | |
826 | 5651 if (wp->w_height == height) |
5652 return; /* nothing to do */ | |
7 | 5653 |
5654 if (wp->w_wrow != wp->w_prev_fraction_row && wp->w_height > 0) | |
2665 | 5655 set_fraction(wp); |
7 | 5656 |
5657 wp->w_height = height; | |
5658 wp->w_skipcol = 0; | |
5659 | |
5660 /* Don't change w_topline when height is zero. Don't set w_topline when | |
5661 * 'scrollbind' is set and this isn't the current window. */ | |
5662 if (height > 0 | |
5663 #ifdef FEAT_SCROLLBIND | |
5664 && (!wp->w_p_scb || wp == curwin) | |
5665 #endif | |
5666 ) | |
5667 { | |
47 | 5668 /* |
5669 * Find a value for w_topline that shows the cursor at the same | |
5670 * relative position in the window as before (more or less). | |
5671 */ | |
7 | 5672 lnum = wp->w_cursor.lnum; |
5673 if (lnum < 1) /* can happen when starting up */ | |
5674 lnum = 1; | |
5675 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L) / FRACTION_MULT; | |
5676 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1; | |
5677 sline = wp->w_wrow - line_size; | |
1023 | 5678 |
5679 if (sline >= 0) | |
5680 { | |
5681 /* Make sure the whole cursor line is visible, if possible. */ | |
5682 int rows = plines_win(wp, lnum, FALSE); | |
5683 | |
5684 if (sline > wp->w_height - rows) | |
5685 { | |
5686 sline = wp->w_height - rows; | |
5687 wp->w_wrow -= rows - line_size; | |
5688 } | |
5689 } | |
5690 | |
7 | 5691 if (sline < 0) |
5692 { | |
5693 /* | |
5694 * Cursor line would go off top of screen if w_wrow was this high. | |
1023 | 5695 * Make cursor line the first line in the window. If not enough |
5696 * room use w_skipcol; | |
7 | 5697 */ |
5698 wp->w_wrow = line_size; | |
1023 | 5699 if (wp->w_wrow >= wp->w_height |
5700 && (W_WIDTH(wp) - win_col_off(wp)) > 0) | |
5701 { | |
5702 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp); | |
5703 --wp->w_wrow; | |
5704 while (wp->w_wrow >= wp->w_height) | |
5705 { | |
5706 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp) | |
5707 + win_col_off2(wp); | |
5708 --wp->w_wrow; | |
5709 } | |
5710 } | |
7 | 5711 } |
5712 else | |
5713 { | |
1023 | 5714 while (sline > 0 && lnum > 1) |
7 | 5715 { |
5716 #ifdef FEAT_FOLDING | |
5717 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); | |
5718 if (lnum == 1) | |
5719 { | |
5720 /* first line in buffer is folded */ | |
5721 line_size = 1; | |
5722 --sline; | |
5723 break; | |
5724 } | |
5725 #endif | |
5726 --lnum; | |
5727 #ifdef FEAT_DIFF | |
5728 if (lnum == wp->w_topline) | |
5729 line_size = plines_win_nofill(wp, lnum, TRUE) | |
5730 + wp->w_topfill; | |
5731 else | |
5732 #endif | |
5733 line_size = plines_win(wp, lnum, TRUE); | |
5734 sline -= line_size; | |
5735 } | |
47 | 5736 |
7 | 5737 if (sline < 0) |
5738 { | |
5739 /* | |
5740 * Line we want at top would go off top of screen. Use next | |
5741 * line instead. | |
5742 */ | |
5743 #ifdef FEAT_FOLDING | |
5744 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); | |
5745 #endif | |
5746 lnum++; | |
5747 wp->w_wrow -= line_size + sline; | |
5748 } | |
5749 else if (sline > 0) | |
5750 { | |
5751 /* First line of file reached, use that as topline. */ | |
5752 lnum = 1; | |
5753 wp->w_wrow -= sline; | |
5754 } | |
5755 } | |
5756 set_topline(wp, lnum); | |
5757 } | |
5758 | |
5759 if (wp == curwin) | |
5760 { | |
5761 if (p_so) | |
5762 update_topline(); | |
5763 curs_columns(FALSE); /* validate w_wrow */ | |
5764 } | |
5765 wp->w_prev_fraction_row = wp->w_wrow; | |
5766 | |
5767 win_comp_scroll(wp); | |
737 | 5768 redraw_win_later(wp, SOME_VALID); |
7 | 5769 #ifdef FEAT_WINDOWS |
5770 wp->w_redr_status = TRUE; | |
5771 #endif | |
5772 invalidate_botline_win(wp); | |
5773 } | |
5774 | |
5775 #ifdef FEAT_VERTSPLIT | |
5776 /* | |
5777 * Set the width of a window. | |
5778 */ | |
3697 | 5779 void |
7 | 5780 win_new_width(wp, width) |
5781 win_T *wp; | |
5782 int width; | |
5783 { | |
5784 wp->w_width = width; | |
5785 wp->w_lines_valid = 0; | |
5786 changed_line_abv_curs_win(wp); | |
5787 invalidate_botline_win(wp); | |
5788 if (wp == curwin) | |
5789 { | |
5790 update_topline(); | |
5791 curs_columns(TRUE); /* validate w_wrow */ | |
5792 } | |
5793 redraw_win_later(wp, NOT_VALID); | |
5794 wp->w_redr_status = TRUE; | |
5795 } | |
5796 #endif | |
5797 | |
5798 void | |
5799 win_comp_scroll(wp) | |
5800 win_T *wp; | |
5801 { | |
5802 wp->w_p_scr = ((unsigned)wp->w_height >> 1); | |
5803 if (wp->w_p_scr == 0) | |
5804 wp->w_p_scr = 1; | |
5805 } | |
5806 | |
5807 /* | |
5808 * command_height: called whenever p_ch has been changed | |
5809 */ | |
5810 void | |
824 | 5811 command_height() |
7 | 5812 { |
5813 #ifdef FEAT_WINDOWS | |
5814 int h; | |
5815 frame_T *frp; | |
824 | 5816 int old_p_ch = curtab->tp_ch_used; |
5817 | |
5818 /* Use the value of p_ch that we remembered. This is needed for when the | |
5819 * GUI starts up, we can't be sure in what order things happen. And when | |
5820 * p_ch was changed in another tab page. */ | |
5821 curtab->tp_ch_used = p_ch; | |
170 | 5822 |
7 | 5823 /* Find bottom frame with width of screen. */ |
5824 frp = lastwin->w_frame; | |
5825 # ifdef FEAT_VERTSPLIT | |
5826 while (frp->fr_width != Columns && frp->fr_parent != NULL) | |
5827 frp = frp->fr_parent; | |
5828 # endif | |
5829 | |
5830 /* Avoid changing the height of a window with 'winfixheight' set. */ | |
5831 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF | |
5832 && frp->fr_win->w_p_wfh) | |
5833 frp = frp->fr_prev; | |
5834 | |
5835 if (starting != NO_SCREEN) | |
5836 { | |
5837 cmdline_row = Rows - p_ch; | |
5838 | |
5839 if (p_ch > old_p_ch) /* p_ch got bigger */ | |
5840 { | |
5841 while (p_ch > old_p_ch) | |
5842 { | |
5843 if (frp == NULL) | |
5844 { | |
5845 EMSG(_(e_noroom)); | |
5846 p_ch = old_p_ch; | |
1404 | 5847 curtab->tp_ch_used = p_ch; |
7 | 5848 cmdline_row = Rows - p_ch; |
5849 break; | |
5850 } | |
5851 h = frp->fr_height - frame_minheight(frp, NULL); | |
5852 if (h > p_ch - old_p_ch) | |
5853 h = p_ch - old_p_ch; | |
5854 old_p_ch += h; | |
5855 frame_add_height(frp, -h); | |
5856 frp = frp->fr_prev; | |
5857 } | |
5858 | |
5859 /* Recompute window positions. */ | |
5860 (void)win_comp_pos(); | |
5861 | |
5862 /* clear the lines added to cmdline */ | |
5863 if (full_screen) | |
5864 screen_fill((int)(cmdline_row), (int)Rows, 0, | |
5865 (int)Columns, ' ', ' ', 0); | |
5866 msg_row = cmdline_row; | |
5867 redraw_cmdline = TRUE; | |
5868 return; | |
5869 } | |
5870 | |
5871 if (msg_row < cmdline_row) | |
5872 msg_row = cmdline_row; | |
5873 redraw_cmdline = TRUE; | |
5874 } | |
5875 frame_add_height(frp, (int)(old_p_ch - p_ch)); | |
5876 | |
5877 /* Recompute window positions. */ | |
5878 if (frp != lastwin->w_frame) | |
5879 (void)win_comp_pos(); | |
5880 #else | |
5881 cmdline_row = Rows - p_ch; | |
824 | 5882 win_setheight(cmdline_row); |
7 | 5883 #endif |
5884 } | |
5885 | |
5886 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
5887 /* | |
5888 * Resize frame "frp" to be "n" lines higher (negative for less high). | |
5889 * Also resize the frames it is contained in. | |
5890 */ | |
5891 static void | |
5892 frame_add_height(frp, n) | |
5893 frame_T *frp; | |
5894 int n; | |
5895 { | |
5896 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE); | |
5897 for (;;) | |
5898 { | |
5899 frp = frp->fr_parent; | |
5900 if (frp == NULL) | |
5901 break; | |
5902 frp->fr_height += n; | |
5903 } | |
5904 } | |
5905 | |
5906 /* | |
5907 * Add or remove a status line for the bottom window(s), according to the | |
5908 * value of 'laststatus'. | |
5909 */ | |
5910 void | |
5911 last_status(morewin) | |
5912 int morewin; /* pretend there are two or more windows */ | |
5913 { | |
5914 /* Don't make a difference between horizontal or vertical split. */ | |
5915 last_status_rec(topframe, (p_ls == 2 | |
5916 || (p_ls == 1 && (morewin || lastwin != firstwin)))); | |
5917 } | |
5918 | |
5919 static void | |
5920 last_status_rec(fr, statusline) | |
5921 frame_T *fr; | |
5922 int statusline; | |
5923 { | |
5924 frame_T *fp; | |
5925 win_T *wp; | |
5926 | |
5927 if (fr->fr_layout == FR_LEAF) | |
5928 { | |
5929 wp = fr->fr_win; | |
5930 if (wp->w_status_height != 0 && !statusline) | |
5931 { | |
5932 /* remove status line */ | |
5933 win_new_height(wp, wp->w_height + 1); | |
5934 wp->w_status_height = 0; | |
5935 comp_col(); | |
5936 } | |
5937 else if (wp->w_status_height == 0 && statusline) | |
5938 { | |
5939 /* Find a frame to take a line from. */ | |
5940 fp = fr; | |
5941 while (fp->fr_height <= frame_minheight(fp, NULL)) | |
5942 { | |
5943 if (fp == topframe) | |
5944 { | |
5945 EMSG(_(e_noroom)); | |
5946 return; | |
5947 } | |
5948 /* In a column of frames: go to frame above. If already at | |
5949 * the top or in a row of frames: go to parent. */ | |
5950 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL) | |
5951 fp = fp->fr_prev; | |
5952 else | |
5953 fp = fp->fr_parent; | |
5954 } | |
5955 wp->w_status_height = 1; | |
5956 if (fp != fr) | |
5957 { | |
5958 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE); | |
5959 frame_fix_height(wp); | |
5960 (void)win_comp_pos(); | |
5961 } | |
5962 else | |
5963 win_new_height(wp, wp->w_height - 1); | |
5964 comp_col(); | |
737 | 5965 redraw_all_later(SOME_VALID); |
7 | 5966 } |
5967 } | |
5968 #ifdef FEAT_VERTSPLIT | |
5969 else if (fr->fr_layout == FR_ROW) | |
5970 { | |
5971 /* vertically split windows, set status line for each one */ | |
5972 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next) | |
5973 last_status_rec(fp, statusline); | |
5974 } | |
5975 #endif | |
5976 else | |
5977 { | |
5978 /* horizontally split window, set status line for last one */ | |
5979 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next) | |
5980 ; | |
5981 last_status_rec(fp, statusline); | |
5982 } | |
5983 } | |
5984 | |
667 | 5985 /* |
668 | 5986 * Return the number of lines used by the tab page line. |
667 | 5987 */ |
5988 int | |
685 | 5989 tabline_height() |
667 | 5990 { |
685 | 5991 #ifdef FEAT_GUI_TABLINE |
5992 /* When the GUI has the tabline then this always returns zero. */ | |
5993 if (gui_use_tabline()) | |
5994 return 0; | |
5995 #endif | |
675 | 5996 switch (p_stal) |
668 | 5997 { |
5998 case 0: return 0; | |
5999 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1; | |
6000 } | |
667 | 6001 return 1; |
6002 } | |
6003 | |
7 | 6004 #endif /* FEAT_WINDOWS */ |
6005 | |
6006 #if defined(FEAT_SEARCHPATH) || defined(PROTO) | |
6007 /* | |
344 | 6008 * Get the file name at the cursor. |
6009 * If Visual mode is active, use the selected text if it's in one line. | |
6010 * Returns the name in allocated memory, NULL for failure. | |
6011 */ | |
6012 char_u * | |
681 | 6013 grab_file_name(count, file_lnum) |
6014 long count; | |
6015 linenr_T *file_lnum; | |
344 | 6016 { |
6017 # ifdef FEAT_VISUAL | |
6018 if (VIsual_active) | |
6019 { | |
6020 int len; | |
6021 char_u *ptr; | |
6022 | |
6023 if (get_visual_text(NULL, &ptr, &len) == FAIL) | |
6024 return NULL; | |
6025 return find_file_name_in_path(ptr, len, | |
6026 FNAME_MESS|FNAME_EXP|FNAME_REL, count, curbuf->b_ffname); | |
6027 } | |
6028 # endif | |
681 | 6029 return file_name_at_cursor(FNAME_MESS|FNAME_HYP|FNAME_EXP|FNAME_REL, count, |
6030 file_lnum); | |
6031 | |
344 | 6032 } |
6033 | |
6034 /* | |
7 | 6035 * 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 * | |
681 | 6048 file_name_at_cursor(options, count, file_lnum) |
6049 int options; | |
6050 long count; | |
6051 linenr_T *file_lnum; | |
7 | 6052 { |
6053 return file_name_in_line(ml_get_curline(), | |
681 | 6054 curwin->w_cursor.col, options, count, curbuf->b_ffname, |
6055 file_lnum); | |
7 | 6056 } |
6057 | |
6058 /* | |
6059 * Return the name of the file under or after ptr[col]. | |
6060 * Otherwise like file_name_at_cursor(). | |
6061 */ | |
6062 char_u * | |
681 | 6063 file_name_in_line(line, col, options, count, rel_fname, file_lnum) |
7 | 6064 char_u *line; |
6065 int col; | |
6066 int options; | |
6067 long count; | |
6068 char_u *rel_fname; /* file we are searching relative to */ | |
681 | 6069 linenr_T *file_lnum; /* line number after the file name */ |
7 | 6070 { |
6071 char_u *ptr; | |
6072 int len; | |
6073 | |
6074 /* | |
6075 * search forward for what could be the start of a file name | |
6076 */ | |
6077 ptr = line + col; | |
6078 while (*ptr != NUL && !vim_isfilec(*ptr)) | |
345 | 6079 mb_ptr_adv(ptr); |
7 | 6080 if (*ptr == NUL) /* nothing found */ |
6081 { | |
6082 if (options & FNAME_MESS) | |
6083 EMSG(_("E446: No file name under cursor")); | |
6084 return NULL; | |
6085 } | |
6086 | |
6087 /* | |
6088 * Search backward for first char of the file name. | |
6089 * Go one char back to ":" before "//" even when ':' is not in 'isfname'. | |
6090 */ | |
6091 while (ptr > line) | |
6092 { | |
6093 #ifdef FEAT_MBYTE | |
6094 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0) | |
6095 ptr -= len + 1; | |
6096 else | |
6097 #endif | |
6098 if (vim_isfilec(ptr[-1]) | |
6099 || ((options & FNAME_HYP) && path_is_url(ptr - 1))) | |
6100 --ptr; | |
6101 else | |
6102 break; | |
6103 } | |
6104 | |
6105 /* | |
6106 * Search forward for the last char of the file name. | |
6107 * Also allow "://" when ':' is not in 'isfname'. | |
6108 */ | |
6109 len = 0; | |
6110 while (vim_isfilec(ptr[len]) | |
6111 || ((options & FNAME_HYP) && path_is_url(ptr + len))) | |
6112 #ifdef FEAT_MBYTE | |
6113 if (has_mbyte) | |
474 | 6114 len += (*mb_ptr2len)(ptr + len); |
7 | 6115 else |
6116 #endif | |
6117 ++len; | |
6118 | |
6119 /* | |
6120 * If there is trailing punctuation, remove it. | |
6121 * But don't remove "..", could be a directory name. | |
6122 */ | |
6123 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL | |
6124 && ptr[len - 2] != '.') | |
6125 --len; | |
6126 | |
681 | 6127 if (file_lnum != NULL) |
6128 { | |
6129 char_u *p; | |
6130 | |
6131 /* Get the number after the file name and a separator character */ | |
6132 p = ptr + len; | |
6133 p = skipwhite(p); | |
6134 if (*p != NUL) | |
6135 { | |
6136 if (!isdigit(*p)) | |
6137 ++p; /* skip the separator */ | |
6138 p = skipwhite(p); | |
6139 if (isdigit(*p)) | |
6140 *file_lnum = (int)getdigits(&p); | |
6141 } | |
6142 } | |
6143 | |
7 | 6144 return find_file_name_in_path(ptr, len, options, count, rel_fname); |
6145 } | |
6146 | |
6147 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL) | |
6148 static char_u *eval_includeexpr __ARGS((char_u *ptr, int len)); | |
6149 | |
6150 static char_u * | |
6151 eval_includeexpr(ptr, len) | |
6152 char_u *ptr; | |
6153 int len; | |
6154 { | |
6155 char_u *res; | |
6156 | |
6157 set_vim_var_string(VV_FNAME, ptr, len); | |
633 | 6158 res = eval_to_string_safe(curbuf->b_p_inex, NULL, |
681 | 6159 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL)); |
7 | 6160 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 * | |
6170 find_file_name_in_path(ptr, len, options, count, rel_fname) | |
6171 char_u *ptr; | |
6172 int len; | |
6173 int options; | |
6174 long count; | |
6175 char_u *rel_fname; /* file we are searching relative to */ | |
6176 { | |
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 | |
6249 path_is_url(p) | |
6250 char_u *p; | |
6251 { | |
6252 if (STRNCMP(p, "://", (size_t)3) == 0) | |
6253 return URL_SLASH; | |
6254 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0) | |
6255 return URL_BACKSLASH; | |
6256 return 0; | |
6257 } | |
6258 | |
6259 /* | |
6260 * Check if "fname" starts with "name://". Return URL_SLASH if it does. | |
6261 * Return URL_BACKSLASH for "name:\\". | |
6262 * Return zero otherwise. | |
6263 */ | |
6264 int | |
6265 path_with_url(fname) | |
6266 char_u *fname; | |
6267 { | |
6268 char_u *p; | |
6269 | |
6270 for (p = fname; isalpha(*p); ++p) | |
6271 ; | |
6272 return path_is_url(p); | |
6273 } | |
6274 | |
6275 /* | |
6276 * Return TRUE if "name" is a full (absolute) path name or URL. | |
6277 */ | |
6278 int | |
6279 vim_isAbsName(name) | |
6280 char_u *name; | |
6281 { | |
6282 return (path_with_url(name) != 0 || mch_isFullName(name)); | |
6283 } | |
6284 | |
6285 /* | |
592 | 6286 * Get absolute file name into buffer "buf[len]". |
7 | 6287 * |
6288 * return FAIL for failure, OK otherwise | |
6289 */ | |
6290 int | |
6291 vim_FullName(fname, buf, len, force) | |
6292 char_u *fname, *buf; | |
6293 int len; | |
592 | 6294 int force; /* force expansion even when already absolute */ |
7 | 6295 { |
6296 int retval = OK; | |
6297 int url; | |
6298 | |
6299 *buf = NUL; | |
6300 if (fname == NULL) | |
6301 return FAIL; | |
6302 | |
6303 url = path_with_url(fname); | |
6304 if (!url) | |
6305 retval = mch_FullName(fname, buf, len, force); | |
6306 if (url || retval == FAIL) | |
6307 { | |
6308 /* something failed; use the file name (truncate when too long) */ | |
416 | 6309 vim_strncpy(buf, fname, len - 1); |
7 | 6310 } |
6311 #if defined(MACOS_CLASSIC) || defined(OS2) || defined(MSDOS) || defined(MSWIN) | |
6312 slash_adjust(buf); | |
6313 #endif | |
6314 return retval; | |
6315 } | |
6316 | |
6317 /* | |
6318 * Return the minimal number of rows that is needed on the screen to display | |
6319 * the current number of windows. | |
6320 */ | |
6321 int | |
6322 min_rows() | |
6323 { | |
6324 int total; | |
671 | 6325 #ifdef FEAT_WINDOWS |
6326 tabpage_T *tp; | |
6327 int n; | |
6328 #endif | |
7 | 6329 |
6330 if (firstwin == NULL) /* not initialized yet */ | |
6331 return MIN_LINES; | |
6332 | |
6333 #ifdef FEAT_WINDOWS | |
671 | 6334 total = 0; |
6335 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next) | |
6336 { | |
6337 n = frame_minheight(tp->tp_topframe, NULL); | |
6338 if (total < n) | |
6339 total = n; | |
6340 } | |
685 | 6341 total += tabline_height(); |
7 | 6342 #else |
671 | 6343 total = 1; /* at least one window should have a line! */ |
7 | 6344 #endif |
671 | 6345 total += 1; /* count the room for the command line */ |
7 | 6346 return total; |
6347 } | |
6348 | |
6349 /* | |
672 | 6350 * Return TRUE if there is only one window (in the current tab page), not |
6351 * counting a help or preview window, unless it is the current window. | |
1906 | 6352 * Does not count "aucmd_win". |
7 | 6353 */ |
6354 int | |
6355 only_one_window() | |
6356 { | |
6357 #ifdef FEAT_WINDOWS | |
6358 int count = 0; | |
6359 win_T *wp; | |
6360 | |
667 | 6361 /* If there is another tab page there always is another window. */ |
6362 if (first_tabpage->tp_next != NULL) | |
6363 return FALSE; | |
6364 | |
7 | 6365 for (wp = firstwin; wp != NULL; wp = wp->w_next) |
4021 | 6366 if (wp->w_buffer != NULL |
6367 && (!((wp->w_buffer->b_help && !curbuf->b_help) | |
7 | 6368 # ifdef FEAT_QUICKFIX |
6369 || wp->w_p_pvw | |
6370 # endif | |
6371 ) || wp == curwin) | |
1906 | 6372 # ifdef FEAT_AUTOCMD |
6373 && wp != aucmd_win | |
6374 # endif | |
6375 ) | |
7 | 6376 ++count; |
6377 return (count <= 1); | |
6378 #else | |
6379 return TRUE; | |
6380 #endif | |
6381 } | |
6382 | |
6383 #if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO) | |
6384 /* | |
6385 * Correct the cursor line number in other windows. Used after changing the | |
6386 * current buffer, and before applying autocommands. | |
6387 * When "do_curwin" is TRUE, also check current window. | |
6388 */ | |
6389 void | |
6390 check_lnums(do_curwin) | |
6391 int do_curwin; | |
6392 { | |
6393 win_T *wp; | |
6394 | |
6395 #ifdef FEAT_WINDOWS | |
671 | 6396 tabpage_T *tp; |
6397 | |
6398 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7 | 6399 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf) |
6400 #else | |
6401 wp = curwin; | |
6402 if (do_curwin) | |
6403 #endif | |
6404 { | |
6405 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
6406 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
6407 if (wp->w_topline > curbuf->b_ml.ml_line_count) | |
6408 wp->w_topline = curbuf->b_ml.ml_line_count; | |
6409 } | |
6410 } | |
6411 #endif | |
6412 | |
6413 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
6414 | |
6415 /* | |
6416 * A snapshot of the window sizes, to restore them after closing the help | |
6417 * window. | |
6418 * Only these fields are used: | |
6419 * fr_layout | |
6420 * fr_width | |
6421 * fr_height | |
6422 * fr_next | |
6423 * fr_child | |
6424 * fr_win (only valid for the old curwin, NULL otherwise) | |
6425 */ | |
6426 | |
6427 /* | |
6428 * Create a snapshot of the current frame sizes. | |
6429 */ | |
1906 | 6430 void |
6431 make_snapshot(idx) | |
6432 int idx; | |
7 | 6433 { |
1906 | 6434 clear_snapshot(curtab, idx); |
6435 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); | |
7 | 6436 } |
6437 | |
6438 static void | |
6439 make_snapshot_rec(fr, frp) | |
6440 frame_T *fr; | |
6441 frame_T **frp; | |
6442 { | |
6443 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T)); | |
6444 if (*frp == NULL) | |
6445 return; | |
6446 (*frp)->fr_layout = fr->fr_layout; | |
6447 # ifdef FEAT_VERTSPLIT | |
6448 (*frp)->fr_width = fr->fr_width; | |
6449 # endif | |
6450 (*frp)->fr_height = fr->fr_height; | |
6451 if (fr->fr_next != NULL) | |
6452 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next)); | |
6453 if (fr->fr_child != NULL) | |
6454 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child)); | |
6455 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin) | |
6456 (*frp)->fr_win = curwin; | |
6457 } | |
6458 | |
6459 /* | |
6460 * Remove any existing snapshot. | |
6461 */ | |
6462 static void | |
1906 | 6463 clear_snapshot(tp, idx) |
675 | 6464 tabpage_T *tp; |
1906 | 6465 int idx; |
7 | 6466 { |
1906 | 6467 clear_snapshot_rec(tp->tp_snapshot[idx]); |
6468 tp->tp_snapshot[idx] = NULL; | |
7 | 6469 } |
6470 | |
6471 static void | |
6472 clear_snapshot_rec(fr) | |
6473 frame_T *fr; | |
6474 { | |
6475 if (fr != NULL) | |
6476 { | |
6477 clear_snapshot_rec(fr->fr_next); | |
6478 clear_snapshot_rec(fr->fr_child); | |
6479 vim_free(fr); | |
6480 } | |
6481 } | |
6482 | |
6483 /* | |
6484 * Restore a previously created snapshot, if there is any. | |
6485 * This is only done if the screen size didn't change and the window layout is | |
6486 * still the same. | |
6487 */ | |
1906 | 6488 void |
6489 restore_snapshot(idx, close_curwin) | |
6490 int idx; | |
7 | 6491 int close_curwin; /* closing current window */ |
6492 { | |
6493 win_T *wp; | |
6494 | |
1906 | 6495 if (curtab->tp_snapshot[idx] != NULL |
7 | 6496 # ifdef FEAT_VERTSPLIT |
1906 | 6497 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width |
7 | 6498 # endif |
1906 | 6499 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height |
6500 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) | |
6501 { | |
6502 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); | |
7 | 6503 win_comp_pos(); |
6504 if (wp != NULL && close_curwin) | |
6505 win_goto(wp); | |
6506 redraw_all_later(CLEAR); | |
6507 } | |
1906 | 6508 clear_snapshot(curtab, idx); |
7 | 6509 } |
6510 | |
6511 /* | |
6512 * Check if frames "sn" and "fr" have the same layout, same following frames | |
6513 * and same children. | |
6514 */ | |
6515 static int | |
6516 check_snapshot_rec(sn, fr) | |
6517 frame_T *sn; | |
6518 frame_T *fr; | |
6519 { | |
6520 if (sn->fr_layout != fr->fr_layout | |
6521 || (sn->fr_next == NULL) != (fr->fr_next == NULL) | |
6522 || (sn->fr_child == NULL) != (fr->fr_child == NULL) | |
6523 || (sn->fr_next != NULL | |
6524 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL) | |
6525 || (sn->fr_child != NULL | |
6526 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL)) | |
6527 return FAIL; | |
6528 return OK; | |
6529 } | |
6530 | |
6531 /* | |
6532 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all | |
6533 * following frames and children. | |
6534 * Returns a pointer to the old current window, or NULL. | |
6535 */ | |
6536 static win_T * | |
6537 restore_snapshot_rec(sn, fr) | |
6538 frame_T *sn; | |
6539 frame_T *fr; | |
6540 { | |
6541 win_T *wp = NULL; | |
6542 win_T *wp2; | |
6543 | |
6544 fr->fr_height = sn->fr_height; | |
6545 # ifdef FEAT_VERTSPLIT | |
6546 fr->fr_width = sn->fr_width; | |
6547 # endif | |
6548 if (fr->fr_layout == FR_LEAF) | |
6549 { | |
6550 frame_new_height(fr, fr->fr_height, FALSE, FALSE); | |
6551 # ifdef FEAT_VERTSPLIT | |
779 | 6552 frame_new_width(fr, fr->fr_width, FALSE, FALSE); |
7 | 6553 # endif |
6554 wp = sn->fr_win; | |
6555 } | |
6556 if (sn->fr_next != NULL) | |
6557 { | |
6558 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next); | |
6559 if (wp2 != NULL) | |
6560 wp = wp2; | |
6561 } | |
6562 if (sn->fr_child != NULL) | |
6563 { | |
6564 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child); | |
6565 if (wp2 != NULL) | |
6566 wp = wp2; | |
6567 } | |
6568 return wp; | |
6569 } | |
6570 | |
6571 #endif | |
6572 | |
4429 | 6573 #if defined(FEAT_EVAL) || defined(PROTO) |
6574 /* | |
6575 * Set "win" to be the curwin and "tp" to be the current tab page. | |
6576 * restore_win() MUST be called to undo. | |
6577 * No autocommands will be executed. | |
6578 * Returns FAIL if switching to "win" failed. | |
6579 */ | |
6580 int | |
6581 switch_win(save_curwin, save_curtab, win, tp) | |
6582 win_T **save_curwin; | |
6583 tabpage_T **save_curtab; | |
6584 win_T *win; | |
6585 tabpage_T *tp; | |
6586 { | |
6587 # ifdef FEAT_AUTOCMD | |
6588 block_autocmds(); | |
6589 # endif | |
6590 # ifdef FEAT_WINDOWS | |
6591 *save_curwin = curwin; | |
6592 if (tp != NULL) | |
6593 { | |
6594 *save_curtab = curtab; | |
6595 goto_tabpage_tp(tp, FALSE, FALSE); | |
6596 } | |
6597 if (!win_valid(win)) | |
6598 { | |
6599 # ifdef FEAT_AUTOCMD | |
6600 unblock_autocmds(); | |
6601 # endif | |
6602 return FAIL; | |
6603 } | |
6604 curwin = win; | |
6605 curbuf = curwin->w_buffer; | |
6606 # endif | |
6607 return OK; | |
6608 } | |
6609 | |
6610 /* | |
6611 * Restore current tabpage and window saved by switch_win(), if still valid. | |
6612 */ | |
6613 void | |
6614 restore_win(save_curwin, save_curtab) | |
6615 win_T *save_curwin; | |
6616 tabpage_T *save_curtab; | |
6617 { | |
6618 # ifdef FEAT_WINDOWS | |
6619 if (save_curtab != NULL && valid_tabpage(save_curtab)) | |
6620 goto_tabpage_tp(save_curtab, FALSE, FALSE); | |
6621 if (win_valid(save_curwin)) | |
6622 { | |
6623 curwin = save_curwin; | |
6624 curbuf = curwin->w_buffer; | |
6625 } | |
6626 # endif | |
6627 # ifdef FEAT_AUTOCMD | |
6628 unblock_autocmds(); | |
6629 # endif | |
6630 } | |
6631 | |
6632 /* | |
6633 * Make "buf" the current buffer. restore_buffer() MUST be called to undo. | |
6634 * No autocommands will be executed. Use aucmd_prepbuf() if there are any. | |
6635 */ | |
6636 void | |
6637 switch_buffer(save_curbuf, buf) | |
6638 buf_T *buf; | |
6639 buf_T **save_curbuf; | |
6640 { | |
6641 # ifdef FEAT_AUTOCMD | |
6642 block_autocmds(); | |
6643 # endif | |
6644 *save_curbuf = curbuf; | |
6645 --curbuf->b_nwindows; | |
6646 curbuf = buf; | |
6647 curwin->w_buffer = buf; | |
6648 ++curbuf->b_nwindows; | |
6649 } | |
6650 | |
6651 /* | |
6652 * Restore the current buffer after using switch_buffer(). | |
6653 */ | |
6654 void | |
6655 restore_buffer(save_curbuf) | |
6656 buf_T *save_curbuf; | |
6657 { | |
6658 # ifdef FEAT_AUTOCMD | |
6659 unblock_autocmds(); | |
6660 # endif | |
6661 /* Check for valid buffer, just in case. */ | |
6662 if (buf_valid(save_curbuf)) | |
6663 { | |
6664 --curbuf->b_nwindows; | |
6665 curwin->w_buffer = save_curbuf; | |
6666 curbuf = save_curbuf; | |
6667 ++curbuf->b_nwindows; | |
6668 } | |
6669 } | |
6670 #endif | |
6671 | |
7 | 6672 #if (defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)) || defined(PROTO) |
6673 /* | |
6674 * Return TRUE if there is any vertically split window. | |
6675 */ | |
6676 int | |
6677 win_hasvertsplit() | |
6678 { | |
6679 frame_T *fr; | |
6680 | |
6681 if (topframe->fr_layout == FR_ROW) | |
6682 return TRUE; | |
6683 | |
6684 if (topframe->fr_layout == FR_COL) | |
6685 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next) | |
6686 if (fr->fr_layout == FR_ROW) | |
6687 return TRUE; | |
6688 | |
6689 return FALSE; | |
6690 } | |
6691 #endif | |
1326 | 6692 |
6693 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO) | |
6694 /* | |
6695 * Add match to the match list of window 'wp'. The pattern 'pat' will be | |
1698 | 6696 * highlighted with the group 'grp' with priority 'prio'. |
1326 | 6697 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1). |
6698 * If no particular ID is desired, -1 must be specified for 'id'. | |
6699 * Return ID of added match, -1 on failure. | |
6700 */ | |
6701 int | |
6702 match_add(wp, grp, pat, prio, id) | |
6703 win_T *wp; | |
6704 char_u *grp; | |
6705 char_u *pat; | |
6706 int prio; | |
6707 int id; | |
6708 { | |
6709 matchitem_T *cur; | |
6710 matchitem_T *prev; | |
6711 matchitem_T *m; | |
6712 int hlg_id; | |
1338 | 6713 regprog_T *regprog; |
1326 | 6714 |
6715 if (*grp == NUL || *pat == NUL) | |
6716 return -1; | |
6717 if (id < -1 || id == 0) | |
6718 { | |
6719 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id); | |
6720 return -1; | |
6721 } | |
6722 if (id != -1) | |
6723 { | |
6724 cur = wp->w_match_head; | |
6725 while (cur != NULL) | |
6726 { | |
6727 if (cur->id == id) | |
6728 { | |
6729 EMSGN("E801: ID already taken: %ld", id); | |
6730 return -1; | |
6731 } | |
6732 cur = cur->next; | |
6733 } | |
6734 } | |
1570 | 6735 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0) |
1326 | 6736 { |
6737 EMSG2(_(e_nogroup), grp); | |
6738 return -1; | |
6739 } | |
1338 | 6740 if ((regprog = vim_regcomp(pat, RE_MAGIC)) == NULL) |
1326 | 6741 { |
6742 EMSG2(_(e_invarg2), pat); | |
6743 return -1; | |
6744 } | |
6745 | |
6746 /* Find available match ID. */ | |
6747 while (id == -1) | |
6748 { | |
6749 cur = wp->w_match_head; | |
6750 while (cur != NULL && cur->id != wp->w_next_match_id) | |
6751 cur = cur->next; | |
6752 if (cur == NULL) | |
6753 id = wp->w_next_match_id; | |
6754 wp->w_next_match_id++; | |
6755 } | |
6756 | |
6757 /* Build new match. */ | |
6758 m = (matchitem_T *)alloc(sizeof(matchitem_T)); | |
6759 m->id = id; | |
6760 m->priority = prio; | |
6761 m->pattern = vim_strsave(pat); | |
6762 m->hlg_id = hlg_id; | |
1338 | 6763 m->match.regprog = regprog; |
6764 m->match.rmm_ic = FALSE; | |
6765 m->match.rmm_maxcol = 0; | |
1326 | 6766 |
6767 /* Insert new match. The match list is in ascending order with regard to | |
6768 * the match priorities. */ | |
6769 cur = wp->w_match_head; | |
6770 prev = cur; | |
6771 while (cur != NULL && prio >= cur->priority) | |
6772 { | |
6773 prev = cur; | |
6774 cur = cur->next; | |
6775 } | |
6776 if (cur == prev) | |
6777 wp->w_match_head = m; | |
6778 else | |
6779 prev->next = m; | |
6780 m->next = cur; | |
6781 | |
6782 redraw_later(SOME_VALID); | |
6783 return id; | |
6784 } | |
6785 | |
6786 /* | |
6787 * Delete match with ID 'id' in the match list of window 'wp'. | |
6788 * Print error messages if 'perr' is TRUE. | |
6789 */ | |
6790 int | |
6791 match_delete(wp, id, perr) | |
6792 win_T *wp; | |
6793 int id; | |
6794 int perr; | |
6795 { | |
6796 matchitem_T *cur = wp->w_match_head; | |
6797 matchitem_T *prev = cur; | |
6798 | |
6799 if (id < 1) | |
6800 { | |
6801 if (perr == TRUE) | |
6802 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)", | |
6803 id); | |
6804 return -1; | |
6805 } | |
6806 while (cur != NULL && cur->id != id) | |
6807 { | |
6808 prev = cur; | |
6809 cur = cur->next; | |
6810 } | |
6811 if (cur == NULL) | |
6812 { | |
6813 if (perr == TRUE) | |
6814 EMSGN("E803: ID not found: %ld", id); | |
6815 return -1; | |
6816 } | |
6817 if (cur == prev) | |
6818 wp->w_match_head = cur->next; | |
6819 else | |
6820 prev->next = cur->next; | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4442
diff
changeset
|
6821 vim_regfree(cur->match.regprog); |
1326 | 6822 vim_free(cur->pattern); |
6823 vim_free(cur); | |
6824 redraw_later(SOME_VALID); | |
6825 return 0; | |
6826 } | |
6827 | |
6828 /* | |
6829 * Delete all matches in the match list of window 'wp'. | |
6830 */ | |
6831 void | |
6832 clear_matches(wp) | |
6833 win_T *wp; | |
6834 { | |
6835 matchitem_T *m; | |
6836 | |
6837 while (wp->w_match_head != NULL) | |
6838 { | |
6839 m = wp->w_match_head->next; | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4442
diff
changeset
|
6840 vim_regfree(wp->w_match_head->match.regprog); |
1326 | 6841 vim_free(wp->w_match_head->pattern); |
6842 vim_free(wp->w_match_head); | |
6843 wp->w_match_head = m; | |
6844 } | |
6845 redraw_later(SOME_VALID); | |
6846 } | |
6847 | |
6848 /* | |
6849 * Get match from ID 'id' in window 'wp'. | |
6850 * Return NULL if match not found. | |
6851 */ | |
6852 matchitem_T * | |
6853 get_match(wp, id) | |
6854 win_T *wp; | |
6855 int id; | |
6856 { | |
6857 matchitem_T *cur = wp->w_match_head; | |
6858 | |
6859 while (cur != NULL && cur->id != id) | |
6860 cur = cur->next; | |
6861 return cur; | |
6862 } | |
6863 #endif | |
4379 | 6864 |
6865 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) | |
6866 int | |
4401 | 6867 get_win_number(win_T *wp, win_T *first_win) |
4379 | 6868 { |
6869 int i = 1; | |
6870 win_T *w; | |
6871 | |
4401 | 6872 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w)) |
4379 | 6873 ++i; |
6874 | |
6875 if (w == NULL) | |
6876 return 0; | |
6877 else | |
6878 return i; | |
6879 } | |
4401 | 6880 |
6881 int | |
6882 get_tab_number(tabpage_T *tp) | |
6883 { | |
6884 int i = 1; | |
6885 tabpage_T *t; | |
6886 | |
6887 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next) | |
6888 ++i; | |
6889 | |
6890 if (t == NULL) | |
6891 return 0; | |
6892 else | |
6893 return i; | |
6894 } | |
6895 #endif |