1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
13 # include <fcntl.h> /* for chdir() */
16 static int path_is_url
__ARGS((char_u
*p
));
17 #if defined(FEAT_WINDOWS) || defined(PROTO)
18 static int win_split_ins
__ARGS((int size
, int flags
, win_T
*newwin
, int dir
));
19 static void win_init
__ARGS((win_T
*newp
, win_T
*oldp
));
20 static void frame_comp_pos
__ARGS((frame_T
*topfrp
, int *row
, int *col
));
21 static void frame_setheight
__ARGS((frame_T
*curfrp
, int height
));
23 static void frame_setwidth
__ARGS((frame_T
*curfrp
, int width
));
25 static void win_exchange
__ARGS((long));
26 static void win_rotate
__ARGS((int, int));
27 static void win_totop
__ARGS((int size
, int flags
));
28 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
));
29 static int last_window
__ARGS((void));
30 static win_T
*win_free_mem
__ARGS((win_T
*win
, int *dirp
, tabpage_T
*tp
));
31 static win_T
*winframe_remove
__ARGS((win_T
*win
, int *dirp
, tabpage_T
*tp
));
32 static frame_T
*win_altframe
__ARGS((win_T
*win
, tabpage_T
*tp
));
33 static tabpage_T
*alt_tabpage
__ARGS((void));
34 static win_T
*frame2win
__ARGS((frame_T
*frp
));
35 static int frame_has_win
__ARGS((frame_T
*frp
, win_T
*wp
));
36 static void frame_new_height
__ARGS((frame_T
*topfrp
, int height
, int topfirst
, int wfh
));
37 static int frame_fixed_height
__ARGS((frame_T
*frp
));
39 static int frame_fixed_width
__ARGS((frame_T
*frp
));
40 static void frame_add_statusline
__ARGS((frame_T
*frp
));
41 static void frame_new_width
__ARGS((frame_T
*topfrp
, int width
, int leftfirst
, int wfw
));
42 static void frame_add_vsep
__ARGS((frame_T
*frp
));
43 static int frame_minwidth
__ARGS((frame_T
*topfrp
, win_T
*next_curwin
));
44 static void frame_fix_width
__ARGS((win_T
*wp
));
47 static int win_alloc_firstwin
__ARGS((win_T
*oldwin
));
48 #if defined(FEAT_WINDOWS) || defined(PROTO)
49 static tabpage_T
*alloc_tabpage
__ARGS((void));
50 static int leave_tabpage
__ARGS((buf_T
*new_curbuf
));
51 static void enter_tabpage
__ARGS((tabpage_T
*tp
, buf_T
*old_curbuf
));
52 static void frame_fix_height
__ARGS((win_T
*wp
));
53 static int frame_minheight
__ARGS((frame_T
*topfrp
, win_T
*next_curwin
));
54 static void win_enter_ext
__ARGS((win_T
*wp
, int undo_sync
, int no_curwin
));
55 static void win_free
__ARGS((win_T
*wp
, tabpage_T
*tp
));
56 static void win_append
__ARGS((win_T
*, win_T
*));
57 static void win_remove
__ARGS((win_T
*, tabpage_T
*tp
));
58 static void frame_append
__ARGS((frame_T
*after
, frame_T
*frp
));
59 static void frame_insert
__ARGS((frame_T
*before
, frame_T
*frp
));
60 static void frame_remove
__ARGS((frame_T
*frp
));
62 static void win_new_width
__ARGS((win_T
*wp
, int width
));
63 static void win_goto_ver
__ARGS((int up
, long count
));
64 static void win_goto_hor
__ARGS((int left
, long count
));
66 static void frame_add_height
__ARGS((frame_T
*frp
, int n
));
67 static void last_status_rec
__ARGS((frame_T
*fr
, int statusline
));
69 static void make_snapshot
__ARGS((void));
70 static void make_snapshot_rec
__ARGS((frame_T
*fr
, frame_T
**frp
));
71 static void clear_snapshot
__ARGS((tabpage_T
*tp
));
72 static void clear_snapshot_rec
__ARGS((frame_T
*fr
));
73 static void restore_snapshot
__ARGS((int close_curwin
));
74 static int check_snapshot_rec
__ARGS((frame_T
*sn
, frame_T
*fr
));
75 static win_T
*restore_snapshot_rec
__ARGS((frame_T
*sn
, frame_T
*fr
));
77 #endif /* FEAT_WINDOWS */
79 static win_T
*win_alloc
__ARGS((win_T
*after
));
80 static void win_new_height
__ARGS((win_T
*, int));
82 #define URL_SLASH 1 /* path_is_url() has found "://" */
83 #define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
85 #define NOWIN (win_T *)-1 /* non-existing window */
88 # define ROWS_AVAIL (Rows - p_ch - tabline_height())
90 # define ROWS_AVAIL (Rows - p_ch)
93 #if defined(FEAT_WINDOWS) || defined(PROTO)
95 static char *m_onlyone
= N_("Already only one window");
98 * all CTRL-W window commands are handled here, called from normal_cmd().
101 do_window(nchar
, Prenum
, xchar
)
104 int xchar
; /* extra char from ":wincmd gx" or NUL */
108 #if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
113 int type
= FIND_DEFINE
;
124 # define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
126 # define CHECK_CMDWIN
131 /* split current window in two parts, horizontally */
137 reset_VIsual_and_resel(); /* stop Visual mode */
140 /* When splitting the quickfix window open a new buffer in it,
141 * don't replicate the quickfix buffer. */
142 if (bt_quickfix(curbuf
))
146 need_mouse_correct
= TRUE
;
148 win_split((int)Prenum
, 0);
151 #ifdef FEAT_VERTSPLIT
152 /* split current window in two parts, vertically */
157 reset_VIsual_and_resel(); /* stop Visual mode */
160 need_mouse_correct
= TRUE
;
162 win_split((int)Prenum
, WSP_VERT
);
166 /* split current window and edit alternate file */
171 reset_VIsual_and_resel(); /* stop Visual mode */
173 STRCPY(cbuf
, "split #");
175 sprintf((char *)cbuf
+ 7, "%ld", Prenum
);
176 do_cmdline_cmd(cbuf
);
179 /* open new window */
184 reset_VIsual_and_resel(); /* stop Visual mode */
190 sprintf((char *)cbuf
, "%ld", Prenum
); /* window height */
194 do_cmdline_cmd(cbuf
);
197 /* quit current window */
201 reset_VIsual_and_resel(); /* stop Visual mode */
203 do_cmdline_cmd((char_u
*)"quit");
206 /* close current window */
210 reset_VIsual_and_resel(); /* stop Visual mode */
212 do_cmdline_cmd((char_u
*)"close");
215 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
216 /* close preview window */
221 reset_VIsual_and_resel(); /* stop Visual mode */
223 do_cmdline_cmd((char_u
*)"pclose");
226 /* cursor to preview window */
228 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
232 EMSG(_("E441: There is no preview window"));
238 /* close all but current window */
243 reset_VIsual_and_resel(); /* stop Visual mode */
245 do_cmdline_cmd((char_u
*)"only");
248 /* cursor to next window with wrap around */
251 /* cursor to previous window with wrap around */
254 if (lastwin
== firstwin
&& Prenum
!= 1) /* just one window */
258 if (Prenum
) /* go to specified window */
260 for (wp
= firstwin
; --Prenum
> 0; )
262 if (wp
->w_next
== NULL
)
270 if (nchar
== 'W') /* go to previous window */
274 wp
= lastwin
; /* wrap around */
276 else /* go to next window */
280 wp
= firstwin
; /* wrap around */
287 /* cursor to window below */
292 #ifdef FEAT_VERTSPLIT
293 win_goto_ver(FALSE
, Prenum1
);
295 for (wp
= curwin
; wp
->w_next
!= NULL
&& Prenum1
-- > 0;
302 /* cursor to window above */
307 #ifdef FEAT_VERTSPLIT
308 win_goto_ver(TRUE
, Prenum1
);
310 for (wp
= curwin
; wp
->w_prev
!= NULL
&& Prenum1
-- > 0;
317 #ifdef FEAT_VERTSPLIT
318 /* cursor to left window */
324 win_goto_hor(TRUE
, Prenum1
);
327 /* cursor to right window */
332 win_goto_hor(FALSE
, Prenum1
);
336 /* move window to new tab page */
338 if (firstwin
== lastwin
)
342 tabpage_T
*oldtab
= curtab
;
345 /* First create a new tab with the window, then go back to
346 * the old tab and close the window there. */
348 if (win_new_tabpage((int)Prenum
) == OK
349 && valid_tabpage(oldtab
))
352 goto_tabpage_tp(oldtab
);
354 win_close(curwin
, FALSE
);
355 if (valid_tabpage(newtab
))
356 goto_tabpage_tp(newtab
);
361 /* cursor to top-left window */
367 /* cursor to bottom-right window */
373 /* cursor to last accessed (previous) window */
382 /* exchange current and next window */
386 win_exchange(Prenum
);
389 /* rotate windows downwards */
394 reset_VIsual_and_resel(); /* stop Visual mode */
396 win_rotate(FALSE
, (int)Prenum1
); /* downwards */
399 /* rotate windows upwards */
403 reset_VIsual_and_resel(); /* stop Visual mode */
405 win_rotate(TRUE
, (int)Prenum1
); /* upwards */
408 /* move window to the very top/bottom/left/right */
411 #ifdef FEAT_VERTSPLIT
416 win_totop((int)Prenum
,
417 ((nchar
== 'H' || nchar
== 'L') ? WSP_VERT
: 0)
418 | ((nchar
== 'H' || nchar
== 'K') ? WSP_TOP
: WSP_BOT
));
421 /* make all windows the same height */
424 need_mouse_correct
= TRUE
;
426 win_equal(NULL
, FALSE
, 'b');
429 /* increase current window height */
432 need_mouse_correct
= TRUE
;
434 win_setheight(curwin
->w_height
+ (int)Prenum1
);
437 /* decrease current window height */
440 need_mouse_correct
= TRUE
;
442 win_setheight(curwin
->w_height
- (int)Prenum1
);
445 /* set current window height */
449 need_mouse_correct
= TRUE
;
451 win_setheight(Prenum
? (int)Prenum
: 9999);
454 #ifdef FEAT_VERTSPLIT
455 /* increase current window width */
458 need_mouse_correct
= TRUE
;
460 win_setwidth(curwin
->w_width
+ (int)Prenum1
);
463 /* decrease current window width */
466 need_mouse_correct
= TRUE
;
468 win_setwidth(curwin
->w_width
- (int)Prenum1
);
471 /* set current window width */
474 need_mouse_correct
= TRUE
;
476 win_setwidth(Prenum
!= 0 ? (int)Prenum
: 9999);
480 /* jump to tag and split window if tag exists (in preview window) */
481 #if defined(FEAT_QUICKFIX)
485 g_do_tagpreview
= Prenum
;
487 g_do_tagpreview
= p_pvh
;
494 reset_VIsual_and_resel(); /* stop Visual mode */
497 postponed_split
= Prenum
;
499 postponed_split
= -1;
501 /* Execute the command right here, required when
502 * "wincmd ]" was used in a function. */
503 do_nv_ident(Ctrl_RSB
, NUL
);
506 #ifdef FEAT_SEARCHPATH
507 /* edit file name under cursor in a new window */
514 ptr
= grab_file_name(Prenum1
, &lnum
);
518 need_mouse_correct
= TRUE
;
521 if (win_split(0, 0) == OK
)
523 # ifdef FEAT_SCROLLBIND
524 curwin
->w_p_scb
= FALSE
;
526 (void)do_ecmd(0, ptr
, NULL
, NULL
, ECMD_LASTL
, ECMD_HIDE
);
527 if (nchar
== 'F' && lnum
>= 0)
529 curwin
->w_cursor
.lnum
= lnum
;
531 beginline(BL_SOL
| BL_FIX
);
540 /* Go to the first occurrence of the identifier under cursor along path in a
543 case 'i': /* Go to any match */
547 case 'd': /* Go to definition, using 'define' */
550 if ((len
= find_ident_under_cursor(&ptr
, FIND_IDENT
)) == 0)
552 find_pattern_in_path(ptr
, 0, len
, TRUE
,
553 Prenum
== 0 ? TRUE
: FALSE
, type
,
554 Prenum1
, ACTION_SPLIT
, (linenr_T
)1, (linenr_T
)MAXLNUM
);
555 curwin
->w_set_curswant
= TRUE
;
561 #if defined(FEAT_QUICKFIX)
563 * In a quickfix window a <CR> jumps to the error under the
564 * cursor in a new window.
566 if (bt_quickfix(curbuf
))
568 sprintf((char *)cbuf
, "split +%ld%s",
569 (long)curwin
->w_cursor
.lnum
,
570 (curwin
->w_llist_ref
== NULL
) ? "cc" : "ll");
571 do_cmdline_cmd(cbuf
);
577 /* CTRL-W g extended commands */
581 #ifdef USE_ON_FLY_SCROLL
582 dont_scroll
= TRUE
; /* disallow scrolling here */
585 ++allow_keys
; /* no mapping for xchar, but allow key codes */
587 xchar
= safe_vgetc();
589 LANGMAP_ADJUST(xchar
, TRUE
);
593 #ifdef FEAT_CMDL_INFO
594 (void)add_to_showcmd(xchar
);
598 #if defined(FEAT_QUICKFIX)
602 g_do_tagpreview
= Prenum
;
604 g_do_tagpreview
= p_pvh
;
610 reset_VIsual_and_resel(); /* stop Visual mode */
613 postponed_split
= Prenum
;
615 postponed_split
= -1;
617 /* Execute the command right here, required when
618 * "wincmd g}" was used in a function. */
619 do_nv_ident('g', xchar
);
622 #ifdef FEAT_SEARCHPATH
623 case 'f': /* CTRL-W gf: "gf" in a new tab page */
624 case 'F': /* CTRL-W gF: "gF" in a new tab page */
635 default: beep_flush();
641 * split the current window, implements CTRL-W s and :split
643 * "size" is the height or width for the new window, 0 to use half of current
647 * WSP_ROOM: require enough room for new window
648 * WSP_VERT: vertical split.
649 * WSP_TOP: open window at the top-left of the shell (help window).
650 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
651 * WSP_HELP: creating the help window, keep layout snapshot
653 * return FAIL for failure, OK otherwise
656 win_split(size
, flags
)
660 /* When the ":tab" modifier was used open a new tab page instead. */
661 if (may_open_tabpage() == OK
)
664 /* Add flags from ":vertical", ":topleft" and ":botright". */
665 flags
|= cmdmod
.split
;
666 if ((flags
& WSP_TOP
) && (flags
& WSP_BOT
))
668 EMSG(_("E442: Can't split topleft and botright at the same time"));
672 /* When creating the help window make a snapshot of the window layout.
673 * Otherwise clear the snapshot, it's now invalid. */
674 if (flags
& WSP_HELP
)
677 clear_snapshot(curtab
);
679 return win_split_ins(size
, flags
, NULL
, 0);
683 * When "newwin" is NULL: split the current window in two.
684 * When "newwin" is not NULL: insert this window at the far
685 * top/left/right/bottom.
686 * return FAIL for failure, OK otherwise
689 win_split_ins(size
, flags
, newwin
, dir
)
700 int do_equal
= FALSE
;
703 int oldwin_height
= 0;
705 frame_T
*frp
, *curfrp
;
710 else if (flags
& WSP_BOT
)
715 /* add a status line when p_ls == 1 and splitting the first window */
716 if (lastwin
== firstwin
&& p_ls
== 1 && oldwin
->w_status_height
== 0)
718 if (oldwin
->w_height
<= p_wmh
&& newwin
== NULL
)
723 need_status
= STATUS_HEIGHT
;
727 /* May be needed for the scrollbars that are going to change. */
732 #ifdef FEAT_VERTSPLIT
733 if (flags
& WSP_VERT
)
736 do_equal
= (p_ea
&& new_size
== 0 && *p_ead
!= 'v');
739 * Check if we are able to split the current window and compute its
743 if (flags
& WSP_ROOM
)
744 needed
+= p_wiw
- p_wmw
;
745 if (p_ea
|| (flags
& (WSP_BOT
| WSP_TOP
)))
747 available
= topframe
->fr_width
;
748 needed
+= frame_minwidth(topframe
, NULL
);
751 available
= oldwin
->w_width
;
752 if (available
< needed
&& newwin
== NULL
)
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
)
764 /* if it doesn't fit in the current window, need win_equal() */
765 if (oldwin
->w_width
- new_size
- 1 < p_wmw
)
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. */
772 win_setwidth_win(oldwin
->w_width
+ new_size
, oldwin
);
778 do_equal
= (p_ea
&& new_size
== 0
779 #ifdef FEAT_VERTSPLIT
785 * Check if we are able to split the current window and compute its
788 needed
= p_wmh
+ STATUS_HEIGHT
+ need_status
;
789 if (flags
& WSP_ROOM
)
790 needed
+= p_wh
- p_wmh
;
791 if (p_ea
|| (flags
& (WSP_BOT
| WSP_TOP
)))
793 available
= topframe
->fr_height
;
794 needed
+= frame_minheight(topframe
, NULL
);
798 available
= oldwin
->w_height
;
801 if (available
< needed
&& newwin
== NULL
)
806 oldwin_height
= oldwin
->w_height
;
809 oldwin
->w_status_height
= STATUS_HEIGHT
;
810 oldwin_height
-= STATUS_HEIGHT
;
813 new_size
= oldwin_height
/ 2;
815 if (new_size
> oldwin_height
- p_wmh
- STATUS_HEIGHT
)
816 new_size
= oldwin_height
- p_wmh
- STATUS_HEIGHT
;
817 if (new_size
< p_wmh
)
820 /* if it doesn't fit in the current window, need win_equal() */
821 if (oldwin_height
- new_size
- STATUS_HEIGHT
< p_wmh
)
824 /* We don't like to take lines for the new window from a
825 * 'winfixheight' window. Take them from a window above or below
826 * instead, if possible. */
829 win_setheight_win(oldwin
->w_height
+ new_size
+ STATUS_HEIGHT
,
831 oldwin_height
= oldwin
->w_height
;
833 oldwin_height
-= STATUS_HEIGHT
;
838 * allocate new window structure and link it in the window list
840 if ((flags
& WSP_TOP
) == 0
841 && ((flags
& WSP_BOT
)
842 || (flags
& WSP_BELOW
)
843 || (!(flags
& WSP_ABOVE
)
845 #ifdef FEAT_VERTSPLIT
846 (flags
& WSP_VERT
) ? p_spr
:
850 /* new window below/right of current one */
852 wp
= win_alloc(oldwin
);
854 win_append(oldwin
, wp
);
859 wp
= win_alloc(oldwin
->w_prev
);
861 win_append(oldwin
->w_prev
, wp
);
869 /* make the contents of the new window the same as the current one */
870 win_init(wp
, curwin
);
874 * Reorganise the tree of frames to insert the new window.
876 if (flags
& (WSP_TOP
| WSP_BOT
))
878 #ifdef FEAT_VERTSPLIT
879 if ((topframe
->fr_layout
== FR_COL
&& (flags
& WSP_VERT
) == 0)
880 || (topframe
->fr_layout
== FR_ROW
&& (flags
& WSP_VERT
) != 0))
882 if (topframe
->fr_layout
== FR_COL
)
885 curfrp
= topframe
->fr_child
;
887 while (curfrp
->fr_next
!= NULL
)
888 curfrp
= curfrp
->fr_next
;
892 before
= (flags
& WSP_TOP
);
896 curfrp
= oldwin
->w_frame
;
897 if (flags
& WSP_BELOW
)
899 else if (flags
& WSP_ABOVE
)
902 #ifdef FEAT_VERTSPLIT
903 if (flags
& WSP_VERT
)
909 if (curfrp
->fr_parent
== NULL
|| curfrp
->fr_parent
->fr_layout
!= layout
)
911 /* Need to create a new frame in the tree to make a branch. */
912 frp
= (frame_T
*)alloc_clear((unsigned)sizeof(frame_T
));
914 curfrp
->fr_layout
= layout
;
915 frp
->fr_parent
= curfrp
;
918 curfrp
->fr_child
= frp
;
919 curfrp
->fr_win
= NULL
;
921 if (frp
->fr_win
!= NULL
)
922 oldwin
->w_frame
= frp
;
924 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
925 frp
->fr_parent
= curfrp
;
930 /* Create a frame for the new window. */
931 frp
= (frame_T
*)alloc_clear((unsigned)sizeof(frame_T
));
932 frp
->fr_layout
= FR_LEAF
;
937 frp
= newwin
->w_frame
;
938 frp
->fr_parent
= curfrp
->fr_parent
;
940 /* Insert the new frame at the right place in the frame list. */
942 frame_insert(curfrp
, frp
);
944 frame_append(curfrp
, frp
);
946 #ifdef FEAT_VERTSPLIT
947 if (flags
& WSP_VERT
)
949 wp
->w_p_scr
= curwin
->w_p_scr
;
953 oldwin
->w_status_height
= need_status
;
955 if (flags
& (WSP_TOP
| WSP_BOT
))
957 /* set height and row of new window to full height */
958 wp
->w_winrow
= tabline_height();
959 wp
->w_height
= curfrp
->fr_height
- (p_ls
> 0);
960 wp
->w_status_height
= (p_ls
> 0);
964 /* height and row of new window is same as current window */
965 wp
->w_winrow
= oldwin
->w_winrow
;
966 wp
->w_height
= oldwin
->w_height
;
967 wp
->w_status_height
= oldwin
->w_status_height
;
969 frp
->fr_height
= curfrp
->fr_height
;
971 /* "new_size" of the current window goes to the new window, use
972 * one column for the vertical separator */
973 wp
->w_width
= new_size
;
975 wp
->w_vsep_width
= 1;
978 wp
->w_vsep_width
= oldwin
->w_vsep_width
;
979 oldwin
->w_vsep_width
= 1;
981 if (flags
& (WSP_TOP
| WSP_BOT
))
984 frame_add_vsep(curfrp
);
985 /* Set width of neighbor frame */
986 frame_new_width(curfrp
, curfrp
->fr_width
987 - (new_size
+ ((flags
& WSP_TOP
) != 0)), flags
& WSP_TOP
,
991 win_new_width(oldwin
, oldwin
->w_width
- (new_size
+ 1));
992 if (before
) /* new window left of current one */
994 wp
->w_wincol
= oldwin
->w_wincol
;
995 oldwin
->w_wincol
+= new_size
+ 1;
997 else /* new window right of current one */
998 wp
->w_wincol
= oldwin
->w_wincol
+ oldwin
->w_width
+ 1;
999 frame_fix_width(oldwin
);
1000 frame_fix_width(wp
);
1005 /* width and column of new window is same as current window */
1006 #ifdef FEAT_VERTSPLIT
1007 if (flags
& (WSP_TOP
| WSP_BOT
))
1010 wp
->w_width
= Columns
;
1011 wp
->w_vsep_width
= 0;
1015 wp
->w_wincol
= oldwin
->w_wincol
;
1016 wp
->w_width
= oldwin
->w_width
;
1017 wp
->w_vsep_width
= oldwin
->w_vsep_width
;
1019 frp
->fr_width
= curfrp
->fr_width
;
1022 /* "new_size" of the current window goes to the new window, use
1023 * one row for the status line */
1024 win_new_height(wp
, new_size
);
1025 if (flags
& (WSP_TOP
| WSP_BOT
))
1026 frame_new_height(curfrp
, curfrp
->fr_height
1027 - (new_size
+ STATUS_HEIGHT
), flags
& WSP_TOP
, FALSE
);
1029 win_new_height(oldwin
, oldwin_height
- (new_size
+ STATUS_HEIGHT
));
1030 if (before
) /* new window above current one */
1032 wp
->w_winrow
= oldwin
->w_winrow
;
1033 wp
->w_status_height
= STATUS_HEIGHT
;
1034 oldwin
->w_winrow
+= wp
->w_height
+ STATUS_HEIGHT
;
1036 else /* new window below current one */
1038 wp
->w_winrow
= oldwin
->w_winrow
+ oldwin
->w_height
+ STATUS_HEIGHT
;
1039 wp
->w_status_height
= oldwin
->w_status_height
;
1040 oldwin
->w_status_height
= STATUS_HEIGHT
;
1042 #ifdef FEAT_VERTSPLIT
1043 if (flags
& WSP_BOT
)
1044 frame_add_statusline(curfrp
);
1046 frame_fix_height(wp
);
1047 frame_fix_height(oldwin
);
1050 if (flags
& (WSP_TOP
| WSP_BOT
))
1051 (void)win_comp_pos();
1054 * Both windows need redrawing
1056 redraw_win_later(wp
, NOT_VALID
);
1057 wp
->w_redr_status
= TRUE
;
1058 redraw_win_later(oldwin
, NOT_VALID
);
1059 oldwin
->w_redr_status
= TRUE
;
1065 msg_clr_eos_force(); /* Old command/ruler may still be there */
1068 msg_col
= 0; /* put position back at start of line */
1072 * make the new window the current window and redraw
1074 if (do_equal
|| dir
!= 0)
1076 #ifdef FEAT_VERTSPLIT
1077 (flags
& WSP_VERT
) ? (dir
== 'v' ? 'b' : 'h')
1078 : dir
== 'h' ? 'b' :
1082 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1083 * size was given. */
1084 #ifdef FEAT_VERTSPLIT
1085 if (flags
& WSP_VERT
)
1092 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1094 gui_init_which_components(NULL
);
1104 win_enter(wp
, FALSE
);
1105 #ifdef FEAT_VERTSPLIT
1106 if (flags
& WSP_VERT
)
1116 * Initialize window "newp" from window "oldp".
1117 * Used when splitting a window and when creating a new tab page.
1118 * The windows will both edit the same buffer.
1121 win_init(newp
, oldp
)
1127 newp
->w_buffer
= oldp
->w_buffer
;
1128 oldp
->w_buffer
->b_nwindows
++;
1129 newp
->w_cursor
= oldp
->w_cursor
;
1131 newp
->w_curswant
= oldp
->w_curswant
;
1132 newp
->w_set_curswant
= oldp
->w_set_curswant
;
1133 newp
->w_topline
= oldp
->w_topline
;
1135 newp
->w_topfill
= oldp
->w_topfill
;
1137 newp
->w_leftcol
= oldp
->w_leftcol
;
1138 newp
->w_pcmark
= oldp
->w_pcmark
;
1139 newp
->w_prev_pcmark
= oldp
->w_prev_pcmark
;
1140 newp
->w_alt_fnum
= oldp
->w_alt_fnum
;
1141 newp
->w_wrow
= oldp
->w_wrow
;
1142 newp
->w_fraction
= oldp
->w_fraction
;
1143 newp
->w_prev_fraction_row
= oldp
->w_prev_fraction_row
;
1144 #ifdef FEAT_JUMPLIST
1145 copy_jumplist(oldp
, newp
);
1147 #ifdef FEAT_QUICKFIX
1148 copy_loclist(oldp
, newp
);
1150 if (oldp
->w_localdir
!= NULL
)
1151 newp
->w_localdir
= vim_strsave(oldp
->w_localdir
);
1153 /* Use the same argument list. */
1154 newp
->w_alist
= oldp
->w_alist
;
1155 ++newp
->w_alist
->al_refcount
;
1156 newp
->w_arg_idx
= oldp
->w_arg_idx
;
1159 * copy tagstack and options from existing window
1161 for (i
= 0; i
< oldp
->w_tagstacklen
; i
++)
1163 newp
->w_tagstack
[i
] = oldp
->w_tagstack
[i
];
1164 if (newp
->w_tagstack
[i
].tagname
!= NULL
)
1165 newp
->w_tagstack
[i
].tagname
=
1166 vim_strsave(newp
->w_tagstack
[i
].tagname
);
1168 newp
->w_tagstackidx
= oldp
->w_tagstackidx
;
1169 newp
->w_tagstacklen
= oldp
->w_tagstacklen
;
1170 win_copy_options(oldp
, newp
);
1171 # ifdef FEAT_FOLDING
1172 copyFoldingState(oldp
, newp
);
1176 #endif /* FEAT_WINDOWS */
1178 #if defined(FEAT_WINDOWS) || defined(PROTO)
1180 * Check if "win" is a pointer to an existing window.
1190 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
1197 * Return the number of windows.
1205 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
1211 * Make "count" windows on the screen.
1212 * Return actual number of windows on the screen.
1213 * Must be called when there is just one window, filling the whole screen
1214 * (excluding the command line).
1218 make_windows(count
, vertical
)
1220 int vertical
; /* split windows vertically if TRUE */
1225 #ifdef FEAT_VERTSPLIT
1228 /* Each windows needs at least 'winminwidth' lines and a separator
1230 maxcount
= (curwin
->w_width
+ curwin
->w_vsep_width
1231 - (p_wiw
- p_wmw
)) / (p_wmw
+ 1);
1236 /* Each window needs at least 'winminheight' lines and a status line. */
1237 maxcount
= (curwin
->w_height
+ curwin
->w_status_height
1238 - (p_wh
- p_wmh
)) / (p_wmh
+ STATUS_HEIGHT
);
1243 if (count
> maxcount
)
1247 * add status line now, otherwise first window will be too big
1254 * Don't execute autocommands while creating the windows. Must do that
1255 * when putting the buffers in the windows.
1260 /* todo is number of windows left to create */
1261 for (todo
= count
- 1; todo
> 0; --todo
)
1262 #ifdef FEAT_VERTSPLIT
1265 if (win_split(curwin
->w_width
- (curwin
->w_width
- todo
)
1266 / (todo
+ 1) - 1, WSP_VERT
| WSP_ABOVE
) == FAIL
)
1272 if (win_split(curwin
->w_height
- (curwin
->w_height
- todo
1273 * STATUS_HEIGHT
) / (todo
+ 1)
1274 - STATUS_HEIGHT
, WSP_ABOVE
) == FAIL
)
1282 /* return actual number of windows */
1283 return (count
- todo
);
1287 * Exchange current and next window
1290 win_exchange(Prenum
)
1299 if (lastwin
== firstwin
) /* just one window */
1306 need_mouse_correct
= TRUE
;
1310 * find window to exchange with
1314 frp
= curwin
->w_frame
->fr_parent
->fr_child
;
1315 while (frp
!= NULL
&& --Prenum
> 0)
1318 else if (curwin
->w_frame
->fr_next
!= NULL
) /* Swap with next */
1319 frp
= curwin
->w_frame
->fr_next
;
1320 else /* Swap last window in row/col with previous */
1321 frp
= curwin
->w_frame
->fr_prev
;
1323 /* We can only exchange a window with another window, not with a frame
1324 * containing windows. */
1325 if (frp
== NULL
|| frp
->fr_win
== NULL
|| frp
->fr_win
== curwin
)
1330 * 1. remove curwin from the list. Remember after which window it was in wp2
1331 * 2. insert curwin before wp in the list
1333 * 3. remove wp from the list
1334 * 4. insert wp after wp2
1335 * 5. exchange the status line height and vsep width.
1337 wp2
= curwin
->w_prev
;
1338 frp2
= curwin
->w_frame
->fr_prev
;
1339 if (wp
->w_prev
!= curwin
)
1341 win_remove(curwin
, NULL
);
1342 frame_remove(curwin
->w_frame
);
1343 win_append(wp
->w_prev
, curwin
);
1344 frame_insert(frp
, curwin
->w_frame
);
1348 win_remove(wp
, NULL
);
1349 frame_remove(wp
->w_frame
);
1350 win_append(wp2
, wp
);
1352 frame_insert(wp
->w_frame
->fr_parent
->fr_child
, wp
->w_frame
);
1354 frame_append(frp2
, wp
->w_frame
);
1356 temp
= curwin
->w_status_height
;
1357 curwin
->w_status_height
= wp
->w_status_height
;
1358 wp
->w_status_height
= temp
;
1359 #ifdef FEAT_VERTSPLIT
1360 temp
= curwin
->w_vsep_width
;
1361 curwin
->w_vsep_width
= wp
->w_vsep_width
;
1362 wp
->w_vsep_width
= temp
;
1364 /* If the windows are not in the same frame, exchange the sizes to avoid
1365 * messing up the window layout. Otherwise fix the frame sizes. */
1366 if (curwin
->w_frame
->fr_parent
!= wp
->w_frame
->fr_parent
)
1368 temp
= curwin
->w_height
;
1369 curwin
->w_height
= wp
->w_height
;
1370 wp
->w_height
= temp
;
1371 temp
= curwin
->w_width
;
1372 curwin
->w_width
= wp
->w_width
;
1377 frame_fix_height(curwin
);
1378 frame_fix_height(wp
);
1379 frame_fix_width(curwin
);
1380 frame_fix_width(wp
);
1384 (void)win_comp_pos(); /* recompute window positions */
1386 win_enter(wp
, TRUE
);
1387 redraw_later(CLEAR
);
1391 * rotate windows: if upwards TRUE the second window becomes the first one
1392 * if upwards FALSE the first window becomes the second one
1395 win_rotate(upwards
, count
)
1404 if (firstwin
== lastwin
) /* nothing to do */
1411 need_mouse_correct
= TRUE
;
1414 #ifdef FEAT_VERTSPLIT
1415 /* Check if all frames in this row/col have one window. */
1416 for (frp
= curwin
->w_frame
->fr_parent
->fr_child
; frp
!= NULL
;
1418 if (frp
->fr_win
== NULL
)
1420 EMSG(_("E443: Cannot rotate when another window is split"));
1427 if (upwards
) /* first window becomes last window */
1429 /* remove first window/frame from the list */
1430 frp
= curwin
->w_frame
->fr_parent
->fr_child
;
1432 win_remove(wp1
, NULL
);
1435 /* find last frame and append removed window/frame after it */
1436 for ( ; frp
->fr_next
!= NULL
; frp
= frp
->fr_next
)
1438 win_append(frp
->fr_win
, wp1
);
1439 frame_append(frp
, wp1
->w_frame
);
1441 wp2
= frp
->fr_win
; /* previously last window */
1443 else /* last window becomes first window */
1445 /* find last window/frame in the list and remove it */
1446 for (frp
= curwin
->w_frame
; frp
->fr_next
!= NULL
;
1450 wp2
= wp1
->w_prev
; /* will become last window */
1451 win_remove(wp1
, NULL
);
1454 /* append the removed window/frame before the first in the list */
1455 win_append(frp
->fr_parent
->fr_child
->fr_win
->w_prev
, wp1
);
1456 frame_insert(frp
->fr_parent
->fr_child
, frp
);
1459 /* exchange status height and vsep width of old and new last window */
1460 n
= wp2
->w_status_height
;
1461 wp2
->w_status_height
= wp1
->w_status_height
;
1462 wp1
->w_status_height
= n
;
1463 frame_fix_height(wp1
);
1464 frame_fix_height(wp2
);
1465 #ifdef FEAT_VERTSPLIT
1466 n
= wp2
->w_vsep_width
;
1467 wp2
->w_vsep_width
= wp1
->w_vsep_width
;
1468 wp1
->w_vsep_width
= n
;
1469 frame_fix_width(wp1
);
1470 frame_fix_width(wp2
);
1473 /* recompute w_winrow and w_wincol for all windows */
1474 (void)win_comp_pos();
1477 redraw_later(CLEAR
);
1481 * Move the current window to the very top/bottom/left/right of the screen.
1484 win_totop(size
, flags
)
1489 int height
= curwin
->w_height
;
1491 if (lastwin
== firstwin
)
1497 /* Remove the window and frame from the tree of frames. */
1498 (void)winframe_remove(curwin
, &dir
, NULL
);
1499 win_remove(curwin
, NULL
);
1500 last_status(FALSE
); /* may need to remove last status line */
1501 (void)win_comp_pos(); /* recompute window positions */
1503 /* Split a window on the desired side and put the window there. */
1504 (void)win_split_ins(size
, flags
, curwin
, dir
);
1505 if (!(flags
& WSP_VERT
))
1507 win_setheight(height
);
1509 win_equal(curwin
, TRUE
, 'v');
1512 #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
1513 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1514 * scrollbars. Have to update them anyway. */
1518 gui_init_which_components(NULL
);
1519 gui_update_scrollbars(TRUE
);
1521 need_mouse_correct
= TRUE
;
1527 * Move window "win1" to below/right of "win2" and make "win1" the current
1528 * window. Only works within the same frame!
1531 win_move_after(win1
, win2
)
1536 /* check if the arguments are reasonable */
1540 /* check if there is something to do */
1541 if (win2
->w_next
!= win1
)
1543 /* may need move the status line/vertical separator of the last window
1545 if (win1
== lastwin
)
1547 height
= win1
->w_prev
->w_status_height
;
1548 win1
->w_prev
->w_status_height
= win1
->w_status_height
;
1549 win1
->w_status_height
= height
;
1550 #ifdef FEAT_VERTSPLIT
1551 if (win1
->w_prev
->w_vsep_width
== 1)
1553 /* Remove the vertical separator from the last-but-one window,
1554 * add it to the last window. Adjust the frame widths. */
1555 win1
->w_prev
->w_vsep_width
= 0;
1556 win1
->w_prev
->w_frame
->fr_width
-= 1;
1557 win1
->w_vsep_width
= 1;
1558 win1
->w_frame
->fr_width
+= 1;
1562 else if (win2
== lastwin
)
1564 height
= win1
->w_status_height
;
1565 win1
->w_status_height
= win2
->w_status_height
;
1566 win2
->w_status_height
= height
;
1567 #ifdef FEAT_VERTSPLIT
1568 if (win1
->w_vsep_width
== 1)
1570 /* Remove the vertical separator from win1, add it to the last
1571 * window, win2. Adjust the frame widths. */
1572 win2
->w_vsep_width
= 1;
1573 win2
->w_frame
->fr_width
+= 1;
1574 win1
->w_vsep_width
= 0;
1575 win1
->w_frame
->fr_width
-= 1;
1579 win_remove(win1
, NULL
);
1580 frame_remove(win1
->w_frame
);
1581 win_append(win2
, win1
);
1582 frame_append(win2
->w_frame
, win1
->w_frame
);
1584 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1585 redraw_later(NOT_VALID
);
1587 win_enter(win1
, FALSE
);
1591 * Make all windows the same height.
1592 * 'next_curwin' will soon be the current window, make sure it has enough
1596 win_equal(next_curwin
, current
, dir
)
1597 win_T
*next_curwin
; /* pointer to current window to be or NULL */
1598 int current
; /* do only frame with current window */
1599 int dir
; /* 'v' for vertically, 'h' for horizontally,
1600 'b' for both, 0 for using p_ead */
1603 #ifdef FEAT_VERTSPLIT
1608 win_equal_rec(next_curwin
== NULL
? curwin
: next_curwin
, current
,
1609 topframe
, dir
, 0, tabline_height(),
1610 (int)Columns
, topframe
->fr_height
);
1614 * Set a frame to a new position and height, spreading the available room
1615 * equally over contained frames.
1616 * The window "next_curwin" (if not NULL) should at least get the size from
1617 * 'winheight' and 'winwidth' if possible.
1620 win_equal_rec(next_curwin
, current
, topfr
, dir
, col
, row
, width
, height
)
1621 win_T
*next_curwin
; /* pointer to current window to be or NULL */
1622 int current
; /* do only frame with current window */
1623 frame_T
*topfr
; /* frame to set size off */
1624 int dir
; /* 'v', 'h' or 'b', see win_equal() */
1625 int col
; /* horizontal position for frame */
1626 int row
; /* vertical position for frame */
1627 int width
; /* new width of frame */
1628 int height
; /* new height of frame */
1632 int wincount
, totwincount
= 0;
1634 int next_curwin_size
= 0;
1637 int has_next_curwin
= 0;
1640 if (topfr
->fr_layout
== FR_LEAF
)
1642 /* Set the width/height of this frame.
1643 * Redraw when size or position changes */
1644 if (topfr
->fr_height
!= height
|| topfr
->fr_win
->w_winrow
!= row
1645 #ifdef FEAT_VERTSPLIT
1646 || topfr
->fr_width
!= width
|| topfr
->fr_win
->w_wincol
!= col
1650 topfr
->fr_win
->w_winrow
= row
;
1651 frame_new_height(topfr
, height
, FALSE
, FALSE
);
1652 #ifdef FEAT_VERTSPLIT
1653 topfr
->fr_win
->w_wincol
= col
;
1654 frame_new_width(topfr
, width
, FALSE
, FALSE
);
1656 redraw_all_later(CLEAR
);
1659 #ifdef FEAT_VERTSPLIT
1660 else if (topfr
->fr_layout
== FR_ROW
)
1662 topfr
->fr_width
= width
;
1663 topfr
->fr_height
= height
;
1665 if (dir
!= 'v') /* equalize frame widths */
1667 /* Compute the maximum number of windows horizontally in this
1669 n
= frame_minwidth(topfr
, NOWIN
);
1670 /* add one for the rightmost window, it doesn't have a separator */
1671 if (col
+ width
== Columns
)
1675 totwincount
= (n
+ extra_sep
) / (p_wmw
+ 1);
1676 has_next_curwin
= frame_has_win(topfr
, next_curwin
);
1679 * Compute width for "next_curwin" window and room available for
1681 * "m" is the minimal width when counting p_wiw for "next_curwin".
1683 m
= frame_minwidth(topfr
, next_curwin
);
1687 next_curwin_size
= p_wiw
+ room
;
1692 next_curwin_size
= -1;
1693 for (fr
= topfr
->fr_child
; fr
!= NULL
; fr
= fr
->fr_next
)
1695 /* If 'winfixwidth' set keep the window width if
1697 * Watch out for this window being the next_curwin. */
1698 if (frame_fixed_width(fr
))
1700 n
= frame_minwidth(fr
, NOWIN
);
1701 new_size
= fr
->fr_width
;
1702 if (frame_has_win(fr
, next_curwin
))
1704 room
+= p_wiw
- p_wmw
;
1705 next_curwin_size
= 0;
1706 if (new_size
< p_wiw
)
1710 /* These windows don't use up room. */
1711 totwincount
-= (n
+ (fr
->fr_next
== NULL
1712 ? extra_sep
: 0)) / (p_wmw
+ 1);
1713 room
-= new_size
- n
;
1719 fr
->fr_newwidth
= new_size
;
1722 if (next_curwin_size
== -1)
1724 if (!has_next_curwin
)
1725 next_curwin_size
= 0;
1726 else if (totwincount
> 1
1727 && (room
+ (totwincount
- 2))
1728 / (totwincount
- 1) > p_wiw
)
1730 /* Can make all windows wider than 'winwidth', spread
1731 * the room equally. */
1732 next_curwin_size
= (room
+ p_wiw
1733 + (totwincount
- 1) * p_wmw
1734 + (totwincount
- 1)) / totwincount
;
1735 room
-= next_curwin_size
- p_wiw
;
1738 next_curwin_size
= p_wiw
;
1742 if (has_next_curwin
)
1743 --totwincount
; /* don't count curwin */
1746 for (fr
= topfr
->fr_child
; fr
!= NULL
; fr
= fr
->fr_next
)
1750 if (fr
->fr_next
== NULL
)
1751 /* last frame gets all that remains (avoid roundoff error) */
1753 else if (dir
== 'v')
1754 new_size
= fr
->fr_width
;
1755 else if (frame_fixed_width(fr
))
1757 new_size
= fr
->fr_newwidth
;
1758 wincount
= 0; /* doesn't count as a sizeable window */
1762 /* Compute the maximum number of windows horiz. in "fr". */
1763 n
= frame_minwidth(fr
, NOWIN
);
1764 wincount
= (n
+ (fr
->fr_next
== NULL
? extra_sep
: 0))
1766 m
= frame_minwidth(fr
, next_curwin
);
1767 if (has_next_curwin
)
1768 hnc
= frame_has_win(fr
, next_curwin
);
1771 if (hnc
) /* don't count next_curwin */
1773 if (totwincount
== 0)
1776 new_size
= (wincount
* room
+ ((unsigned)totwincount
>> 1))
1778 if (hnc
) /* add next_curwin size */
1780 next_curwin_size
-= p_wiw
- (m
- n
);
1781 new_size
+= next_curwin_size
;
1782 room
-= new_size
- next_curwin_size
;
1789 /* Skip frame that is full width when splitting or closing a
1790 * window, unless equalizing all frames. */
1791 if (!current
|| dir
!= 'v' || topfr
->fr_parent
!= NULL
1792 || (new_size
!= fr
->fr_width
)
1793 || frame_has_win(fr
, next_curwin
))
1794 win_equal_rec(next_curwin
, current
, fr
, dir
, col
, row
,
1798 totwincount
-= wincount
;
1802 else /* topfr->fr_layout == FR_COL */
1804 #ifdef FEAT_VERTSPLIT
1805 topfr
->fr_width
= width
;
1807 topfr
->fr_height
= height
;
1809 if (dir
!= 'h') /* equalize frame heights */
1811 /* Compute maximum number of windows vertically in this frame. */
1812 n
= frame_minheight(topfr
, NOWIN
);
1813 /* add one for the bottom window if it doesn't have a statusline */
1814 if (row
+ height
== cmdline_row
&& p_ls
== 0)
1818 totwincount
= (n
+ extra_sep
) / (p_wmh
+ 1);
1819 has_next_curwin
= frame_has_win(topfr
, next_curwin
);
1822 * Compute height for "next_curwin" window and room available for
1824 * "m" is the minimal height when counting p_wh for "next_curwin".
1826 m
= frame_minheight(topfr
, next_curwin
);
1830 /* The room is less then 'winheight', use all space for the
1831 * current window. */
1832 next_curwin_size
= p_wh
+ room
;
1837 next_curwin_size
= -1;
1838 for (fr
= topfr
->fr_child
; fr
!= NULL
; fr
= fr
->fr_next
)
1840 /* If 'winfixheight' set keep the window height if
1842 * Watch out for this window being the next_curwin. */
1843 if (frame_fixed_height(fr
))
1845 n
= frame_minheight(fr
, NOWIN
);
1846 new_size
= fr
->fr_height
;
1847 if (frame_has_win(fr
, next_curwin
))
1849 room
+= p_wh
- p_wmh
;
1850 next_curwin_size
= 0;
1851 if (new_size
< p_wh
)
1855 /* These windows don't use up room. */
1856 totwincount
-= (n
+ (fr
->fr_next
== NULL
1857 ? extra_sep
: 0)) / (p_wmh
+ 1);
1858 room
-= new_size
- n
;
1864 fr
->fr_newheight
= new_size
;
1867 if (next_curwin_size
== -1)
1869 if (!has_next_curwin
)
1870 next_curwin_size
= 0;
1871 else if (totwincount
> 1
1872 && (room
+ (totwincount
- 2))
1873 / (totwincount
- 1) > p_wh
)
1875 /* can make all windows higher than 'winheight',
1876 * spread the room equally. */
1877 next_curwin_size
= (room
+ p_wh
1878 + (totwincount
- 1) * p_wmh
1879 + (totwincount
- 1)) / totwincount
;
1880 room
-= next_curwin_size
- p_wh
;
1883 next_curwin_size
= p_wh
;
1887 if (has_next_curwin
)
1888 --totwincount
; /* don't count curwin */
1891 for (fr
= topfr
->fr_child
; fr
!= NULL
; fr
= fr
->fr_next
)
1895 if (fr
->fr_next
== NULL
)
1896 /* last frame gets all that remains (avoid roundoff error) */
1898 else if (dir
== 'h')
1899 new_size
= fr
->fr_height
;
1900 else if (frame_fixed_height(fr
))
1902 new_size
= fr
->fr_newheight
;
1903 wincount
= 0; /* doesn't count as a sizeable window */
1907 /* Compute the maximum number of windows vert. in "fr". */
1908 n
= frame_minheight(fr
, NOWIN
);
1909 wincount
= (n
+ (fr
->fr_next
== NULL
? extra_sep
: 0))
1911 m
= frame_minheight(fr
, next_curwin
);
1912 if (has_next_curwin
)
1913 hnc
= frame_has_win(fr
, next_curwin
);
1916 if (hnc
) /* don't count next_curwin */
1918 if (totwincount
== 0)
1921 new_size
= (wincount
* room
+ ((unsigned)totwincount
>> 1))
1923 if (hnc
) /* add next_curwin size */
1925 next_curwin_size
-= p_wh
- (m
- n
);
1926 new_size
+= next_curwin_size
;
1927 room
-= new_size
- next_curwin_size
;
1933 /* Skip frame that is full width when splitting or closing a
1934 * window, unless equalizing all frames. */
1935 if (!current
|| dir
!= 'h' || topfr
->fr_parent
!= NULL
1936 || (new_size
!= fr
->fr_height
)
1937 || frame_has_win(fr
, next_curwin
))
1938 win_equal_rec(next_curwin
, current
, fr
, dir
, col
, row
,
1942 totwincount
-= wincount
;
1948 * close all windows for buffer 'buf'
1951 close_windows(buf
, keep_curwin
)
1953 int keep_curwin
; /* don't close "curwin" */
1956 tabpage_T
*tp
, *nexttp
;
1957 int h
= tabline_height();
1959 ++RedrawingDisabled
;
1961 for (wp
= firstwin
; wp
!= NULL
&& lastwin
!= firstwin
; )
1963 if (wp
->w_buffer
== buf
&& (!keep_curwin
|| wp
!= curwin
))
1965 win_close(wp
, FALSE
);
1967 /* Start all over, autocommands may change the window layout. */
1974 /* Also check windows in other tab pages. */
1975 for (tp
= first_tabpage
; tp
!= NULL
; tp
= nexttp
)
1977 nexttp
= tp
->tp_next
;
1979 for (wp
= tp
->tp_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
1980 if (wp
->w_buffer
== buf
)
1982 win_close_othertab(wp
, FALSE
, tp
);
1984 /* Start all over, the tab page may be closed and
1985 * autocommands may change the window layout. */
1986 nexttp
= first_tabpage
;
1991 --RedrawingDisabled
;
1993 if (h
!= tabline_height())
1998 * Return TRUE if the current window is the only window that exists.
1999 * Returns FALSE if there is a window, possibly in another tab page.
2004 return (lastwin
== firstwin
&& first_tabpage
->tp_next
== NULL
);
2008 * Close window "win". Only works for the current tab page.
2009 * If "free_buf" is TRUE related buffer may be unloaded.
2011 * called by :quit, :close, :xit, :wq and findtag()
2014 win_close(win
, free_buf
)
2020 int other_buffer
= FALSE
;
2022 int close_curwin
= FALSE
;
2024 int help_window
= FALSE
;
2025 tabpage_T
*prev_curtab
= curtab
;
2029 EMSG(_("E444: Cannot close last window"));
2034 * When closing the last window in a tab page first go to another tab
2035 * page and then close the window and the tab page. This avoids that
2036 * curwin and curtab are not invalid while we are freeing memory, they may
2037 * be used in GUI events.
2039 if (firstwin
== lastwin
)
2041 goto_tabpage_tp(alt_tabpage());
2042 redraw_tabline
= TRUE
;
2044 /* Safety check: Autocommands may have closed the window when jumping
2045 * to the other tab page. */
2046 if (valid_tabpage(prev_curtab
) && prev_curtab
->tp_firstwin
== win
)
2048 int h
= tabline_height();
2050 win_close_othertab(win
, free_buf
, prev_curtab
);
2051 if (h
!= tabline_height())
2057 /* When closing the help window, try restoring a snapshot after closing
2058 * the window. Otherwise clear the snapshot, it's now invalid. */
2059 if (win
->w_buffer
->b_help
)
2062 clear_snapshot(curtab
);
2068 * Guess which window is going to be the new current window.
2069 * This may change because of the autocommands (sigh).
2071 wp
= frame2win(win_altframe(win
, NULL
));
2074 * Be careful: If autocommands delete the window, return now.
2076 if (wp
->w_buffer
!= curbuf
)
2078 other_buffer
= TRUE
;
2079 apply_autocmds(EVENT_BUFLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
2080 if (!win_valid(win
) || last_window())
2083 apply_autocmds(EVENT_WINLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
2084 if (!win_valid(win
) || last_window())
2087 /* autocmds may abort script processing */
2095 /* Avoid trouble with scrollbars that are going to be deleted in
2102 * Close the link to the buffer.
2104 close_buffer(win
, win
->w_buffer
, free_buf
? DOBUF_UNLOAD
: 0);
2106 /* Autocommands may have closed the window already, or closed the only
2107 * other window or moved to another tab page. */
2108 if (!win_valid(win
) || last_window() || curtab
!= prev_curtab
)
2111 /* Free the memory used for the window. */
2112 wp
= win_free_mem(win
, &dir
, NULL
);
2114 /* Make sure curwin isn't invalid. It can cause severe trouble when
2115 * printing an error message. For win_equal() curbuf needs to be valid
2120 #ifdef FEAT_QUICKFIX
2121 if (wp
->w_p_pvw
|| bt_quickfix(wp
->w_buffer
))
2124 * The cursor goes to the preview or the quickfix window, try
2125 * finding another window to go to.
2129 if (wp
->w_next
== NULL
)
2135 if (!wp
->w_p_pvw
&& !bt_quickfix(wp
->w_buffer
))
2143 curbuf
= curwin
->w_buffer
;
2144 close_curwin
= TRUE
;
2147 #ifdef FEAT_VERTSPLIT
2148 && (*p_ead
== 'b' || *p_ead
== dir
)
2151 win_equal(curwin
, TRUE
,
2152 #ifdef FEAT_VERTSPLIT
2162 win_enter_ext(wp
, FALSE
, TRUE
);
2165 /* careful: after this wp and win may be invalid! */
2166 apply_autocmds(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
);
2171 * If last window has a status line now and we don't want one,
2172 * remove the status line.
2176 /* After closing the help window, try restoring the window layout from
2177 * before it was opened. */
2179 restore_snapshot(close_curwin
);
2181 #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
2182 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2183 if (gui
.in_use
&& !win_hasvertsplit())
2184 gui_init_which_components(NULL
);
2187 redraw_all_later(NOT_VALID
);
2191 * Close window "win" in tab page "tp", which is not the current tab page.
2192 * This may be the last window ih that tab page and result in closing the tab,
2193 * thus "tp" may become invalid!
2194 * Caller must check if buffer is hidden and whether the tabline needs to be
2198 win_close_othertab(win
, free_buf
, tp
)
2205 tabpage_T
*ptp
= NULL
;
2207 /* Close the link to the buffer. */
2208 close_buffer(win
, win
->w_buffer
, free_buf
? DOBUF_UNLOAD
: 0);
2210 /* Careful: Autocommands may have closed the tab page or made it the
2211 * current tab page. */
2212 for (ptp
= first_tabpage
; ptp
!= NULL
&& ptp
!= tp
; ptp
= ptp
->tp_next
)
2214 if (ptp
== NULL
|| tp
== curtab
)
2217 /* Autocommands may have closed the window already. */
2218 for (wp
= tp
->tp_firstwin
; wp
!= NULL
&& wp
!= win
; wp
= wp
->w_next
)
2223 /* Free the memory used for the window. */
2224 wp
= win_free_mem(win
, &dir
, tp
);
2226 /* When closing the last window in a tab page remove the tab page. */
2229 if (tp
== first_tabpage
)
2230 first_tabpage
= tp
->tp_next
;
2233 for (ptp
= first_tabpage
; ptp
!= NULL
&& ptp
->tp_next
!= tp
;
2238 EMSG2(_(e_intern2
), "win_close_othertab()");
2241 ptp
->tp_next
= tp
->tp_next
;
2248 * Free the memory used for a window.
2249 * Returns a pointer to the window that got the freed up space.
2252 win_free_mem(win
, dirp
, tp
)
2254 int *dirp
; /* set to 'v' or 'h' for direction if 'ea' */
2255 tabpage_T
*tp
; /* tab page "win" is in, NULL for current */
2264 /* reduce the reference count to the argument list. */
2265 alist_unlink(win
->w_alist
);
2267 /* Remove the window and its frame from the tree of frames. */
2269 wp
= winframe_remove(win
, dirp
, tp
);
2273 /* When deleting the current window of another tab page select a new
2274 * current window. */
2275 if (tp
!= NULL
&& win
== tp
->tp_curwin
)
2281 #if defined(EXITFREE) || defined(PROTO)
2287 # ifdef FEAT_WINDOWS
2288 while (first_tabpage
->tp_next
!= NULL
)
2289 tabpage_close(TRUE
);
2292 while (firstwin
!= NULL
)
2293 (void)win_free_mem(firstwin
, &dummy
, NULL
);
2298 * Remove a window and its frame from the tree of frames.
2299 * Returns a pointer to the window that got the freed up space.
2303 winframe_remove(win
, dirp
, tp
)
2305 int *dirp
; /* set to 'v' or 'h' for direction if 'ea' */
2306 tabpage_T
*tp
; /* tab page "win" is in, NULL for current */
2308 frame_T
*frp
, *frp2
, *frp3
;
2309 frame_T
*frp_close
= win
->w_frame
;
2314 * If there is only one window there is nothing to remove.
2316 if (tp
== NULL
? firstwin
== lastwin
: tp
->tp_firstwin
== tp
->tp_lastwin
)
2320 * Remove the window from its frame.
2322 frp2
= win_altframe(win
, tp
);
2323 wp
= frame2win(frp2
);
2325 /* Remove this frame from the list of frames. */
2326 frame_remove(frp_close
);
2328 #ifdef FEAT_VERTSPLIT
2329 if (frp_close
->fr_parent
->fr_layout
== FR_COL
)
2332 /* When 'winfixheight' is set, remember its old size and restore
2333 * it later (it's a simplistic solution...). Don't do this if the
2334 * window will occupy the full height of the screen. */
2335 if (frp2
->fr_win
!= NULL
2336 && (frp2
->fr_next
!= NULL
|| frp2
->fr_prev
!= NULL
)
2337 && frp2
->fr_win
->w_p_wfh
)
2338 old_size
= frp2
->fr_win
->w_height
;
2339 frame_new_height(frp2
, frp2
->fr_height
+ frp_close
->fr_height
,
2340 frp2
== frp_close
->fr_next
? TRUE
: FALSE
, FALSE
);
2342 win_setheight_win(old_size
, frp2
->fr_win
);
2343 #ifdef FEAT_VERTSPLIT
2348 /* When 'winfixwidth' is set, remember its old size and restore
2349 * it later (it's a simplistic solution...). Don't do this if the
2350 * window will occupy the full width of the screen. */
2351 if (frp2
->fr_win
!= NULL
2352 && (frp2
->fr_next
!= NULL
|| frp2
->fr_prev
!= NULL
)
2353 && frp2
->fr_win
->w_p_wfw
)
2354 old_size
= frp2
->fr_win
->w_width
;
2355 frame_new_width(frp2
, frp2
->fr_width
+ frp_close
->fr_width
,
2356 frp2
== frp_close
->fr_next
? TRUE
: FALSE
, FALSE
);
2358 win_setwidth_win(old_size
, frp2
->fr_win
);
2363 /* If rows/columns go to a window below/right its positions need to be
2364 * updated. Can only be done after the sizes have been updated. */
2365 if (frp2
== frp_close
->fr_next
)
2367 int row
= win
->w_winrow
;
2368 int col
= W_WINCOL(win
);
2370 frame_comp_pos(frp2
, &row
, &col
);
2373 if (frp2
->fr_next
== NULL
&& frp2
->fr_prev
== NULL
)
2375 /* There is no other frame in this list, move its info to the parent
2377 frp2
->fr_parent
->fr_layout
= frp2
->fr_layout
;
2378 frp2
->fr_parent
->fr_child
= frp2
->fr_child
;
2379 for (frp
= frp2
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2380 frp
->fr_parent
= frp2
->fr_parent
;
2381 frp2
->fr_parent
->fr_win
= frp2
->fr_win
;
2382 if (frp2
->fr_win
!= NULL
)
2383 frp2
->fr_win
->w_frame
= frp2
->fr_parent
;
2384 frp
= frp2
->fr_parent
;
2387 frp2
= frp
->fr_parent
;
2388 if (frp2
!= NULL
&& frp2
->fr_layout
== frp
->fr_layout
)
2390 /* The frame above the parent has the same layout, have to merge
2391 * the frames into this list. */
2392 if (frp2
->fr_child
== frp
)
2393 frp2
->fr_child
= frp
->fr_child
;
2394 frp
->fr_child
->fr_prev
= frp
->fr_prev
;
2395 if (frp
->fr_prev
!= NULL
)
2396 frp
->fr_prev
->fr_next
= frp
->fr_child
;
2397 for (frp3
= frp
->fr_child
; ; frp3
= frp3
->fr_next
)
2399 frp3
->fr_parent
= frp2
;
2400 if (frp3
->fr_next
== NULL
)
2402 frp3
->fr_next
= frp
->fr_next
;
2403 if (frp
->fr_next
!= NULL
)
2404 frp
->fr_next
->fr_prev
= frp3
;
2416 * Find out which frame is going to get the freed up space when "win" is
2418 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2419 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2420 * This makes opening a window and closing it immediately keep the same window
2424 win_altframe(win
, tp
)
2426 tabpage_T
*tp
; /* tab page "win" is in, NULL for current */
2431 if (tp
== NULL
? firstwin
== lastwin
: tp
->tp_firstwin
== tp
->tp_lastwin
)
2432 /* Last window in this tab page, will go to next tab page. */
2433 return alt_tabpage()->tp_curwin
->w_frame
;
2436 #ifdef FEAT_VERTSPLIT
2437 if (frp
->fr_parent
!= NULL
&& frp
->fr_parent
->fr_layout
== FR_ROW
)
2442 if ((!b
&& frp
->fr_next
!= NULL
) || frp
->fr_prev
== NULL
)
2443 return frp
->fr_next
;
2444 return frp
->fr_prev
;
2448 * Return the tabpage that will be used if the current one is closed.
2455 /* Use the next tab page if possible. */
2456 if (curtab
->tp_next
!= NULL
)
2457 return curtab
->tp_next
;
2459 /* Find the last but one tab page. */
2460 for (tp
= first_tabpage
; tp
->tp_next
!= curtab
; tp
= tp
->tp_next
)
2466 * Find the left-upper window in frame "frp".
2472 while (frp
->fr_win
== NULL
)
2473 frp
= frp
->fr_child
;
2478 * Return TRUE if frame "frp" contains window "wp".
2481 frame_has_win(frp
, wp
)
2487 if (frp
->fr_layout
== FR_LEAF
)
2488 return frp
->fr_win
== wp
;
2490 for (p
= frp
->fr_child
; p
!= NULL
; p
= p
->fr_next
)
2491 if (frame_has_win(p
, wp
))
2497 * Set a new height for a frame. Recursively sets the height for contained
2498 * frames and windows. Caller must take care of positions.
2501 frame_new_height(topfrp
, height
, topfirst
, wfh
)
2504 int topfirst
; /* resize topmost contained frame first */
2505 int wfh
; /* obey 'winfixheight' when there is a choice;
2506 may cause the height not to be set */
2512 if (topfrp
->fr_win
!= NULL
)
2514 /* Simple case: just one window. */
2515 win_new_height(topfrp
->fr_win
,
2516 height
- topfrp
->fr_win
->w_status_height
);
2518 #ifdef FEAT_VERTSPLIT
2519 else if (topfrp
->fr_layout
== FR_ROW
)
2523 /* All frames in this row get the same new height. */
2524 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2526 frame_new_height(frp
, height
, topfirst
, wfh
);
2527 if (frp
->fr_height
> height
)
2529 /* Could not fit the windows, make the whole row higher. */
2530 height
= frp
->fr_height
;
2535 while (frp
!= NULL
);
2538 else /* fr_layout == FR_COL */
2540 /* Complicated case: Resize a column of frames. Resize the bottom
2541 * frame first, frames above that when needed. */
2543 frp
= topfrp
->fr_child
;
2545 /* Advance past frames with one window with 'wfh' set. */
2546 while (frame_fixed_height(frp
))
2550 return; /* no frame without 'wfh', give up */
2554 /* Find the bottom frame of this column */
2555 while (frp
->fr_next
!= NULL
)
2558 /* Advance back for frames with one window with 'wfh' set. */
2559 while (frame_fixed_height(frp
))
2563 extra_lines
= height
- topfrp
->fr_height
;
2564 if (extra_lines
< 0)
2566 /* reduce height of contained frames, bottom or top frame first */
2569 h
= frame_minheight(frp
, NULL
);
2570 if (frp
->fr_height
+ extra_lines
< h
)
2572 extra_lines
+= frp
->fr_height
- h
;
2573 frame_new_height(frp
, h
, topfirst
, wfh
);
2577 frame_new_height(frp
, frp
->fr_height
+ extra_lines
,
2585 while (wfh
&& frp
!= NULL
&& frame_fixed_height(frp
));
2591 while (wfh
&& frp
!= NULL
&& frame_fixed_height(frp
));
2593 /* Increase "height" if we could not reduce enough frames. */
2595 height
-= extra_lines
;
2598 else if (extra_lines
> 0)
2600 /* increase height of bottom or top frame */
2601 frame_new_height(frp
, frp
->fr_height
+ extra_lines
, topfirst
, wfh
);
2604 topfrp
->fr_height
= height
;
2608 * Return TRUE if height of frame "frp" should not be changed because of
2609 * the 'winfixheight' option.
2612 frame_fixed_height(frp
)
2615 /* frame with one window: fixed height if 'winfixheight' set. */
2616 if (frp
->fr_win
!= NULL
)
2617 return frp
->fr_win
->w_p_wfh
;
2619 if (frp
->fr_layout
== FR_ROW
)
2621 /* The frame is fixed height if one of the frames in the row is fixed
2623 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2624 if (frame_fixed_height(frp
))
2629 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2630 * frames in the row are fixed height. */
2631 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2632 if (!frame_fixed_height(frp
))
2637 #ifdef FEAT_VERTSPLIT
2639 * Return TRUE if width of frame "frp" should not be changed because of
2640 * the 'winfixwidth' option.
2643 frame_fixed_width(frp
)
2646 /* frame with one window: fixed width if 'winfixwidth' set. */
2647 if (frp
->fr_win
!= NULL
)
2648 return frp
->fr_win
->w_p_wfw
;
2650 if (frp
->fr_layout
== FR_COL
)
2652 /* The frame is fixed width if one of the frames in the row is fixed
2654 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2655 if (frame_fixed_width(frp
))
2660 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2661 * frames in the row are fixed width. */
2662 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2663 if (!frame_fixed_width(frp
))
2669 * Add a status line to windows at the bottom of "frp".
2670 * Note: Does not check if there is room!
2673 frame_add_statusline(frp
)
2678 if (frp
->fr_layout
== FR_LEAF
)
2681 if (wp
->w_status_height
== 0)
2683 if (wp
->w_height
> 0) /* don't make it negative */
2685 wp
->w_status_height
= STATUS_HEIGHT
;
2688 else if (frp
->fr_layout
== FR_ROW
)
2690 /* Handle all the frames in the row. */
2691 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2692 frame_add_statusline(frp
);
2694 else /* frp->fr_layout == FR_COL */
2696 /* Only need to handle the last frame in the column. */
2697 for (frp
= frp
->fr_child
; frp
->fr_next
!= NULL
; frp
= frp
->fr_next
)
2699 frame_add_statusline(frp
);
2704 * Set width of a frame. Handles recursively going through contained frames.
2705 * May remove separator line for windows at the right side (for win_close()).
2708 frame_new_width(topfrp
, width
, leftfirst
, wfw
)
2711 int leftfirst
; /* resize leftmost contained frame first */
2712 int wfw
; /* obey 'winfixwidth' when there is a choice;
2713 may cause the width not to be set */
2720 if (topfrp
->fr_layout
== FR_LEAF
)
2722 /* Simple case: just one window. */
2723 wp
= topfrp
->fr_win
;
2724 /* Find out if there are any windows right of this one. */
2725 for (frp
= topfrp
; frp
->fr_parent
!= NULL
; frp
= frp
->fr_parent
)
2726 if (frp
->fr_parent
->fr_layout
== FR_ROW
&& frp
->fr_next
!= NULL
)
2728 if (frp
->fr_parent
== NULL
)
2729 wp
->w_vsep_width
= 0;
2730 win_new_width(wp
, width
- wp
->w_vsep_width
);
2732 else if (topfrp
->fr_layout
== FR_COL
)
2736 /* All frames in this column get the same new width. */
2737 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2739 frame_new_width(frp
, width
, leftfirst
, wfw
);
2740 if (frp
->fr_width
> width
)
2742 /* Could not fit the windows, make whole column wider. */
2743 width
= frp
->fr_width
;
2747 } while (frp
!= NULL
);
2749 else /* fr_layout == FR_ROW */
2751 /* Complicated case: Resize a row of frames. Resize the rightmost
2752 * frame first, frames left of it when needed. */
2754 frp
= topfrp
->fr_child
;
2756 /* Advance past frames with one window with 'wfw' set. */
2757 while (frame_fixed_width(frp
))
2761 return; /* no frame without 'wfw', give up */
2765 /* Find the rightmost frame of this row */
2766 while (frp
->fr_next
!= NULL
)
2769 /* Advance back for frames with one window with 'wfw' set. */
2770 while (frame_fixed_width(frp
))
2774 extra_cols
= width
- topfrp
->fr_width
;
2777 /* reduce frame width, rightmost frame first */
2780 w
= frame_minwidth(frp
, NULL
);
2781 if (frp
->fr_width
+ extra_cols
< w
)
2783 extra_cols
+= frp
->fr_width
- w
;
2784 frame_new_width(frp
, w
, leftfirst
, wfw
);
2788 frame_new_width(frp
, frp
->fr_width
+ extra_cols
,
2796 while (wfw
&& frp
!= NULL
&& frame_fixed_width(frp
));
2802 while (wfw
&& frp
!= NULL
&& frame_fixed_width(frp
));
2804 /* Increase "width" if we could not reduce enough frames. */
2806 width
-= extra_cols
;
2809 else if (extra_cols
> 0)
2811 /* increase width of rightmost frame */
2812 frame_new_width(frp
, frp
->fr_width
+ extra_cols
, leftfirst
, wfw
);
2815 topfrp
->fr_width
= width
;
2819 * Add the vertical separator to windows at the right side of "frp".
2820 * Note: Does not check if there is room!
2828 if (frp
->fr_layout
== FR_LEAF
)
2831 if (wp
->w_vsep_width
== 0)
2833 if (wp
->w_width
> 0) /* don't make it negative */
2835 wp
->w_vsep_width
= 1;
2838 else if (frp
->fr_layout
== FR_COL
)
2840 /* Handle all the frames in the column. */
2841 for (frp
= frp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2842 frame_add_vsep(frp
);
2844 else /* frp->fr_layout == FR_ROW */
2846 /* Only need to handle the last frame in the row. */
2847 frp
= frp
->fr_child
;
2848 while (frp
->fr_next
!= NULL
)
2850 frame_add_vsep(frp
);
2855 * Set frame width from the window it contains.
2861 wp
->w_frame
->fr_width
= wp
->w_width
+ wp
->w_vsep_width
;
2866 * Set frame height from the window it contains.
2869 frame_fix_height(wp
)
2872 wp
->w_frame
->fr_height
= wp
->w_height
+ wp
->w_status_height
;
2876 * Compute the minimal height for frame "topfrp".
2877 * Uses the 'winminheight' option.
2878 * When "next_curwin" isn't NULL, use p_wh for this window.
2879 * When "next_curwin" is NOWIN, don't use at least one line for the current
2883 frame_minheight(topfrp
, next_curwin
)
2889 #ifdef FEAT_VERTSPLIT
2893 if (topfrp
->fr_win
!= NULL
)
2895 if (topfrp
->fr_win
== next_curwin
)
2896 m
= p_wh
+ topfrp
->fr_win
->w_status_height
;
2899 /* window: minimal height of the window plus status line */
2900 m
= p_wmh
+ topfrp
->fr_win
->w_status_height
;
2901 /* Current window is minimal one line high */
2902 if (p_wmh
== 0 && topfrp
->fr_win
== curwin
&& next_curwin
== NULL
)
2906 #ifdef FEAT_VERTSPLIT
2907 else if (topfrp
->fr_layout
== FR_ROW
)
2909 /* get the minimal height from each frame in this row */
2911 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2913 n
= frame_minheight(frp
, next_curwin
);
2921 /* Add up the minimal heights for all frames in this column. */
2923 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2924 m
+= frame_minheight(frp
, next_curwin
);
2930 #ifdef FEAT_VERTSPLIT
2932 * Compute the minimal width for frame "topfrp".
2933 * When "next_curwin" isn't NULL, use p_wiw for this window.
2934 * When "next_curwin" is NOWIN, don't use at least one column for the current
2938 frame_minwidth(topfrp
, next_curwin
)
2940 win_T
*next_curwin
; /* use p_wh and p_wiw for next_curwin */
2945 if (topfrp
->fr_win
!= NULL
)
2947 if (topfrp
->fr_win
== next_curwin
)
2948 m
= p_wiw
+ topfrp
->fr_win
->w_vsep_width
;
2951 /* window: minimal width of the window plus separator column */
2952 m
= p_wmw
+ topfrp
->fr_win
->w_vsep_width
;
2953 /* Current window is minimal one column wide */
2954 if (p_wmw
== 0 && topfrp
->fr_win
== curwin
&& next_curwin
== NULL
)
2958 else if (topfrp
->fr_layout
== FR_COL
)
2960 /* get the minimal width from each frame in this column */
2962 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2964 n
= frame_minwidth(frp
, next_curwin
);
2971 /* Add up the minimal widths for all frames in this row. */
2973 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
2974 m
+= frame_minwidth(frp
, next_curwin
);
2983 * Try to close all windows except current one.
2984 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
2985 * used and the buffer was modified.
2987 * Used by ":bdel" and ":only".
2990 close_others(message
, forceit
)
2992 int forceit
; /* always hide all other windows */
2998 if (lastwin
== firstwin
)
3009 /* Be very careful here: autocommands may change the window layout. */
3010 for (wp
= firstwin
; win_valid(wp
); wp
= nextwp
)
3012 nextwp
= wp
->w_next
;
3013 if (wp
!= curwin
) /* don't close current window */
3016 /* Check if it's allowed to abandon this window */
3017 r
= can_abandon(wp
->w_buffer
, forceit
);
3019 if (!win_valid(wp
)) /* autocommands messed wp up */
3027 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3028 if (message
&& (p_confirm
|| cmdmod
.confirm
) && p_write
)
3030 dialog_changed(wp
->w_buffer
, FALSE
);
3031 # ifdef FEAT_AUTOCMD
3032 if (!win_valid(wp
)) /* autocommands messed wp up */
3039 if (bufIsChanged(wp
->w_buffer
))
3043 win_close(wp
, !P_HID(wp
->w_buffer
) && !bufIsChanged(wp
->w_buffer
));
3047 if (message
&& lastwin
!= firstwin
)
3048 EMSG(_("E445: Other window contains changes"));
3051 #endif /* FEAT_WINDOWS */
3054 * Init the current window "curwin".
3055 * Called when a new file is being edited.
3060 redraw_win_later(curwin
, NOT_VALID
);
3061 curwin
->w_lines_valid
= 0;
3062 curwin
->w_cursor
.lnum
= 1;
3063 curwin
->w_curswant
= curwin
->w_cursor
.col
= 0;
3064 #ifdef FEAT_VIRTUALEDIT
3065 curwin
->w_cursor
.coladd
= 0;
3067 curwin
->w_pcmark
.lnum
= 1; /* pcmark not cleared but set to line 1 */
3068 curwin
->w_pcmark
.col
= 0;
3069 curwin
->w_prev_pcmark
.lnum
= 0;
3070 curwin
->w_prev_pcmark
.col
= 0;
3071 curwin
->w_topline
= 1;
3073 curwin
->w_topfill
= 0;
3075 curwin
->w_botline
= 2;
3078 curwin
->w_farsi
= W_CONV
+ W_R_L
;
3080 curwin
->w_farsi
= W_CONV
;
3085 * Allocate the first window and put an empty buffer in it.
3086 * Called from main().
3087 * Return FAIL when something goes wrong (out of memory).
3092 if (win_alloc_firstwin(NULL
) == FAIL
)
3096 first_tabpage
= alloc_tabpage();
3097 if (first_tabpage
== NULL
)
3099 first_tabpage
->tp_topframe
= topframe
;
3100 curtab
= first_tabpage
;
3106 * Allocate the first window or the first window in a new tab page.
3107 * When "oldwin" is NULL create an empty buffer for it.
3108 * When "oldwin" is not NULL copy info from it to the new window (only with
3110 * Return FAIL when something goes wrong (out of memory).
3113 win_alloc_firstwin(oldwin
)
3116 curwin
= win_alloc(NULL
);
3119 /* Very first window, need to create an empty buffer for it and
3120 * initialize from scratch. */
3121 curbuf
= buflist_new(NULL
, NULL
, 1L, BLN_LISTED
);
3122 if (curwin
== NULL
|| curbuf
== NULL
)
3124 curwin
->w_buffer
= curbuf
;
3125 curbuf
->b_nwindows
= 1; /* there is one window */
3127 curwin
->w_alist
= &global_alist
;
3129 curwin_init(); /* init current window */
3134 /* First window in new tab page, initialize it from "oldwin". */
3135 win_init(curwin
, oldwin
);
3137 # ifdef FEAT_SCROLLBIND
3138 /* We don't want scroll-binding in the first window. */
3139 curwin
->w_p_scb
= FALSE
;
3144 topframe
= (frame_T
*)alloc_clear((unsigned)sizeof(frame_T
));
3145 if (topframe
== NULL
)
3147 topframe
->fr_layout
= FR_LEAF
;
3148 #ifdef FEAT_VERTSPLIT
3149 topframe
->fr_width
= Columns
;
3151 topframe
->fr_height
= Rows
- p_ch
;
3152 topframe
->fr_win
= curwin
;
3153 curwin
->w_frame
= topframe
;
3159 * Initialize the window and frame size to the maximum.
3164 firstwin
->w_height
= ROWS_AVAIL
;
3165 topframe
->fr_height
= ROWS_AVAIL
;
3166 #ifdef FEAT_VERTSPLIT
3167 firstwin
->w_width
= Columns
;
3168 topframe
->fr_width
= Columns
;
3172 #if defined(FEAT_WINDOWS) || defined(PROTO)
3175 * Allocate a new tabpage_T and init the values.
3176 * Returns NULL when out of memory.
3183 tp
= (tabpage_T
*)alloc_clear((unsigned)sizeof(tabpage_T
));
3189 for (i
= 0; i
< 3; i
++)
3190 tp
->tp_prev_which_scrollbars
[i
] = -1;
3193 tp
->tp_diff_invalid
= TRUE
;
3196 /* init t: variables */
3197 init_var_dict(&tp
->tp_vars
, &tp
->tp_winvar
);
3199 tp
->tp_ch_used
= p_ch
;
3213 vars_clear(&tp
->tp_vars
.dv_hashtab
); /* free all t: variables */
3219 * Create a new Tab page with one window.
3220 * It will edit the current buffer, like after ":split".
3221 * When "after" is 0 put it just after the current Tab page.
3222 * Otherwise put it just before tab page "after".
3223 * Return FAIL or OK.
3226 win_new_tabpage(after
)
3229 tabpage_T
*tp
= curtab
;
3233 newtp
= alloc_tabpage();
3237 /* Remember the current windows in this Tab page. */
3238 if (leave_tabpage(curbuf
) == FAIL
)
3245 /* Create a new empty window. */
3246 if (win_alloc_firstwin(tp
->tp_curwin
) == OK
)
3248 /* Make the new Tab page the new topframe. */
3251 /* New tab page becomes the first one. */
3252 newtp
->tp_next
= first_tabpage
;
3253 first_tabpage
= newtp
;
3259 /* Put new tab page before tab page "after". */
3261 for (tp
= first_tabpage
; tp
->tp_next
!= NULL
3262 && n
< after
; tp
= tp
->tp_next
)
3265 newtp
->tp_next
= tp
->tp_next
;
3266 tp
->tp_next
= newtp
;
3269 firstwin
->w_winrow
= tabline_height();
3270 win_comp_scroll(curwin
);
3272 newtp
->tp_topframe
= topframe
;
3275 #if defined(FEAT_GUI)
3276 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3277 * scrollbars. Have to update them anyway. */
3278 if (gui
.in_use
&& starting
== 0)
3280 gui_init_which_components(NULL
);
3281 gui_update_scrollbars(TRUE
);
3283 need_mouse_correct
= TRUE
;
3286 redraw_all_later(CLEAR
);
3288 apply_autocmds(EVENT_TABENTER
, NULL
, NULL
, FALSE
, curbuf
);
3289 apply_autocmds(EVENT_WINENTER
, NULL
, NULL
, FALSE
, curbuf
);
3294 /* Failed, get back the previous Tab page */
3295 enter_tabpage(curtab
, curbuf
);
3300 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3301 * like with ":split".
3302 * Returns OK if a new tab page was created, FAIL otherwise.
3307 int n
= (cmdmod
.tab
== 0) ? postponed_split_tab
: cmdmod
.tab
;
3311 cmdmod
.tab
= 0; /* reset it to avoid doing it twice */
3312 postponed_split_tab
= 0;
3313 return win_new_tabpage(n
);
3319 * Create up to "maxcount" tabpages with empty windows.
3320 * Returns the number of resulting tab pages.
3323 make_tabpages(maxcount
)
3326 int count
= maxcount
;
3329 /* Limit to 'tabpagemax' tabs. */
3335 * Don't execute autocommands while creating the tab pages. Must do that
3336 * when putting the buffers in the windows.
3341 for (todo
= count
- 1; todo
> 0; --todo
)
3342 if (win_new_tabpage(0) == FAIL
)
3349 /* return actual number of tab pages */
3350 return (count
- todo
);
3354 * Return TRUE when "tpc" points to a valid tab page.
3362 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
3369 * Find tab page "n" (first one is 1). Returns NULL when not found.
3378 for (tp
= first_tabpage
; tp
!= NULL
&& i
!= n
; tp
= tp
->tp_next
)
3384 * Get index of tab page "tp". First one has index 1.
3385 * When not found returns number of tab pages plus one.
3394 for (tp
= first_tabpage
; tp
!= NULL
&& tp
!= ftp
; tp
= tp
->tp_next
)
3400 * Prepare for leaving the current tab page.
3401 * When autocomands change "curtab" we don't leave the tab page and return
3403 * Careful: When OK is returned need to get a new tab page very very soon!
3407 leave_tabpage(new_curbuf
)
3408 buf_T
*new_curbuf
; /* what is going to be the new curbuf,
3411 tabpage_T
*tp
= curtab
;
3414 reset_VIsual_and_resel(); /* stop Visual mode */
3417 if (new_curbuf
!= curbuf
)
3419 apply_autocmds(EVENT_BUFLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
3423 apply_autocmds(EVENT_WINLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
3426 apply_autocmds(EVENT_TABLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
3430 #if defined(FEAT_GUI)
3431 /* Remove the scrollbars. They may be added back later. */
3433 gui_remove_scrollbars();
3435 tp
->tp_curwin
= curwin
;
3436 tp
->tp_prevwin
= prevwin
;
3437 tp
->tp_firstwin
= firstwin
;
3438 tp
->tp_lastwin
= lastwin
;
3439 tp
->tp_old_Rows
= Rows
;
3440 tp
->tp_old_Columns
= Columns
;
3447 * Start using tab page "tp".
3448 * Only to be used after leave_tabpage() or freeing the current tab page.
3452 enter_tabpage(tp
, old_curbuf
)
3456 int old_off
= tp
->tp_firstwin
->w_winrow
;
3457 win_T
*next_prevwin
= tp
->tp_prevwin
;
3460 firstwin
= tp
->tp_firstwin
;
3461 lastwin
= tp
->tp_lastwin
;
3462 topframe
= tp
->tp_topframe
;
3464 /* We would like doing the TabEnter event first, but we don't have a
3465 * valid current window yet, which may break some commands.
3466 * This triggers autocommands, thus may make "tp" invalid. */
3467 win_enter_ext(tp
->tp_curwin
, FALSE
, TRUE
);
3468 prevwin
= next_prevwin
;
3471 apply_autocmds(EVENT_TABENTER
, NULL
, NULL
, FALSE
, curbuf
);
3473 if (old_curbuf
!= curbuf
)
3474 apply_autocmds(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
);
3477 last_status(FALSE
); /* status line may appear or disappear */
3478 (void)win_comp_pos(); /* recompute w_winrow for all windows */
3479 must_redraw
= CLEAR
; /* need to redraw everything */
3481 diff_need_scrollbind
= TRUE
;
3484 /* The tabpage line may have appeared or disappeared, may need to resize
3485 * the frames for that. When the Vim window was resized need to update
3486 * frame sizes too. Use the stored value of p_ch, so that it can be
3487 * different for each tab page. */
3488 p_ch
= curtab
->tp_ch_used
;
3489 if (curtab
->tp_old_Rows
!= Rows
|| (old_off
!= firstwin
->w_winrow
3490 #ifdef FEAT_GUI_TABLINE
3491 && !gui_use_tabline()
3495 #ifdef FEAT_VERTSPLIT
3496 if (curtab
->tp_old_Columns
!= Columns
&& starting
== 0)
3497 shell_new_columns(); /* update window widths */
3500 #if defined(FEAT_GUI)
3501 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3502 * scrollbars. Have to update them anyway. */
3503 if (gui
.in_use
&& starting
== 0)
3505 gui_init_which_components(NULL
);
3506 gui_update_scrollbars(TRUE
);
3508 need_mouse_correct
= TRUE
;
3511 redraw_all_later(CLEAR
);
3515 * Go to tab page "n". For ":tab N" and "Ngt".
3516 * When "n" is 9999 go to the last tab page.
3528 /* Not allowed when editing the command line. */
3530 if (cmdwin_type
!= 0)
3538 /* If there is only one it can't work. */
3539 if (first_tabpage
->tp_next
== NULL
)
3548 /* No count, go to next tab page, wrap around end. */
3549 if (curtab
->tp_next
== NULL
)
3552 tp
= curtab
->tp_next
;
3556 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3559 for (i
= n
; i
< 0; ++i
)
3561 for (tp
= first_tabpage
; tp
->tp_next
!= ttp
&& tp
->tp_next
!= NULL
;
3569 /* Go to last tab page. */
3570 for (tp
= first_tabpage
; tp
->tp_next
!= NULL
; tp
= tp
->tp_next
)
3575 /* Go to tab page "n". */
3576 tp
= find_tabpage(n
);
3584 goto_tabpage_tp(tp
);
3586 #ifdef FEAT_GUI_TABLINE
3587 if (gui_use_tabline())
3588 gui_mch_set_curtab(tabpage_index(curtab
));
3593 * Go to tabpage "tp".
3594 * Note: doesn't update the GUI tab.
3600 if (tp
!= curtab
&& leave_tabpage(tp
->tp_curwin
->w_buffer
) == OK
)
3602 if (valid_tabpage(tp
))
3603 enter_tabpage(tp
, curbuf
);
3605 enter_tabpage(curtab
, curbuf
);
3610 * Enter window "wp" in tab page "tp".
3611 * Also updates the GUI tab.
3614 goto_tabpage_win(tp
, wp
)
3618 goto_tabpage_tp(tp
);
3619 if (curtab
== tp
&& win_valid(wp
))
3621 win_enter(wp
, TRUE
);
3622 # ifdef FEAT_GUI_TABLINE
3623 if (gui_use_tabline())
3624 gui_mch_set_curtab(tabpage_index(curtab
));
3630 * Move the current tab page to before tab page "nr".
3639 if (first_tabpage
->tp_next
== NULL
)
3642 /* Remove the current tab page from the list of tab pages. */
3643 if (curtab
== first_tabpage
)
3644 first_tabpage
= curtab
->tp_next
;
3647 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
3648 if (tp
->tp_next
== curtab
)
3650 if (tp
== NULL
) /* "cannot happen" */
3652 tp
->tp_next
= curtab
->tp_next
;
3655 /* Re-insert it at the specified position. */
3658 curtab
->tp_next
= first_tabpage
;
3659 first_tabpage
= curtab
;
3663 for (tp
= first_tabpage
; tp
->tp_next
!= NULL
&& n
> 1; tp
= tp
->tp_next
)
3665 curtab
->tp_next
= tp
->tp_next
;
3666 tp
->tp_next
= curtab
;
3669 /* Need to redraw the tabline. Tab page contents doesn't change. */
3670 redraw_tabline
= TRUE
;
3675 * Go to another window.
3676 * When jumping to another buffer, stop Visual mode. Do this before
3677 * changing windows so we can yank the selection into the '*' register.
3678 * When jumping to another window on the same buffer, adjust its cursor
3679 * position to keep the same Visual area.
3692 if (curbuf_locked())
3697 if (wp
->w_buffer
!= curbuf
)
3698 reset_VIsual_and_resel();
3699 else if (VIsual_active
)
3700 wp
->w_cursor
= curwin
->w_cursor
;
3704 need_mouse_correct
= TRUE
;
3706 win_enter(wp
, TRUE
);
3709 #if defined(FEAT_PERL) || defined(PROTO)
3711 * Find window number "winnr" (counting top to bottom).
3719 # ifdef FEAT_WINDOWS
3720 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
3730 #ifdef FEAT_VERTSPLIT
3732 * Move to window above or below "count" times.
3735 win_goto_ver(up
, count
)
3736 int up
; /* TRUE to go to win above */
3743 foundfr
= curwin
->w_frame
;
3747 * First go upwards in the tree of frames until we find a upwards or
3748 * downwards neighbor.
3759 if (fr
->fr_parent
->fr_layout
== FR_COL
&& nfr
!= NULL
)
3765 * Now go downwards to find the bottom or top frame in it.
3769 if (nfr
->fr_layout
== FR_LEAF
)
3775 if (nfr
->fr_layout
== FR_ROW
)
3777 /* Find the frame at the cursor row. */
3778 while (fr
->fr_next
!= NULL
3779 && frame2win(fr
)->w_wincol
+ fr
->fr_width
3780 <= curwin
->w_wincol
+ curwin
->w_wcol
)
3783 if (nfr
->fr_layout
== FR_COL
&& up
)
3784 while (fr
->fr_next
!= NULL
)
3790 if (foundfr
!= NULL
)
3791 win_goto(foundfr
->fr_win
);
3795 * Move to left or right window.
3798 win_goto_hor(left
, count
)
3799 int left
; /* TRUE to go to left win */
3806 foundfr
= curwin
->w_frame
;
3810 * First go upwards in the tree of frames until we find a left or
3822 if (fr
->fr_parent
->fr_layout
== FR_ROW
&& nfr
!= NULL
)
3828 * Now go downwards to find the leftmost or rightmost frame in it.
3832 if (nfr
->fr_layout
== FR_LEAF
)
3838 if (nfr
->fr_layout
== FR_COL
)
3840 /* Find the frame at the cursor row. */
3841 while (fr
->fr_next
!= NULL
3842 && frame2win(fr
)->w_winrow
+ fr
->fr_height
3843 <= curwin
->w_winrow
+ curwin
->w_wrow
)
3846 if (nfr
->fr_layout
== FR_ROW
&& left
)
3847 while (fr
->fr_next
!= NULL
)
3853 if (foundfr
!= NULL
)
3854 win_goto(foundfr
->fr_win
);
3859 * Make window "wp" the current window.
3862 win_enter(wp
, undo_sync
)
3866 win_enter_ext(wp
, undo_sync
, FALSE
);
3870 * Make window wp the current window.
3871 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
3872 * been closed and isn't valid.
3875 win_enter_ext(wp
, undo_sync
, curwin_invalid
)
3881 int other_buffer
= FALSE
;
3884 if (wp
== curwin
&& !curwin_invalid
) /* nothing to do */
3888 if (!curwin_invalid
)
3891 * Be careful: If autocommands delete the window, return now.
3893 if (wp
->w_buffer
!= curbuf
)
3895 apply_autocmds(EVENT_BUFLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
3896 other_buffer
= TRUE
;
3900 apply_autocmds(EVENT_WINLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
3904 /* autocmds may abort script processing */
3911 /* sync undo before leaving the current buffer */
3912 if (undo_sync
&& curbuf
!= wp
->w_buffer
)
3914 /* may have to copy the buffer options when 'cpo' contains 'S' */
3915 if (wp
->w_buffer
!= curbuf
)
3916 buf_copy_options(wp
->w_buffer
, BCO_ENTER
| BCO_NOHELP
);
3917 if (!curwin_invalid
)
3919 prevwin
= curwin
; /* remember for CTRL-W p */
3920 curwin
->w_redr_status
= TRUE
;
3923 curbuf
= wp
->w_buffer
;
3925 #ifdef FEAT_VIRTUALEDIT
3926 if (!virtual_active())
3927 curwin
->w_cursor
.coladd
= 0;
3929 changed_line_abv_curs(); /* assume cursor position needs updating */
3931 if (curwin
->w_localdir
!= NULL
)
3933 /* Window has a local directory: Save current directory as global
3934 * directory (unless that was done already) and change to the local
3936 if (globaldir
== NULL
)
3938 char_u cwd
[MAXPATHL
];
3940 if (mch_dirname(cwd
, MAXPATHL
) == OK
)
3941 globaldir
= vim_strsave(cwd
);
3943 mch_chdir((char *)curwin
->w_localdir
);
3944 shorten_fnames(TRUE
);
3946 else if (globaldir
!= NULL
)
3948 /* Window doesn't have a local directory and we are not in the global
3949 * directory: Change to the global directory. */
3950 mch_chdir((char *)globaldir
);
3951 vim_free(globaldir
);
3953 shorten_fnames(TRUE
);
3957 apply_autocmds(EVENT_WINENTER
, NULL
, NULL
, FALSE
, curbuf
);
3959 apply_autocmds(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
);
3965 curwin
->w_redr_status
= TRUE
;
3966 redraw_tabline
= TRUE
;
3968 redraw_later(VALID
); /* causes status line redraw */
3970 /* set window height to desired minimal value */
3971 if (curwin
->w_height
< p_wh
&& !curwin
->w_p_wfh
)
3972 win_setheight((int)p_wh
);
3973 else if (curwin
->w_height
== 0)
3976 #ifdef FEAT_VERTSPLIT
3977 /* set window width to desired minimal value */
3978 if (curwin
->w_width
< p_wiw
&& !curwin
->w_p_wfw
)
3979 win_setwidth((int)p_wiw
);
3983 setmouse(); /* in case jumped to/from help buffer */
3986 /* Change directories when the 'acd' option is set. */
3990 #endif /* FEAT_WINDOWS */
3992 #if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO)
3994 * Jump to the first open window that contains buffer "buf", if one exists.
3995 * Returns a pointer to the window found, otherwise NULL.
3998 buf_jump_open_win(buf
)
4001 # ifdef FEAT_WINDOWS
4004 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
4005 if (wp
->w_buffer
== buf
)
4008 win_enter(wp
, FALSE
);
4011 if (curwin
->w_buffer
== buf
)
4018 * Jump to the first open window in any tab page that contains buffer "buf",
4020 * Returns a pointer to the window found, otherwise NULL.
4023 buf_jump_open_tab(buf
)
4026 # ifdef FEAT_WINDOWS
4030 /* First try the current tab page. */
4031 wp
= buf_jump_open_win(buf
);
4035 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
4038 for (wp
= tp
->tp_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
4039 if (wp
->w_buffer
== buf
)
4043 goto_tabpage_win(tp
, wp
);
4045 wp
= NULL
; /* something went wrong */
4052 if (curwin
->w_buffer
== buf
)
4060 * allocate a window structure and link it in the window list
4070 * allocate window structure and linesizes arrays
4072 newwin
= (win_T
*)alloc_clear((unsigned)sizeof(win_T
));
4073 if (newwin
!= NULL
&& win_alloc_lines(newwin
) == FAIL
)
4082 /* Don't execute autocommands while the window is not properly
4083 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4088 * link the window in the window list
4091 win_append(after
, newwin
);
4093 #ifdef FEAT_VERTSPLIT
4094 newwin
->w_wincol
= 0;
4095 newwin
->w_width
= Columns
;
4098 /* position the display and the cursor at the top of the file. */
4099 newwin
->w_topline
= 1;
4101 newwin
->w_topfill
= 0;
4103 newwin
->w_botline
= 2;
4104 newwin
->w_cursor
.lnum
= 1;
4105 #ifdef FEAT_SCROLLBIND
4106 newwin
->w_scbind_pos
= 1;
4109 /* We won't calculate w_fraction until resizing the window */
4110 newwin
->w_fraction
= 0;
4111 newwin
->w_prev_fraction_row
= -1;
4116 gui_create_scrollbar(&newwin
->w_scrollbars
[SBAR_LEFT
],
4118 gui_create_scrollbar(&newwin
->w_scrollbars
[SBAR_RIGHT
],
4119 SBAR_RIGHT
, newwin
);
4123 /* init w: variables */
4124 init_var_dict(&newwin
->w_vars
, &newwin
->w_winvar
);
4127 foldInitWin(newwin
);
4132 #ifdef FEAT_SEARCH_EXTRA
4133 newwin
->w_match_head
= NULL
;
4134 newwin
->w_next_match_id
= 4;
4140 #if defined(FEAT_WINDOWS) || defined(PROTO)
4143 * remove window 'wp' from the window list and free the structure
4148 tabpage_T
*tp
; /* tab page "win" is in, NULL for current */
4153 /* Don't execute autocommands while the window is halfway being deleted.
4154 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
4158 #ifdef FEAT_MZSCHEME
4159 mzscheme_window_free(wp
);
4167 python_window_free(wp
);
4171 tcl_window_free(wp
);
4175 ruby_window_free(wp
);
4178 clear_winopt(&wp
->w_onebuf_opt
);
4179 clear_winopt(&wp
->w_allbuf_opt
);
4182 vars_clear(&wp
->w_vars
.dv_hashtab
); /* free all w: variables */
4189 for (i
= 0; i
< wp
->w_tagstacklen
; ++i
)
4190 vim_free(wp
->w_tagstack
[i
].tagname
);
4192 vim_free(wp
->w_localdir
);
4194 #ifdef FEAT_SEARCH_EXTRA
4198 #ifdef FEAT_JUMPLIST
4202 #ifdef FEAT_QUICKFIX
4209 gui_mch_destroy_scrollbar(&wp
->w_scrollbars
[SBAR_LEFT
]);
4210 gui_mch_destroy_scrollbar(&wp
->w_scrollbars
[SBAR_RIGHT
]);
4212 #endif /* FEAT_GUI */
4223 * Append window "wp" in the window list after window "after".
4226 win_append(after
, wp
)
4231 if (after
== NULL
) /* after NULL is in front of the first */
4234 before
= after
->w_next
;
4236 wp
->w_next
= before
;
4245 before
->w_prev
= wp
;
4249 * Remove a window from the window list.
4254 tabpage_T
*tp
; /* tab page "win" is in, NULL for current */
4256 if (wp
->w_prev
!= NULL
)
4257 wp
->w_prev
->w_next
= wp
->w_next
;
4258 else if (tp
== NULL
)
4259 firstwin
= wp
->w_next
;
4261 tp
->tp_firstwin
= wp
->w_next
;
4262 if (wp
->w_next
!= NULL
)
4263 wp
->w_next
->w_prev
= wp
->w_prev
;
4264 else if (tp
== NULL
)
4265 lastwin
= wp
->w_prev
;
4267 tp
->tp_lastwin
= wp
->w_prev
;
4271 * Append frame "frp" in a frame list after frame "after".
4274 frame_append(after
, frp
)
4275 frame_T
*after
, *frp
;
4277 frp
->fr_next
= after
->fr_next
;
4278 after
->fr_next
= frp
;
4279 if (frp
->fr_next
!= NULL
)
4280 frp
->fr_next
->fr_prev
= frp
;
4281 frp
->fr_prev
= after
;
4285 * Insert frame "frp" in a frame list before frame "before".
4288 frame_insert(before
, frp
)
4289 frame_T
*before
, *frp
;
4291 frp
->fr_next
= before
;
4292 frp
->fr_prev
= before
->fr_prev
;
4293 before
->fr_prev
= frp
;
4294 if (frp
->fr_prev
!= NULL
)
4295 frp
->fr_prev
->fr_next
= frp
;
4297 frp
->fr_parent
->fr_child
= frp
;
4301 * Remove a frame from a frame list.
4307 if (frp
->fr_prev
!= NULL
)
4308 frp
->fr_prev
->fr_next
= frp
->fr_next
;
4310 frp
->fr_parent
->fr_child
= frp
->fr_next
;
4311 if (frp
->fr_next
!= NULL
)
4312 frp
->fr_next
->fr_prev
= frp
->fr_prev
;
4315 #endif /* FEAT_WINDOWS */
4318 * Allocate w_lines[] for window "wp".
4319 * Return FAIL for failure, OK for success.
4325 wp
->w_lines_valid
= 0;
4326 wp
->w_lines
= (wline_T
*)alloc_clear((unsigned)(Rows
* sizeof(wline_T
)));
4327 if (wp
->w_lines
== NULL
)
4333 * free lsize arrays for a window
4339 vim_free(wp
->w_lines
);
4344 * Called from win_new_shellsize() after Rows changed.
4345 * This only does the current tab page, others must be done when made active.
4350 int h
= (int)ROWS_AVAIL
;
4352 if (firstwin
== NULL
) /* not initialized yet */
4355 if (h
< frame_minheight(topframe
, NULL
))
4356 h
= frame_minheight(topframe
, NULL
);
4358 /* First try setting the heights of windows with 'winfixheight'. If
4359 * that doesn't result in the right height, forget about that option. */
4360 frame_new_height(topframe
, h
, FALSE
, TRUE
);
4361 if (topframe
->fr_height
!= h
)
4362 frame_new_height(topframe
, h
, FALSE
, FALSE
);
4364 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4368 win_new_height(firstwin
, h
);
4372 curtab
->tp_ch_used
= p_ch
;
4376 /* Disabled: don't want making the screen smaller make a window larger. */
4378 win_equal(curwin
, FALSE
, 'v');
4382 #if defined(FEAT_VERTSPLIT) || defined(PROTO)
4384 * Called from win_new_shellsize() after Columns changed.
4389 if (firstwin
== NULL
) /* not initialized yet */
4392 /* First try setting the widths of windows with 'winfixwidth'. If that
4393 * doesn't result in the right width, forget about that option. */
4394 frame_new_width(topframe
, (int)Columns
, FALSE
, TRUE
);
4395 if (topframe
->fr_width
!= Columns
)
4396 frame_new_width(topframe
, (int)Columns
, FALSE
, FALSE
);
4398 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4400 /* Disabled: don't want making the screen smaller make a window larger. */
4402 win_equal(curwin
, FALSE
, 'h');
4407 #if defined(FEAT_CMDWIN) || defined(PROTO)
4409 * Save the size of all windows in "gap".
4418 ga_init2(gap
, (int)sizeof(int), 1);
4419 if (ga_grow(gap
, win_count() * 2) == OK
)
4420 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
4422 ((int *)gap
->ga_data
)[gap
->ga_len
++] =
4423 wp
->w_width
+ wp
->w_vsep_width
;
4424 ((int *)gap
->ga_data
)[gap
->ga_len
++] = wp
->w_height
;
4429 * Restore window sizes, but only if the number of windows is still the same.
4430 * Does not free the growarray.
4433 win_size_restore(gap
)
4439 if (win_count() * 2 == gap
->ga_len
)
4442 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
4444 frame_setwidth(wp
->w_frame
, ((int *)gap
->ga_data
)[i
++]);
4445 win_setheight_win(((int *)gap
->ga_data
)[i
++], wp
);
4447 /* recompute the window positions */
4448 (void)win_comp_pos();
4451 #endif /* FEAT_CMDWIN */
4453 #if defined(FEAT_WINDOWS) || defined(PROTO)
4455 * Update the position for all windows, using the width and height of the
4457 * Returns the row just after the last window.
4462 int row
= tabline_height();
4465 frame_comp_pos(topframe
, &row
, &col
);
4470 * Update the position of the windows in frame "topfrp", using the width and
4471 * height of the frames.
4472 * "*row" and "*col" are the top-left position of the frame. They are updated
4473 * to the bottom-right position plus one.
4476 frame_comp_pos(topfrp
, row
, col
)
4483 #ifdef FEAT_VERTSPLIT
4488 wp
= topfrp
->fr_win
;
4491 if (wp
->w_winrow
!= *row
4492 #ifdef FEAT_VERTSPLIT
4493 || wp
->w_wincol
!= *col
4497 /* position changed, redraw */
4498 wp
->w_winrow
= *row
;
4499 #ifdef FEAT_VERTSPLIT
4500 wp
->w_wincol
= *col
;
4502 redraw_win_later(wp
, NOT_VALID
);
4503 wp
->w_redr_status
= TRUE
;
4505 *row
+= wp
->w_height
+ wp
->w_status_height
;
4506 #ifdef FEAT_VERTSPLIT
4507 *col
+= wp
->w_width
+ wp
->w_vsep_width
;
4512 #ifdef FEAT_VERTSPLIT
4516 for (frp
= topfrp
->fr_child
; frp
!= NULL
; frp
= frp
->fr_next
)
4518 #ifdef FEAT_VERTSPLIT
4519 if (topfrp
->fr_layout
== FR_ROW
)
4520 *row
= startrow
; /* all frames are at the same row */
4522 *col
= startcol
; /* all frames are at the same col */
4524 frame_comp_pos(frp
, row
, col
);
4529 #endif /* FEAT_WINDOWS */
4532 * Set current window height and take care of repositioning other windows to
4536 win_setheight(height
)
4539 win_setheight_win(height
, curwin
);
4543 * Set the window height of window "win" and take care of repositioning other
4544 * windows to fit around it.
4547 win_setheight_win(height
, win
)
4555 /* Always keep current window at least one line high, even when
4556 * 'winminheight' is zero. */
4566 frame_setheight(win
->w_frame
, height
+ win
->w_status_height
);
4568 /* recompute the window positions */
4569 row
= win_comp_pos();
4571 if (height
> topframe
->fr_height
)
4572 height
= topframe
->fr_height
;
4573 win
->w_height
= height
;
4578 * If there is extra space created between the last window and the command
4581 if (full_screen
&& msg_scrolled
== 0 && row
< cmdline_row
)
4582 screen_fill(row
, cmdline_row
, 0, (int)Columns
, ' ', ' ', 0);
4587 redraw_all_later(NOT_VALID
);
4590 #if defined(FEAT_WINDOWS) || defined(PROTO)
4593 * Set the height of a frame to "height" and take care that all frames and
4594 * windows inside it are resized. Also resize frames on the left and right if
4595 * the are in the same FR_ROW frame.
4598 * If the frame is part of a FR_COL frame, try fitting the frame in that
4599 * frame. If that doesn't work (the FR_COL frame is too small), recursively
4600 * go to containing frames to resize them and make room.
4601 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
4602 * Check for the minimal height of the FR_ROW frame.
4603 * At the top level we can also use change the command line height.
4606 frame_setheight(curfrp
, height
)
4610 int room
; /* total number of lines available */
4611 int take
; /* number of lines taken from other windows */
4612 int room_cmdline
; /* lines available from cmdline */
4618 /* If the height already is the desired value, nothing to do. */
4619 if (curfrp
->fr_height
== height
)
4622 if (curfrp
->fr_parent
== NULL
)
4624 /* topframe: can only change the command line */
4625 if (height
> ROWS_AVAIL
)
4626 height
= ROWS_AVAIL
;
4628 frame_new_height(curfrp
, height
, FALSE
, FALSE
);
4630 else if (curfrp
->fr_parent
->fr_layout
== FR_ROW
)
4632 /* Row of frames: Also need to resize frames left and right of this
4633 * one. First check for the minimal height of these. */
4634 h
= frame_minheight(curfrp
->fr_parent
, NULL
);
4637 frame_setheight(curfrp
->fr_parent
, height
);
4642 * Column of frames: try to change only frames in this column.
4644 #ifdef FEAT_VERTSPLIT
4647 * 1: compute room available, if it's not enough try resizing the
4649 * 2: compute the room available and adjust the height to it.
4650 * Try not to reduce the height of a window with 'winfixheight' set.
4652 for (run
= 1; run
<= 2; ++run
)
4659 for (frp
= curfrp
->fr_parent
->fr_child
; frp
!= NULL
;
4663 && frp
->fr_win
!= NULL
4664 && frp
->fr_win
->w_p_wfh
)
4665 room_reserved
+= frp
->fr_height
;
4666 room
+= frp
->fr_height
;
4668 room
-= frame_minheight(frp
, NULL
);
4670 #ifdef FEAT_VERTSPLIT
4671 if (curfrp
->fr_width
!= Columns
)
4676 room_cmdline
= Rows
- p_ch
- (lastwin
->w_winrow
4677 + lastwin
->w_height
+ lastwin
->w_status_height
);
4678 if (room_cmdline
< 0)
4682 if (height
<= room
+ room_cmdline
)
4684 #ifdef FEAT_VERTSPLIT
4685 if (run
== 2 || curfrp
->fr_width
== Columns
)
4688 if (height
> room
+ room_cmdline
)
4689 height
= room
+ room_cmdline
;
4692 #ifdef FEAT_VERTSPLIT
4693 frame_setheight(curfrp
->fr_parent
, height
4694 + frame_minheight(curfrp
->fr_parent
, NOWIN
) - (int)p_wmh
- 1);
4700 * Compute the number of lines we will take from others frames (can be
4703 take
= height
- curfrp
->fr_height
;
4705 /* If there is not enough room, also reduce the height of a window
4706 * with 'winfixheight' set. */
4707 if (height
> room
+ room_cmdline
- room_reserved
)
4708 room_reserved
= room
+ room_cmdline
- height
;
4709 /* If there is only a 'winfixheight' window and making the
4710 * window smaller, need to make the other window taller. */
4711 if (take
< 0 && room
- curfrp
->fr_height
< room_reserved
)
4714 if (take
> 0 && room_cmdline
> 0)
4716 /* use lines from cmdline first */
4717 if (take
< room_cmdline
)
4718 room_cmdline
= take
;
4719 take
-= room_cmdline
;
4720 topframe
->fr_height
+= room_cmdline
;
4724 * set the current frame to the new height
4726 frame_new_height(curfrp
, height
, FALSE
, FALSE
);
4729 * First take lines from the frames after the current frame. If
4730 * that is not enough, takes lines from frames above the current
4733 for (run
= 0; run
< 2; ++run
)
4736 frp
= curfrp
->fr_next
; /* 1st run: start with next window */
4738 frp
= curfrp
->fr_prev
; /* 2nd run: start with prev window */
4739 while (frp
!= NULL
&& take
!= 0)
4741 h
= frame_minheight(frp
, NULL
);
4742 if (room_reserved
> 0
4743 && frp
->fr_win
!= NULL
4744 && frp
->fr_win
->w_p_wfh
)
4746 if (room_reserved
>= frp
->fr_height
)
4747 room_reserved
-= frp
->fr_height
;
4750 if (frp
->fr_height
- room_reserved
> take
)
4751 room_reserved
= frp
->fr_height
- take
;
4752 take
-= frp
->fr_height
- room_reserved
;
4753 frame_new_height(frp
, room_reserved
, FALSE
, FALSE
);
4759 if (frp
->fr_height
- take
< h
)
4761 take
-= frp
->fr_height
- h
;
4762 frame_new_height(frp
, h
, FALSE
, FALSE
);
4766 frame_new_height(frp
, frp
->fr_height
- take
,
4780 #if defined(FEAT_VERTSPLIT) || defined(PROTO)
4782 * Set current window width and take care of repositioning other windows to
4789 win_setwidth_win(width
, curwin
);
4793 win_setwidth_win(width
, wp
)
4797 /* Always keep current window at least one column wide, even when
4798 * 'winminwidth' is zero. */
4807 frame_setwidth(wp
->w_frame
, width
+ wp
->w_vsep_width
);
4809 /* recompute the window positions */
4810 (void)win_comp_pos();
4812 redraw_all_later(NOT_VALID
);
4816 * Set the width of a frame to "width" and take care that all frames and
4817 * windows inside it are resized. Also resize frames above and below if the
4818 * are in the same FR_ROW frame.
4820 * Strategy is similar to frame_setheight().
4823 frame_setwidth(curfrp
, width
)
4827 int room
; /* total number of lines available */
4828 int take
; /* number of lines taken from other windows */
4834 /* If the width already is the desired value, nothing to do. */
4835 if (curfrp
->fr_width
== width
)
4838 if (curfrp
->fr_parent
== NULL
)
4839 /* topframe: can't change width */
4842 if (curfrp
->fr_parent
->fr_layout
== FR_COL
)
4844 /* Column of frames: Also need to resize frames above and below of
4845 * this one. First check for the minimal width of these. */
4846 w
= frame_minwidth(curfrp
->fr_parent
, NULL
);
4849 frame_setwidth(curfrp
->fr_parent
, width
);
4854 * Row of frames: try to change only frames in this row.
4857 * 1: compute room available, if it's not enough try resizing the
4859 * 2: compute the room available and adjust the width to it.
4861 for (run
= 1; run
<= 2; ++run
)
4865 for (frp
= curfrp
->fr_parent
->fr_child
; frp
!= NULL
;
4869 && frp
->fr_win
!= NULL
4870 && frp
->fr_win
->w_p_wfw
)
4871 room_reserved
+= frp
->fr_width
;
4872 room
+= frp
->fr_width
;
4874 room
-= frame_minwidth(frp
, NULL
);
4879 if (run
== 2 || curfrp
->fr_height
>= ROWS_AVAIL
)
4885 frame_setwidth(curfrp
->fr_parent
, width
4886 + frame_minwidth(curfrp
->fr_parent
, NOWIN
) - (int)p_wmw
- 1);
4890 * Compute the number of lines we will take from others frames (can be
4893 take
= width
- curfrp
->fr_width
;
4895 /* If there is not enough room, also reduce the width of a window
4896 * with 'winfixwidth' set. */
4897 if (width
> room
- room_reserved
)
4898 room_reserved
= room
- width
;
4899 /* If there is only a 'winfixwidth' window and making the
4900 * window smaller, need to make the other window narrower. */
4901 if (take
< 0 && room
- curfrp
->fr_width
< room_reserved
)
4905 * set the current frame to the new width
4907 frame_new_width(curfrp
, width
, FALSE
, FALSE
);
4910 * First take lines from the frames right of the current frame. If
4911 * that is not enough, takes lines from frames left of the current
4914 for (run
= 0; run
< 2; ++run
)
4917 frp
= curfrp
->fr_next
; /* 1st run: start with next window */
4919 frp
= curfrp
->fr_prev
; /* 2nd run: start with prev window */
4920 while (frp
!= NULL
&& take
!= 0)
4922 w
= frame_minwidth(frp
, NULL
);
4923 if (room_reserved
> 0
4924 && frp
->fr_win
!= NULL
4925 && frp
->fr_win
->w_p_wfw
)
4927 if (room_reserved
>= frp
->fr_width
)
4928 room_reserved
-= frp
->fr_width
;
4931 if (frp
->fr_width
- room_reserved
> take
)
4932 room_reserved
= frp
->fr_width
- take
;
4933 take
-= frp
->fr_width
- room_reserved
;
4934 frame_new_width(frp
, room_reserved
, FALSE
, FALSE
);
4940 if (frp
->fr_width
- take
< w
)
4942 take
-= frp
->fr_width
- w
;
4943 frame_new_width(frp
, w
, FALSE
, FALSE
);
4947 frame_new_width(frp
, frp
->fr_width
- take
,
4960 #endif /* FEAT_VERTSPLIT */
4963 * Check 'winminheight' for a valid value.
4972 /* loop until there is a 'winminheight' that is possible */
4975 /* TODO: handle vertical splits */
4977 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
4978 room
+= wp
->w_height
- p_wmh
;
4993 * Status line of dragwin is dragged "offset" lines down (negative is up).
4996 win_drag_status_line(dragwin
, offset
)
5004 int up
; /* if TRUE, drag status line up, otherwise down */
5007 fr
= dragwin
->w_frame
;
5009 if (fr
!= topframe
) /* more than one window */
5012 /* When the parent frame is not a column of frames, its parent should
5014 if (fr
->fr_layout
!= FR_COL
)
5017 if (fr
!= topframe
) /* only a row of windows, may drag statusline */
5022 /* If this is the last frame in a column, may want to resize the parent
5023 * frame instead (go two up to skip a row of frames). */
5024 while (curfr
!= topframe
&& curfr
->fr_next
== NULL
)
5033 if (offset
< 0) /* drag up */
5037 /* sum up the room of the current frame and above it */
5040 /* only one window */
5041 room
= fr
->fr_height
- frame_minheight(fr
, NULL
);
5046 for (fr
= fr
->fr_child
; ; fr
= fr
->fr_next
)
5048 room
+= fr
->fr_height
- frame_minheight(fr
, NULL
);
5053 fr
= curfr
->fr_next
; /* put fr at frame that grows */
5055 else /* drag down */
5059 * Only dragging the last status line can reduce p_ch.
5061 room
= Rows
- cmdline_row
;
5062 if (curfr
->fr_next
== NULL
)
5068 /* sum up the room of frames below of the current one */
5069 for (fr
= curfr
->fr_next
; fr
!= NULL
; fr
= fr
->fr_next
)
5070 room
+= fr
->fr_height
- frame_minheight(fr
, NULL
);
5071 fr
= curfr
; /* put fr at window that grows */
5074 if (room
< offset
) /* Not enough room */
5075 offset
= room
; /* Move as far as we can */
5080 * Grow frame fr by "offset" lines.
5081 * Doesn't happen when dragging the last status line up.
5084 frame_new_height(fr
, fr
->fr_height
+ offset
, up
, FALSE
);
5087 fr
= curfr
; /* current frame gets smaller */
5089 fr
= curfr
->fr_next
; /* next frame gets smaller */
5092 * Now make the other frames smaller.
5094 while (fr
!= NULL
&& offset
> 0)
5096 n
= frame_minheight(fr
, NULL
);
5097 if (fr
->fr_height
- offset
<= n
)
5099 offset
-= fr
->fr_height
- n
;
5100 frame_new_height(fr
, n
, !up
, FALSE
);
5104 frame_new_height(fr
, fr
->fr_height
- offset
, !up
, FALSE
);
5112 row
= win_comp_pos();
5113 screen_fill(row
, cmdline_row
, 0, (int)Columns
, ' ', ' ', 0);
5115 p_ch
= Rows
- cmdline_row
;
5118 curtab
->tp_ch_used
= p_ch
;
5119 redraw_all_later(SOME_VALID
);
5123 #ifdef FEAT_VERTSPLIT
5125 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5128 win_drag_vsep_line(dragwin
, offset
)
5135 int left
; /* if TRUE, drag separator line left, otherwise right */
5138 fr
= dragwin
->w_frame
;
5139 if (fr
== topframe
) /* only one window (cannot happen?) */
5143 /* When the parent frame is not a row of frames, its parent should be. */
5144 if (fr
->fr_layout
!= FR_ROW
)
5146 if (fr
== topframe
) /* only a column of windows (cannot happen?) */
5152 /* If this is the last frame in a row, may want to resize a parent
5154 while (curfr
->fr_next
== NULL
)
5167 if (offset
< 0) /* drag left */
5171 /* sum up the room of the current frame and left of it */
5173 for (fr
= fr
->fr_child
; ; fr
= fr
->fr_next
)
5175 room
+= fr
->fr_width
- frame_minwidth(fr
, NULL
);
5179 fr
= curfr
->fr_next
; /* put fr at frame that grows */
5181 else /* drag right */
5184 /* sum up the room of frames right of the current one */
5186 for (fr
= curfr
->fr_next
; fr
!= NULL
; fr
= fr
->fr_next
)
5187 room
+= fr
->fr_width
- frame_minwidth(fr
, NULL
);
5188 fr
= curfr
; /* put fr at window that grows */
5191 if (room
< offset
) /* Not enough room */
5192 offset
= room
; /* Move as far as we can */
5193 if (offset
<= 0) /* No room at all, quit. */
5196 /* grow frame fr by offset lines */
5197 frame_new_width(fr
, fr
->fr_width
+ offset
, left
, FALSE
);
5199 /* shrink other frames: current and at the left or at the right */
5201 fr
= curfr
; /* current frame gets smaller */
5203 fr
= curfr
->fr_next
; /* next frame gets smaller */
5205 while (fr
!= NULL
&& offset
> 0)
5207 n
= frame_minwidth(fr
, NULL
);
5208 if (fr
->fr_width
- offset
<= n
)
5210 offset
-= fr
->fr_width
- n
;
5211 frame_new_width(fr
, n
, !left
, FALSE
);
5215 frame_new_width(fr
, fr
->fr_width
- offset
, !left
, FALSE
);
5223 (void)win_comp_pos();
5224 redraw_all_later(NOT_VALID
);
5226 #endif /* FEAT_VERTSPLIT */
5227 #endif /* FEAT_MOUSE */
5229 #endif /* FEAT_WINDOWS */
5232 * Set the height of a window.
5233 * This takes care of the things inside the window, not what happens to the
5234 * window position, the frame or to other windows.
5237 win_new_height(wp
, height
)
5242 int sline
, line_size
;
5243 #define FRACTION_MULT 16384L
5245 /* Don't want a negative height. Happens when splitting a tiny window.
5246 * Will equalize heights soon to fix it. */
5249 if (wp
->w_height
== height
)
5250 return; /* nothing to do */
5252 if (wp
->w_wrow
!= wp
->w_prev_fraction_row
&& wp
->w_height
> 0)
5253 wp
->w_fraction
= ((long)wp
->w_wrow
* FRACTION_MULT
5254 + FRACTION_MULT
/ 2) / (long)wp
->w_height
;
5256 wp
->w_height
= height
;
5259 /* Don't change w_topline when height is zero. Don't set w_topline when
5260 * 'scrollbind' is set and this isn't the current window. */
5262 #ifdef FEAT_SCROLLBIND
5263 && (!wp
->w_p_scb
|| wp
== curwin
)
5268 * Find a value for w_topline that shows the cursor at the same
5269 * relative position in the window as before (more or less).
5271 lnum
= wp
->w_cursor
.lnum
;
5272 if (lnum
< 1) /* can happen when starting up */
5274 wp
->w_wrow
= ((long)wp
->w_fraction
* (long)height
- 1L) / FRACTION_MULT
;
5275 line_size
= plines_win_col(wp
, lnum
, (long)(wp
->w_cursor
.col
)) - 1;
5276 sline
= wp
->w_wrow
- line_size
;
5280 /* Make sure the whole cursor line is visible, if possible. */
5281 int rows
= plines_win(wp
, lnum
, FALSE
);
5283 if (sline
> wp
->w_height
- rows
)
5285 sline
= wp
->w_height
- rows
;
5286 wp
->w_wrow
-= rows
- line_size
;
5293 * Cursor line would go off top of screen if w_wrow was this high.
5294 * Make cursor line the first line in the window. If not enough
5295 * room use w_skipcol;
5297 wp
->w_wrow
= line_size
;
5298 if (wp
->w_wrow
>= wp
->w_height
5299 && (W_WIDTH(wp
) - win_col_off(wp
)) > 0)
5301 wp
->w_skipcol
+= W_WIDTH(wp
) - win_col_off(wp
);
5303 while (wp
->w_wrow
>= wp
->w_height
)
5305 wp
->w_skipcol
+= W_WIDTH(wp
) - win_col_off(wp
)
5313 while (sline
> 0 && lnum
> 1)
5316 hasFoldingWin(wp
, lnum
, &lnum
, NULL
, TRUE
, NULL
);
5319 /* first line in buffer is folded */
5327 if (lnum
== wp
->w_topline
)
5328 line_size
= plines_win_nofill(wp
, lnum
, TRUE
)
5332 line_size
= plines_win(wp
, lnum
, TRUE
);
5339 * Line we want at top would go off top of screen. Use next
5343 hasFoldingWin(wp
, lnum
, NULL
, &lnum
, TRUE
, NULL
);
5346 wp
->w_wrow
-= line_size
+ sline
;
5350 /* First line of file reached, use that as topline. */
5352 wp
->w_wrow
-= sline
;
5355 set_topline(wp
, lnum
);
5362 curs_columns(FALSE
); /* validate w_wrow */
5364 wp
->w_prev_fraction_row
= wp
->w_wrow
;
5366 win_comp_scroll(wp
);
5367 redraw_win_later(wp
, SOME_VALID
);
5369 wp
->w_redr_status
= TRUE
;
5371 invalidate_botline_win(wp
);
5374 #ifdef FEAT_VERTSPLIT
5376 * Set the width of a window.
5379 win_new_width(wp
, width
)
5383 wp
->w_width
= width
;
5384 wp
->w_lines_valid
= 0;
5385 changed_line_abv_curs_win(wp
);
5386 invalidate_botline_win(wp
);
5390 curs_columns(TRUE
); /* validate w_wrow */
5392 redraw_win_later(wp
, NOT_VALID
);
5393 wp
->w_redr_status
= TRUE
;
5401 wp
->w_p_scr
= ((unsigned)wp
->w_height
>> 1);
5402 if (wp
->w_p_scr
== 0)
5407 * command_height: called whenever p_ch has been changed
5415 int old_p_ch
= curtab
->tp_ch_used
;
5417 /* Use the value of p_ch that we remembered. This is needed for when the
5418 * GUI starts up, we can't be sure in what order things happen. And when
5419 * p_ch was changed in another tab page. */
5420 curtab
->tp_ch_used
= p_ch
;
5422 /* Find bottom frame with width of screen. */
5423 frp
= lastwin
->w_frame
;
5424 # ifdef FEAT_VERTSPLIT
5425 while (frp
->fr_width
!= Columns
&& frp
->fr_parent
!= NULL
)
5426 frp
= frp
->fr_parent
;
5429 /* Avoid changing the height of a window with 'winfixheight' set. */
5430 while (frp
->fr_prev
!= NULL
&& frp
->fr_layout
== FR_LEAF
5431 && frp
->fr_win
->w_p_wfh
)
5434 if (starting
!= NO_SCREEN
)
5436 cmdline_row
= Rows
- p_ch
;
5438 if (p_ch
> old_p_ch
) /* p_ch got bigger */
5440 while (p_ch
> old_p_ch
)
5446 cmdline_row
= Rows
- p_ch
;
5449 h
= frp
->fr_height
- frame_minheight(frp
, NULL
);
5450 if (h
> p_ch
- old_p_ch
)
5451 h
= p_ch
- old_p_ch
;
5453 frame_add_height(frp
, -h
);
5457 /* Recompute window positions. */
5458 (void)win_comp_pos();
5460 /* clear the lines added to cmdline */
5462 screen_fill((int)(cmdline_row
), (int)Rows
, 0,
5463 (int)Columns
, ' ', ' ', 0);
5464 msg_row
= cmdline_row
;
5465 redraw_cmdline
= TRUE
;
5469 if (msg_row
< cmdline_row
)
5470 msg_row
= cmdline_row
;
5471 redraw_cmdline
= TRUE
;
5473 frame_add_height(frp
, (int)(old_p_ch
- p_ch
));
5475 /* Recompute window positions. */
5476 if (frp
!= lastwin
->w_frame
)
5477 (void)win_comp_pos();
5479 cmdline_row
= Rows
- p_ch
;
5480 win_setheight(cmdline_row
);
5484 #if defined(FEAT_WINDOWS) || defined(PROTO)
5486 * Resize frame "frp" to be "n" lines higher (negative for less high).
5487 * Also resize the frames it is contained in.
5490 frame_add_height(frp
, n
)
5494 frame_new_height(frp
, frp
->fr_height
+ n
, FALSE
, FALSE
);
5497 frp
= frp
->fr_parent
;
5500 frp
->fr_height
+= n
;
5505 * Add or remove a status line for the bottom window(s), according to the
5506 * value of 'laststatus'.
5509 last_status(morewin
)
5510 int morewin
; /* pretend there are two or more windows */
5512 /* Don't make a difference between horizontal or vertical split. */
5513 last_status_rec(topframe
, (p_ls
== 2
5514 || (p_ls
== 1 && (morewin
|| lastwin
!= firstwin
))));
5518 last_status_rec(fr
, statusline
)
5525 if (fr
->fr_layout
== FR_LEAF
)
5528 if (wp
->w_status_height
!= 0 && !statusline
)
5530 /* remove status line */
5531 win_new_height(wp
, wp
->w_height
+ 1);
5532 wp
->w_status_height
= 0;
5535 else if (wp
->w_status_height
== 0 && statusline
)
5537 /* Find a frame to take a line from. */
5539 while (fp
->fr_height
<= frame_minheight(fp
, NULL
))
5546 /* In a column of frames: go to frame above. If already at
5547 * the top or in a row of frames: go to parent. */
5548 if (fp
->fr_parent
->fr_layout
== FR_COL
&& fp
->fr_prev
!= NULL
)
5553 wp
->w_status_height
= 1;
5556 frame_new_height(fp
, fp
->fr_height
- 1, FALSE
, FALSE
);
5557 frame_fix_height(wp
);
5558 (void)win_comp_pos();
5561 win_new_height(wp
, wp
->w_height
- 1);
5563 redraw_all_later(SOME_VALID
);
5566 #ifdef FEAT_VERTSPLIT
5567 else if (fr
->fr_layout
== FR_ROW
)
5569 /* vertically split windows, set status line for each one */
5570 for (fp
= fr
->fr_child
; fp
!= NULL
; fp
= fp
->fr_next
)
5571 last_status_rec(fp
, statusline
);
5576 /* horizontally split window, set status line for last one */
5577 for (fp
= fr
->fr_child
; fp
->fr_next
!= NULL
; fp
= fp
->fr_next
)
5579 last_status_rec(fp
, statusline
);
5584 * Return the number of lines used by the tab page line.
5589 #ifdef FEAT_GUI_TABLINE
5590 /* When the GUI has the tabline then this always returns zero. */
5591 if (gui_use_tabline())
5597 case 1: return (first_tabpage
->tp_next
== NULL
) ? 0 : 1;
5602 #endif /* FEAT_WINDOWS */
5604 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
5606 * Get the file name at the cursor.
5607 * If Visual mode is active, use the selected text if it's in one line.
5608 * Returns the name in allocated memory, NULL for failure.
5611 grab_file_name(count
, file_lnum
)
5613 linenr_T
*file_lnum
;
5621 if (get_visual_text(NULL
, &ptr
, &len
) == FAIL
)
5623 return find_file_name_in_path(ptr
, len
,
5624 FNAME_MESS
|FNAME_EXP
|FNAME_REL
, count
, curbuf
->b_ffname
);
5627 return file_name_at_cursor(FNAME_MESS
|FNAME_HYP
|FNAME_EXP
|FNAME_REL
, count
,
5633 * Return the file name under or after the cursor.
5635 * The 'path' option is searched if the file name is not absolute.
5636 * The string returned has been alloc'ed and should be freed by the caller.
5637 * NULL is returned if the file name or file is not found.
5640 * FNAME_MESS give error messages
5641 * FNAME_EXP expand to path
5642 * FNAME_HYP check for hypertext link
5643 * FNAME_INCL apply "includeexpr"
5646 file_name_at_cursor(options
, count
, file_lnum
)
5649 linenr_T
*file_lnum
;
5651 return file_name_in_line(ml_get_curline(),
5652 curwin
->w_cursor
.col
, options
, count
, curbuf
->b_ffname
,
5657 * Return the name of the file under or after ptr[col].
5658 * Otherwise like file_name_at_cursor().
5661 file_name_in_line(line
, col
, options
, count
, rel_fname
, file_lnum
)
5666 char_u
*rel_fname
; /* file we are searching relative to */
5667 linenr_T
*file_lnum
; /* line number after the file name */
5673 * search forward for what could be the start of a file name
5676 while (*ptr
!= NUL
&& !vim_isfilec(*ptr
))
5678 if (*ptr
== NUL
) /* nothing found */
5680 if (options
& FNAME_MESS
)
5681 EMSG(_("E446: No file name under cursor"));
5686 * Search backward for first char of the file name.
5687 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
5692 if (has_mbyte
&& (len
= (*mb_head_off
)(line
, ptr
- 1)) > 0)
5696 if (vim_isfilec(ptr
[-1])
5697 || ((options
& FNAME_HYP
) && path_is_url(ptr
- 1)))
5704 * Search forward for the last char of the file name.
5705 * Also allow "://" when ':' is not in 'isfname'.
5708 while (vim_isfilec(ptr
[len
])
5709 || ((options
& FNAME_HYP
) && path_is_url(ptr
+ len
)))
5712 len
+= (*mb_ptr2len
)(ptr
+ len
);
5718 * If there is trailing punctuation, remove it.
5719 * But don't remove "..", could be a directory name.
5721 if (len
> 2 && vim_strchr((char_u
*)".,:;!", ptr
[len
- 1]) != NULL
5722 && ptr
[len
- 2] != '.')
5725 if (file_lnum
!= NULL
)
5729 /* Get the number after the file name and a separator character */
5735 ++p
; /* skip the separator */
5738 *file_lnum
= (int)getdigits(&p
);
5742 return find_file_name_in_path(ptr
, len
, options
, count
, rel_fname
);
5745 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
5746 static char_u
*eval_includeexpr
__ARGS((char_u
*ptr
, int len
));
5749 eval_includeexpr(ptr
, len
)
5755 set_vim_var_string(VV_FNAME
, ptr
, len
);
5756 res
= eval_to_string_safe(curbuf
->b_p_inex
, NULL
,
5757 was_set_insecurely((char_u
*)"includeexpr", OPT_LOCAL
));
5758 set_vim_var_string(VV_FNAME
, NULL
, 0);
5764 * Return the name of the file ptr[len] in 'path'.
5765 * Otherwise like file_name_at_cursor().
5768 find_file_name_in_path(ptr
, len
, options
, count
, rel_fname
)
5773 char_u
*rel_fname
; /* file we are searching relative to */
5777 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
5778 char_u
*tofree
= NULL
;
5780 if ((options
& FNAME_INCL
) && *curbuf
->b_p_inex
!= NUL
)
5782 tofree
= eval_includeexpr(ptr
, len
);
5786 len
= (int)STRLEN(ptr
);
5791 if (options
& FNAME_EXP
)
5793 file_name
= find_file_in_path(ptr
, len
, options
& ~FNAME_MESS
,
5796 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
5798 * If the file could not be found in a normal way, try applying
5799 * 'includeexpr' (unless done already).
5801 if (file_name
== NULL
5802 && !(options
& FNAME_INCL
) && *curbuf
->b_p_inex
!= NUL
)
5804 tofree
= eval_includeexpr(ptr
, len
);
5808 len
= (int)STRLEN(ptr
);
5809 file_name
= find_file_in_path(ptr
, len
, options
& ~FNAME_MESS
,
5814 if (file_name
== NULL
&& (options
& FNAME_MESS
))
5818 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr
);
5822 /* Repeat finding the file "count" times. This matters when it
5823 * appears several times in the path. */
5824 while (file_name
!= NULL
&& --count
> 0)
5826 vim_free(file_name
);
5827 file_name
= find_file_in_path(ptr
, len
, options
, FALSE
, rel_fname
);
5831 file_name
= vim_strnsave(ptr
, len
);
5833 # if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
5839 #endif /* FEAT_SEARCHPATH */
5842 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
5843 * Also check for ":\\", which MS Internet Explorer accepts, return
5850 if (STRNCMP(p
, "://", (size_t)3) == 0)
5852 else if (STRNCMP(p
, ":\\\\", (size_t)3) == 0)
5853 return URL_BACKSLASH
;
5858 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
5859 * Return URL_BACKSLASH for "name:\\".
5860 * Return zero otherwise.
5863 path_with_url(fname
)
5868 for (p
= fname
; isalpha(*p
); ++p
)
5870 return path_is_url(p
);
5874 * Return TRUE if "name" is a full (absolute) path name or URL.
5880 return (path_with_url(name
) != 0 || mch_isFullName(name
));
5884 * Get absolute file name into buffer "buf[len]".
5886 * return FAIL for failure, OK otherwise
5889 vim_FullName(fname
, buf
, len
, force
)
5890 char_u
*fname
, *buf
;
5892 int force
; /* force expansion even when already absolute */
5901 url
= path_with_url(fname
);
5903 retval
= mch_FullName(fname
, buf
, len
, force
);
5904 if (url
|| retval
== FAIL
)
5906 /* something failed; use the file name (truncate when too long) */
5907 vim_strncpy(buf
, fname
, len
- 1);
5909 #if defined(MACOS_CLASSIC) || defined(OS2) || defined(MSDOS) || defined(MSWIN)
5916 * Return the minimal number of rows that is needed on the screen to display
5917 * the current number of windows.
5928 if (firstwin
== NULL
) /* not initialized yet */
5933 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
5935 n
= frame_minheight(tp
->tp_topframe
, NULL
);
5939 total
+= tabline_height();
5941 total
= 1; /* at least one window should have a line! */
5943 total
+= 1; /* count the room for the command line */
5948 * Return TRUE if there is only one window (in the current tab page), not
5949 * counting a help or preview window, unless it is the current window.
5958 /* If there is another tab page there always is another window. */
5959 if (first_tabpage
->tp_next
!= NULL
)
5962 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
5963 if (!((wp
->w_buffer
->b_help
&& !curbuf
->b_help
)
5964 # ifdef FEAT_QUICKFIX
5969 return (count
<= 1);
5975 #if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO)
5977 * Correct the cursor line number in other windows. Used after changing the
5978 * current buffer, and before applying autocommands.
5979 * When "do_curwin" is TRUE, also check current window.
5982 check_lnums(do_curwin
)
5990 FOR_ALL_TAB_WINDOWS(tp
, wp
)
5991 if ((do_curwin
|| wp
!= curwin
) && wp
->w_buffer
== curbuf
)
5997 if (wp
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
5998 wp
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
5999 if (wp
->w_topline
> curbuf
->b_ml
.ml_line_count
)
6000 wp
->w_topline
= curbuf
->b_ml
.ml_line_count
;
6005 #if defined(FEAT_WINDOWS) || defined(PROTO)
6008 * A snapshot of the window sizes, to restore them after closing the help
6010 * Only these fields are used:
6016 * fr_win (only valid for the old curwin, NULL otherwise)
6020 * Create a snapshot of the current frame sizes.
6025 clear_snapshot(curtab
);
6026 make_snapshot_rec(topframe
, &curtab
->tp_snapshot
);
6030 make_snapshot_rec(fr
, frp
)
6034 *frp
= (frame_T
*)alloc_clear((unsigned)sizeof(frame_T
));
6037 (*frp
)->fr_layout
= fr
->fr_layout
;
6038 # ifdef FEAT_VERTSPLIT
6039 (*frp
)->fr_width
= fr
->fr_width
;
6041 (*frp
)->fr_height
= fr
->fr_height
;
6042 if (fr
->fr_next
!= NULL
)
6043 make_snapshot_rec(fr
->fr_next
, &((*frp
)->fr_next
));
6044 if (fr
->fr_child
!= NULL
)
6045 make_snapshot_rec(fr
->fr_child
, &((*frp
)->fr_child
));
6046 if (fr
->fr_layout
== FR_LEAF
&& fr
->fr_win
== curwin
)
6047 (*frp
)->fr_win
= curwin
;
6051 * Remove any existing snapshot.
6057 clear_snapshot_rec(tp
->tp_snapshot
);
6058 tp
->tp_snapshot
= NULL
;
6062 clear_snapshot_rec(fr
)
6067 clear_snapshot_rec(fr
->fr_next
);
6068 clear_snapshot_rec(fr
->fr_child
);
6074 * Restore a previously created snapshot, if there is any.
6075 * This is only done if the screen size didn't change and the window layout is
6079 restore_snapshot(close_curwin
)
6080 int close_curwin
; /* closing current window */
6084 if (curtab
->tp_snapshot
!= NULL
6085 # ifdef FEAT_VERTSPLIT
6086 && curtab
->tp_snapshot
->fr_width
== topframe
->fr_width
6088 && curtab
->tp_snapshot
->fr_height
== topframe
->fr_height
6089 && check_snapshot_rec(curtab
->tp_snapshot
, topframe
) == OK
)
6091 wp
= restore_snapshot_rec(curtab
->tp_snapshot
, topframe
);
6093 if (wp
!= NULL
&& close_curwin
)
6095 redraw_all_later(CLEAR
);
6097 clear_snapshot(curtab
);
6101 * Check if frames "sn" and "fr" have the same layout, same following frames
6102 * and same children.
6105 check_snapshot_rec(sn
, fr
)
6109 if (sn
->fr_layout
!= fr
->fr_layout
6110 || (sn
->fr_next
== NULL
) != (fr
->fr_next
== NULL
)
6111 || (sn
->fr_child
== NULL
) != (fr
->fr_child
== NULL
)
6112 || (sn
->fr_next
!= NULL
6113 && check_snapshot_rec(sn
->fr_next
, fr
->fr_next
) == FAIL
)
6114 || (sn
->fr_child
!= NULL
6115 && check_snapshot_rec(sn
->fr_child
, fr
->fr_child
) == FAIL
))
6121 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6122 * following frames and children.
6123 * Returns a pointer to the old current window, or NULL.
6126 restore_snapshot_rec(sn
, fr
)
6133 fr
->fr_height
= sn
->fr_height
;
6134 # ifdef FEAT_VERTSPLIT
6135 fr
->fr_width
= sn
->fr_width
;
6137 if (fr
->fr_layout
== FR_LEAF
)
6139 frame_new_height(fr
, fr
->fr_height
, FALSE
, FALSE
);
6140 # ifdef FEAT_VERTSPLIT
6141 frame_new_width(fr
, fr
->fr_width
, FALSE
, FALSE
);
6145 if (sn
->fr_next
!= NULL
)
6147 wp2
= restore_snapshot_rec(sn
->fr_next
, fr
->fr_next
);
6151 if (sn
->fr_child
!= NULL
)
6153 wp2
= restore_snapshot_rec(sn
->fr_child
, fr
->fr_child
);
6162 #if (defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
6164 * Return TRUE if there is any vertically split window.
6171 if (topframe
->fr_layout
== FR_ROW
)
6174 if (topframe
->fr_layout
== FR_COL
)
6175 for (fr
= topframe
->fr_child
; fr
!= NULL
; fr
= fr
->fr_next
)
6176 if (fr
->fr_layout
== FR_ROW
)
6183 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6185 * Add match to the match list of window 'wp'. The pattern 'pat' will be
6186 * highligted with the group 'grp' with priority 'prio'.
6187 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6188 * If no particular ID is desired, -1 must be specified for 'id'.
6189 * Return ID of added match, -1 on failure.
6192 match_add(wp
, grp
, pat
, prio
, id
)
6205 if (*grp
== NUL
|| *pat
== NUL
)
6207 if (id
< -1 || id
== 0)
6209 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id
);
6214 cur
= wp
->w_match_head
;
6219 EMSGN("E801: ID already taken: %ld", id
);
6225 if ((hlg_id
= syn_namen2id(grp
, STRLEN(grp
))) == 0)
6227 EMSG2(_(e_nogroup
), grp
);
6230 if ((regprog
= vim_regcomp(pat
, RE_MAGIC
)) == NULL
)
6232 EMSG2(_(e_invarg2
), pat
);
6236 /* Find available match ID. */
6239 cur
= wp
->w_match_head
;
6240 while (cur
!= NULL
&& cur
->id
!= wp
->w_next_match_id
)
6243 id
= wp
->w_next_match_id
;
6244 wp
->w_next_match_id
++;
6247 /* Build new match. */
6248 m
= (matchitem_T
*)alloc(sizeof(matchitem_T
));
6251 m
->pattern
= vim_strsave(pat
);
6253 m
->match
.regprog
= regprog
;
6254 m
->match
.rmm_ic
= FALSE
;
6255 m
->match
.rmm_maxcol
= 0;
6257 /* Insert new match. The match list is in ascending order with regard to
6258 * the match priorities. */
6259 cur
= wp
->w_match_head
;
6261 while (cur
!= NULL
&& prio
>= cur
->priority
)
6267 wp
->w_match_head
= m
;
6272 redraw_later(SOME_VALID
);
6277 * Delete match with ID 'id' in the match list of window 'wp'.
6278 * Print error messages if 'perr' is TRUE.
6281 match_delete(wp
, id
, perr
)
6286 matchitem_T
*cur
= wp
->w_match_head
;
6287 matchitem_T
*prev
= cur
;
6292 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)",
6296 while (cur
!= NULL
&& cur
->id
!= id
)
6304 EMSGN("E803: ID not found: %ld", id
);
6308 wp
->w_match_head
= cur
->next
;
6310 prev
->next
= cur
->next
;
6311 vim_free(cur
->match
.regprog
);
6312 vim_free(cur
->pattern
);
6314 redraw_later(SOME_VALID
);
6319 * Delete all matches in the match list of window 'wp'.
6327 while (wp
->w_match_head
!= NULL
)
6329 m
= wp
->w_match_head
->next
;
6330 vim_free(wp
->w_match_head
->match
.regprog
);
6331 vim_free(wp
->w_match_head
->pattern
);
6332 vim_free(wp
->w_match_head
);
6333 wp
->w_match_head
= m
;
6335 redraw_later(SOME_VALID
);
6339 * Get match from ID 'id' in window 'wp'.
6340 * Return NULL if match not found.
6347 matchitem_T
*cur
= wp
->w_match_head
;
6349 while (cur
!= NULL
&& cur
->id
!= id
)