Mercurial > vim
annotate src/window.c @ 16819:91619e48e1a7 v8.1.1411
patch 8.1.1411: Coverity warns for divide by zero
commit https://github.com/vim/vim/commit/7833dab73c658e65f38553af89fd60c57a11ef49
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon May 27 22:01:40 2019 +0200
patch 8.1.1411: Coverity warns for divide by zero
Problem: Coverity warns for divide by zero.
Solution: Make sure width is larger than zero.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 27 May 2019 22:15:05 +0200 |
parents | f5487021fdad |
children | ce04ebdf26b8 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
10013
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read a list of people who contributed. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 #include "vim.h" | |
11 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
12 static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
13 static void win_init(win_T *newp, win_T *oldp, int flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
14 static void win_init_some(win_T *newp, win_T *oldp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
15 static void frame_comp_pos(frame_T *topfrp, int *row, int *col); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
16 static void frame_setheight(frame_T *curfrp, int height); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
17 static void frame_setwidth(frame_T *curfrp, int width); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
18 static void win_exchange(long); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
19 static void win_rotate(int, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
20 static void win_totop(int size, int flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
21 static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
22 static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
23 static frame_T *win_altframe(win_T *win, tabpage_T *tp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
24 static tabpage_T *alt_tabpage(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
25 static win_T *frame2win(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
26 static int frame_has_win(frame_T *frp, win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
27 static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
28 static int frame_fixed_height(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
29 static int frame_fixed_width(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
30 static void frame_add_statusline(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
31 static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
32 static void frame_add_vsep(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
33 static int frame_minwidth(frame_T *topfrp, win_T *next_curwin); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
34 static void frame_fix_width(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
35 static int win_alloc_firstwin(win_T *oldwin); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
36 static void new_frame(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
37 static tabpage_T *alloc_tabpage(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
38 static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
39 static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
40 static void frame_fix_height(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
41 static int frame_minheight(frame_T *topfrp, win_T *next_curwin); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
42 static void win_enter_ext(win_T *wp, int undo_sync, int no_curwin, int trigger_new_autocmds, int trigger_enter_autocmds, int trigger_leave_autocmds); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
43 static void win_free(win_T *wp, tabpage_T *tp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
44 static void frame_append(frame_T *after, frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
45 static void frame_insert(frame_T *before, frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
46 static void frame_remove(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
47 static void win_goto_ver(int up, long count); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
48 static void win_goto_hor(int left, long count); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
49 static void frame_add_height(frame_T *frp, int n); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
50 static void last_status_rec(frame_T *fr, int statusline); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
51 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
52 static void make_snapshot_rec(frame_T *fr, frame_T **frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
53 static void clear_snapshot(tabpage_T *tp, int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
54 static void clear_snapshot_rec(frame_T *fr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
55 static int check_snapshot_rec(frame_T *sn, frame_T *fr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
56 static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
57 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
58 static int frame_check_height(frame_T *topfrp, int height); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
59 static int frame_check_width(frame_T *topfrp, int width); |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
60 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
61 static win_T *win_alloc(win_T *after, int hidden); |
7 | 62 |
1187 | 63 #define NOWIN (win_T *)-1 /* non-existing window */ |
7 | 64 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
65 #define ROWS_AVAIL (Rows - p_ch - tabline_height()) |
826 | 66 |
67 static char *m_onlyone = N_("Already only one window"); | |
68 | |
7 | 69 /* |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
70 * All CTRL-W window commands are handled here, called from normal_cmd(). |
7 | 71 */ |
72 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
73 do_window( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
74 int nchar, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
75 long Prenum, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
76 int xchar) /* extra char from ":wincmd gx" or NUL */ |
7 | 77 { |
78 long Prenum1; | |
79 win_T *wp; | |
80 #if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID) | |
81 char_u *ptr; | |
681 | 82 linenr_T lnum = -1; |
7 | 83 #endif |
84 #ifdef FEAT_FIND_ID | |
85 int type = FIND_DEFINE; | |
86 int len; | |
87 #endif | |
88 char_u cbuf[40]; | |
89 | |
15937
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
90 Prenum1 = Prenum == 0 ? 1 : Prenum; |
7 | 91 |
92 #ifdef FEAT_CMDWIN | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
93 # define CHECK_CMDWIN \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
94 do { \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
95 if (cmdwin_type != 0) \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
96 { \ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
97 emsg(_(e_cmdwin)); \ |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
98 return; \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
99 } \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
100 } while (0) |
7 | 101 #else |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
102 # define CHECK_CMDWIN do { /**/ } while (0) |
7 | 103 #endif |
104 | |
105 switch (nchar) | |
106 { | |
107 /* split current window in two parts, horizontally */ | |
108 case 'S': | |
109 case Ctrl_S: | |
110 case 's': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
111 CHECK_CMDWIN; |
7 | 112 reset_VIsual_and_resel(); /* stop Visual mode */ |
635 | 113 #ifdef FEAT_QUICKFIX |
114 /* When splitting the quickfix window open a new buffer in it, | |
115 * don't replicate the quickfix buffer. */ | |
116 if (bt_quickfix(curbuf)) | |
117 goto newwindow; | |
118 #endif | |
7 | 119 #ifdef FEAT_GUI |
120 need_mouse_correct = TRUE; | |
121 #endif | |
7009 | 122 (void)win_split((int)Prenum, 0); |
7 | 123 break; |
124 | |
125 /* split current window in two parts, vertically */ | |
126 case Ctrl_V: | |
127 case 'v': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
128 CHECK_CMDWIN; |
7 | 129 reset_VIsual_and_resel(); /* stop Visual mode */ |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
130 #ifdef FEAT_QUICKFIX |
1664 | 131 /* When splitting the quickfix window open a new buffer in it, |
132 * don't replicate the quickfix buffer. */ | |
133 if (bt_quickfix(curbuf)) | |
134 goto newwindow; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
135 #endif |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
136 #ifdef FEAT_GUI |
7 | 137 need_mouse_correct = TRUE; |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
138 #endif |
7009 | 139 (void)win_split((int)Prenum, WSP_VERT); |
7 | 140 break; |
141 | |
142 /* split current window and edit alternate file */ | |
143 case Ctrl_HAT: | |
144 case '^': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
145 CHECK_CMDWIN; |
7 | 146 reset_VIsual_and_resel(); /* stop Visual mode */ |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
147 |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
148 if (buflist_findnr(Prenum == 0 |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
149 ? curwin->w_alt_fnum : Prenum) == NULL) |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
150 { |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
151 if (Prenum == 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
152 emsg(_(e_noalt)); |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
153 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
154 semsg(_("E92: Buffer %ld not found"), Prenum); |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
155 break; |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
156 } |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
157 |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
158 if (!curbuf_locked() && win_split(0, 0) == OK) |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
159 (void)buflist_getfile( |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
160 Prenum == 0 ? curwin->w_alt_fnum : Prenum, |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
161 (linenr_T)0, GETF_ALT, FALSE); |
7 | 162 break; |
163 | |
164 /* open new window */ | |
165 case Ctrl_N: | |
166 case 'n': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
167 CHECK_CMDWIN; |
7 | 168 reset_VIsual_and_resel(); /* stop Visual mode */ |
635 | 169 #ifdef FEAT_QUICKFIX |
170 newwindow: | |
171 #endif | |
7 | 172 if (Prenum) |
1664 | 173 /* window height */ |
174 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum); | |
7 | 175 else |
176 cbuf[0] = NUL; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
177 #if defined(FEAT_QUICKFIX) |
1664 | 178 if (nchar == 'v' || nchar == Ctrl_V) |
179 STRCAT(cbuf, "v"); | |
180 #endif | |
7 | 181 STRCAT(cbuf, "new"); |
182 do_cmdline_cmd(cbuf); | |
183 break; | |
184 | |
185 /* quit current window */ | |
186 case Ctrl_Q: | |
187 case 'q': | |
188 reset_VIsual_and_resel(); /* stop Visual mode */ | |
6432 | 189 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum); |
6398 | 190 do_cmdline_cmd(cbuf); |
7 | 191 break; |
192 | |
193 /* close current window */ | |
194 case Ctrl_C: | |
195 case 'c': | |
196 reset_VIsual_and_resel(); /* stop Visual mode */ | |
6432 | 197 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum); |
6398 | 198 do_cmdline_cmd(cbuf); |
7 | 199 break; |
200 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
201 #if defined(FEAT_QUICKFIX) |
7 | 202 /* close preview window */ |
203 case Ctrl_Z: | |
204 case 'z': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
205 CHECK_CMDWIN; |
7 | 206 reset_VIsual_and_resel(); /* stop Visual mode */ |
207 do_cmdline_cmd((char_u *)"pclose"); | |
208 break; | |
209 | |
210 /* cursor to preview window */ | |
211 case 'P': | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
212 FOR_ALL_WINDOWS(wp) |
7 | 213 if (wp->w_p_pvw) |
214 break; | |
215 if (wp == NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
216 emsg(_("E441: There is no preview window")); |
7 | 217 else |
218 win_goto(wp); | |
219 break; | |
220 #endif | |
221 | |
222 /* close all but current window */ | |
223 case Ctrl_O: | |
224 case 'o': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
225 CHECK_CMDWIN; |
7 | 226 reset_VIsual_and_resel(); /* stop Visual mode */ |
6432 | 227 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum); |
6398 | 228 do_cmdline_cmd(cbuf); |
7 | 229 break; |
230 | |
231 /* cursor to next window with wrap around */ | |
232 case Ctrl_W: | |
233 case 'w': | |
234 /* cursor to previous window with wrap around */ | |
235 case 'W': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
236 CHECK_CMDWIN; |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
237 if (ONE_WINDOW && Prenum != 1) /* just one window */ |
7 | 238 beep_flush(); |
239 else | |
240 { | |
241 if (Prenum) /* go to specified window */ | |
242 { | |
243 for (wp = firstwin; --Prenum > 0; ) | |
244 { | |
245 if (wp->w_next == NULL) | |
246 break; | |
247 else | |
248 wp = wp->w_next; | |
249 } | |
250 } | |
251 else | |
252 { | |
253 if (nchar == 'W') /* go to previous window */ | |
254 { | |
255 wp = curwin->w_prev; | |
256 if (wp == NULL) | |
257 wp = lastwin; /* wrap around */ | |
258 } | |
259 else /* go to next window */ | |
260 { | |
261 wp = curwin->w_next; | |
262 if (wp == NULL) | |
263 wp = firstwin; /* wrap around */ | |
264 } | |
265 } | |
266 win_goto(wp); | |
267 } | |
268 break; | |
269 | |
270 /* cursor to window below */ | |
271 case 'j': | |
272 case K_DOWN: | |
273 case Ctrl_J: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
274 CHECK_CMDWIN; |
7 | 275 win_goto_ver(FALSE, Prenum1); |
276 break; | |
277 | |
278 /* cursor to window above */ | |
279 case 'k': | |
280 case K_UP: | |
281 case Ctrl_K: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
282 CHECK_CMDWIN; |
7 | 283 win_goto_ver(TRUE, Prenum1); |
284 break; | |
285 | |
286 /* cursor to left window */ | |
287 case 'h': | |
288 case K_LEFT: | |
289 case Ctrl_H: | |
290 case K_BS: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
291 CHECK_CMDWIN; |
7 | 292 win_goto_hor(TRUE, Prenum1); |
293 break; | |
294 | |
295 /* cursor to right window */ | |
296 case 'l': | |
297 case K_RIGHT: | |
298 case Ctrl_L: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
299 CHECK_CMDWIN; |
7 | 300 win_goto_hor(FALSE, Prenum1); |
301 break; | |
302 | |
826 | 303 /* move window to new tab page */ |
304 case 'T': | |
1906 | 305 if (one_window()) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15490
diff
changeset
|
306 msg(_(m_onlyone)); |
826 | 307 else |
308 { | |
309 tabpage_T *oldtab = curtab; | |
310 tabpage_T *newtab; | |
311 | |
312 /* First create a new tab with the window, then go back to | |
313 * the old tab and close the window there. */ | |
944 | 314 wp = curwin; |
826 | 315 if (win_new_tabpage((int)Prenum) == OK |
316 && valid_tabpage(oldtab)) | |
317 { | |
318 newtab = curtab; | |
4354 | 319 goto_tabpage_tp(oldtab, TRUE, TRUE); |
826 | 320 if (curwin == wp) |
321 win_close(curwin, FALSE); | |
322 if (valid_tabpage(newtab)) | |
4354 | 323 goto_tabpage_tp(newtab, TRUE, TRUE); |
826 | 324 } |
325 } | |
326 break; | |
327 | |
7 | 328 /* cursor to top-left window */ |
329 case 't': | |
330 case Ctrl_T: | |
331 win_goto(firstwin); | |
332 break; | |
333 | |
334 /* cursor to bottom-right window */ | |
335 case 'b': | |
336 case Ctrl_B: | |
337 win_goto(lastwin); | |
338 break; | |
339 | |
340 /* cursor to last accessed (previous) window */ | |
341 case 'p': | |
342 case Ctrl_P: | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
343 if (!win_valid(prevwin)) |
7 | 344 beep_flush(); |
345 else | |
346 win_goto(prevwin); | |
347 break; | |
348 | |
349 /* exchange current and next window */ | |
350 case 'x': | |
351 case Ctrl_X: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
352 CHECK_CMDWIN; |
7 | 353 win_exchange(Prenum); |
354 break; | |
355 | |
356 /* rotate windows downwards */ | |
357 case Ctrl_R: | |
358 case 'r': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
359 CHECK_CMDWIN; |
7 | 360 reset_VIsual_and_resel(); /* stop Visual mode */ |
361 win_rotate(FALSE, (int)Prenum1); /* downwards */ | |
362 break; | |
363 | |
364 /* rotate windows upwards */ | |
365 case 'R': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
366 CHECK_CMDWIN; |
7 | 367 reset_VIsual_and_resel(); /* stop Visual mode */ |
368 win_rotate(TRUE, (int)Prenum1); /* upwards */ | |
369 break; | |
370 | |
371 /* move window to the very top/bottom/left/right */ | |
372 case 'K': | |
373 case 'J': | |
374 case 'H': | |
375 case 'L': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
376 CHECK_CMDWIN; |
7 | 377 win_totop((int)Prenum, |
378 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0) | |
379 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT)); | |
380 break; | |
381 | |
382 /* make all windows the same height */ | |
383 case '=': | |
384 #ifdef FEAT_GUI | |
385 need_mouse_correct = TRUE; | |
386 #endif | |
387 win_equal(NULL, FALSE, 'b'); | |
388 break; | |
389 | |
390 /* increase current window height */ | |
391 case '+': | |
392 #ifdef FEAT_GUI | |
393 need_mouse_correct = TRUE; | |
394 #endif | |
395 win_setheight(curwin->w_height + (int)Prenum1); | |
396 break; | |
397 | |
398 /* decrease current window height */ | |
399 case '-': | |
400 #ifdef FEAT_GUI | |
401 need_mouse_correct = TRUE; | |
402 #endif | |
403 win_setheight(curwin->w_height - (int)Prenum1); | |
404 break; | |
405 | |
406 /* set current window height */ | |
407 case Ctrl__: | |
408 case '_': | |
409 #ifdef FEAT_GUI | |
410 need_mouse_correct = TRUE; | |
411 #endif | |
412 win_setheight(Prenum ? (int)Prenum : 9999); | |
413 break; | |
414 | |
415 /* increase current window width */ | |
416 case '>': | |
417 #ifdef FEAT_GUI | |
418 need_mouse_correct = TRUE; | |
419 #endif | |
420 win_setwidth(curwin->w_width + (int)Prenum1); | |
421 break; | |
422 | |
423 /* decrease current window width */ | |
424 case '<': | |
425 #ifdef FEAT_GUI | |
426 need_mouse_correct = TRUE; | |
427 #endif | |
428 win_setwidth(curwin->w_width - (int)Prenum1); | |
429 break; | |
430 | |
431 /* set current window width */ | |
432 case '|': | |
433 #ifdef FEAT_GUI | |
434 need_mouse_correct = TRUE; | |
435 #endif | |
436 win_setwidth(Prenum != 0 ? (int)Prenum : 9999); | |
437 break; | |
438 | |
439 /* jump to tag and split window if tag exists (in preview window) */ | |
440 #if defined(FEAT_QUICKFIX) | |
441 case '}': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
442 CHECK_CMDWIN; |
7 | 443 if (Prenum) |
444 g_do_tagpreview = Prenum; | |
445 else | |
446 g_do_tagpreview = p_pvh; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12564
diff
changeset
|
447 #endif |
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12564
diff
changeset
|
448 /* FALLTHROUGH */ |
7 | 449 case ']': |
450 case Ctrl_RSB: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
451 CHECK_CMDWIN; |
6239 | 452 /* keep Visual mode, can select words to use as a tag */ |
7 | 453 if (Prenum) |
454 postponed_split = Prenum; | |
455 else | |
456 postponed_split = -1; | |
6251 | 457 #ifdef FEAT_QUICKFIX |
6264 | 458 if (nchar != '}') |
459 g_do_tagpreview = 0; | |
6251 | 460 #endif |
6239 | 461 |
462 /* Execute the command right here, required when "wincmd ]" | |
463 * was used in a function. */ | |
7 | 464 do_nv_ident(Ctrl_RSB, NUL); |
465 break; | |
466 | |
467 #ifdef FEAT_SEARCHPATH | |
468 /* edit file name under cursor in a new window */ | |
469 case 'f': | |
681 | 470 case 'F': |
7 | 471 case Ctrl_F: |
820 | 472 wingotofile: |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
473 CHECK_CMDWIN; |
344 | 474 |
681 | 475 ptr = grab_file_name(Prenum1, &lnum); |
7 | 476 if (ptr != NULL) |
477 { | |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
478 tabpage_T *oldtab = curtab; |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
479 win_T *oldwin = curwin; |
820 | 480 # ifdef FEAT_GUI |
7 | 481 need_mouse_correct = TRUE; |
820 | 482 # endif |
7 | 483 setpcmark(); |
484 if (win_split(0, 0) == OK) | |
485 { | |
2583 | 486 RESET_BINDING(curwin); |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
487 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL, |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
488 ECMD_HIDE, NULL) == FAIL) |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
489 { |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
490 /* Failed to open the file, close the window |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
491 * opened for it. */ |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
492 win_close(curwin, FALSE); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
493 goto_tabpage_win(oldtab, oldwin); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
494 } |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
495 else if (nchar == 'F' && lnum >= 0) |
681 | 496 { |
497 curwin->w_cursor.lnum = lnum; | |
498 check_cursor_lnum(); | |
499 beginline(BL_SOL | BL_FIX); | |
500 } | |
7 | 501 } |
502 vim_free(ptr); | |
503 } | |
504 break; | |
505 #endif | |
506 | |
507 #ifdef FEAT_FIND_ID | |
1187 | 508 /* Go to the first occurrence of the identifier under cursor along path in a |
7 | 509 * new window -- webb |
510 */ | |
511 case 'i': /* Go to any match */ | |
512 case Ctrl_I: | |
513 type = FIND_ANY; | |
514 /* FALLTHROUGH */ | |
515 case 'd': /* Go to definition, using 'define' */ | |
516 case Ctrl_D: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
517 CHECK_CMDWIN; |
7 | 518 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) |
519 break; | |
520 find_pattern_in_path(ptr, 0, len, TRUE, | |
521 Prenum == 0 ? TRUE : FALSE, type, | |
522 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM); | |
523 curwin->w_set_curswant = TRUE; | |
524 break; | |
525 #endif | |
526 | |
14397
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
527 /* Quickfix window only: view the result under the cursor in a new split. */ |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
528 #if defined(FEAT_QUICKFIX) |
170 | 529 case K_KENTER: |
530 case CAR: | |
531 if (bt_quickfix(curbuf)) | |
14397
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
532 qf_view_result(TRUE); |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
533 break; |
170 | 534 #endif |
535 | |
7 | 536 /* CTRL-W g extended commands */ |
537 case 'g': | |
538 case Ctrl_G: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
539 CHECK_CMDWIN; |
7 | 540 #ifdef USE_ON_FLY_SCROLL |
541 dont_scroll = TRUE; /* disallow scrolling here */ | |
542 #endif | |
543 ++no_mapping; | |
544 ++allow_keys; /* no mapping for xchar, but allow key codes */ | |
545 if (xchar == NUL) | |
1389 | 546 xchar = plain_vgetc(); |
7 | 547 LANGMAP_ADJUST(xchar, TRUE); |
548 --no_mapping; | |
549 --allow_keys; | |
550 #ifdef FEAT_CMDL_INFO | |
551 (void)add_to_showcmd(xchar); | |
552 #endif | |
553 switch (xchar) | |
554 { | |
555 #if defined(FEAT_QUICKFIX) | |
556 case '}': | |
557 xchar = Ctrl_RSB; | |
558 if (Prenum) | |
559 g_do_tagpreview = Prenum; | |
560 else | |
561 g_do_tagpreview = p_pvh; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12564
diff
changeset
|
562 #endif |
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12564
diff
changeset
|
563 /* FALLTHROUGH */ |
7 | 564 case ']': |
565 case Ctrl_RSB: | |
6239 | 566 /* keep Visual mode, can select words to use as a tag */ |
7 | 567 if (Prenum) |
568 postponed_split = Prenum; | |
569 else | |
570 postponed_split = -1; | |
571 | |
572 /* Execute the command right here, required when | |
573 * "wincmd g}" was used in a function. */ | |
574 do_nv_ident('g', xchar); | |
575 break; | |
576 | |
820 | 577 #ifdef FEAT_SEARCHPATH |
578 case 'f': /* CTRL-W gf: "gf" in a new tab page */ | |
839 | 579 case 'F': /* CTRL-W gF: "gF" in a new tab page */ |
2064
f398e0cc5b7a
updated for version 7.2.349
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
580 cmdmod.tab = tabpage_index(curtab) + 1; |
839 | 581 nchar = xchar; |
820 | 582 goto wingotofile; |
583 #endif | |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
584 case 't': // CTRL-W gt: go to next tab page |
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
585 goto_tabpage((int)Prenum); |
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
586 break; |
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
587 |
15937
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
588 case 'T': // CTRL-W gT: go to previous tab page |
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
589 goto_tabpage(-(int)Prenum1); |
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
590 break; |
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
591 |
7 | 592 default: |
593 beep_flush(); | |
594 break; | |
595 } | |
596 break; | |
597 | |
598 default: beep_flush(); | |
599 break; | |
600 } | |
601 } | |
602 | |
6489 | 603 /* |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
604 * Figure out the address type for ":wincmd". |
6489 | 605 */ |
606 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
607 get_wincmd_addr_type(char_u *arg, exarg_T *eap) |
6489 | 608 { |
609 switch (*arg) | |
610 { | |
611 case 'S': | |
612 case Ctrl_S: | |
613 case 's': | |
614 case Ctrl_N: | |
615 case 'n': | |
616 case 'j': | |
617 case Ctrl_J: | |
618 case 'k': | |
619 case Ctrl_K: | |
620 case 'T': | |
621 case Ctrl_R: | |
622 case 'r': | |
623 case 'R': | |
624 case 'K': | |
625 case 'J': | |
626 case '+': | |
627 case '-': | |
628 case Ctrl__: | |
629 case '_': | |
630 case '|': | |
631 case ']': | |
632 case Ctrl_RSB: | |
633 case 'g': | |
634 case Ctrl_G: | |
635 case Ctrl_V: | |
636 case 'v': | |
637 case 'h': | |
638 case Ctrl_H: | |
639 case 'l': | |
640 case Ctrl_L: | |
641 case 'H': | |
642 case 'L': | |
643 case '>': | |
644 case '<': | |
645 #if defined(FEAT_QUICKFIX) | |
646 case '}': | |
647 #endif | |
648 #ifdef FEAT_SEARCHPATH | |
649 case 'f': | |
650 case 'F': | |
651 case Ctrl_F: | |
652 #endif | |
653 #ifdef FEAT_FIND_ID | |
654 case 'i': | |
655 case Ctrl_I: | |
656 case 'd': | |
657 case Ctrl_D: | |
658 #endif | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
659 // window size or any count |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
660 eap->addr_type = ADDR_OTHER; |
6489 | 661 break; |
662 | |
663 case Ctrl_HAT: | |
664 case '^': | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
665 // buffer number |
6489 | 666 eap->addr_type = ADDR_BUFFERS; |
667 break; | |
668 | |
669 case Ctrl_Q: | |
670 case 'q': | |
671 case Ctrl_C: | |
672 case 'c': | |
673 case Ctrl_O: | |
674 case 'o': | |
675 case Ctrl_W: | |
676 case 'w': | |
677 case 'W': | |
678 case 'x': | |
679 case Ctrl_X: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
680 // window number |
6489 | 681 eap->addr_type = ADDR_WINDOWS; |
682 break; | |
683 | |
684 #if defined(FEAT_QUICKFIX) | |
685 case Ctrl_Z: | |
686 case 'z': | |
687 case 'P': | |
688 #endif | |
689 case 't': | |
690 case Ctrl_T: | |
691 case 'b': | |
692 case Ctrl_B: | |
693 case 'p': | |
694 case Ctrl_P: | |
695 case '=': | |
696 case CAR: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
697 // no count |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
698 eap->addr_type = ADDR_NONE; |
6489 | 699 break; |
700 } | |
701 } | |
702 | |
6432 | 703 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
704 cmd_with_count( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
705 char *cmd, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
706 char_u *bufp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
707 size_t bufsize, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
708 long Prenum) |
6432 | 709 { |
710 size_t len = STRLEN(cmd); | |
711 | |
712 STRCPY(bufp, cmd); | |
713 if (Prenum > 0) | |
714 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum); | |
715 } | |
716 | |
7 | 717 /* |
718 * split the current window, implements CTRL-W s and :split | |
719 * | |
720 * "size" is the height or width for the new window, 0 to use half of current | |
721 * height or width. | |
722 * | |
723 * "flags": | |
724 * WSP_ROOM: require enough room for new window | |
725 * WSP_VERT: vertical split. | |
726 * WSP_TOP: open window at the top-left of the shell (help window). | |
727 * WSP_BOT: open window at the bottom-right of the shell (quickfix window). | |
728 * WSP_HELP: creating the help window, keep layout snapshot | |
729 * | |
730 * return FAIL for failure, OK otherwise | |
731 */ | |
732 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
733 win_split(int size, int flags) |
7 | 734 { |
682 | 735 /* When the ":tab" modifier was used open a new tab page instead. */ |
736 if (may_open_tabpage() == OK) | |
737 return OK; | |
738 | |
7 | 739 /* Add flags from ":vertical", ":topleft" and ":botright". */ |
740 flags |= cmdmod.split; | |
741 if ((flags & WSP_TOP) && (flags & WSP_BOT)) | |
742 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
743 emsg(_("E442: Can't split topleft and botright at the same time")); |
7 | 744 return FAIL; |
745 } | |
746 | |
747 /* When creating the help window make a snapshot of the window layout. | |
748 * Otherwise clear the snapshot, it's now invalid. */ | |
749 if (flags & WSP_HELP) | |
1906 | 750 make_snapshot(SNAP_HELP_IDX); |
7 | 751 else |
1906 | 752 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 753 |
754 return win_split_ins(size, flags, NULL, 0); | |
755 } | |
756 | |
757 /* | |
3263 | 758 * When "new_wp" is NULL: split the current window in two. |
759 * When "new_wp" is not NULL: insert this window at the far | |
7 | 760 * top/left/right/bottom. |
761 * return FAIL for failure, OK otherwise | |
762 */ | |
1906 | 763 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
764 win_split_ins( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
765 int size, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
766 int flags, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
767 win_T *new_wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
768 int dir) |
7 | 769 { |
3263 | 770 win_T *wp = new_wp; |
7 | 771 win_T *oldwin; |
772 int new_size = size; | |
773 int i; | |
774 int need_status = 0; | |
775 int do_equal = FALSE; | |
776 int needed; | |
777 int available; | |
778 int oldwin_height = 0; | |
779 int layout; | |
6077 | 780 frame_T *frp, *curfrp, *frp2, *prevfrp; |
7 | 781 int before; |
6052 | 782 int minheight; |
6066 | 783 int wmh1; |
13670
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
784 int did_set_fraction = FALSE; |
7 | 785 |
786 if (flags & WSP_TOP) | |
787 oldwin = firstwin; | |
788 else if (flags & WSP_BOT) | |
789 oldwin = lastwin; | |
790 else | |
791 oldwin = curwin; | |
792 | |
793 /* add a status line when p_ls == 1 and splitting the first window */ | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
794 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0) |
7 | 795 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
796 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL) |
7 | 797 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
798 emsg(_(e_noroom)); |
7 | 799 return FAIL; |
800 } | |
801 need_status = STATUS_HEIGHT; | |
802 } | |
803 | |
1114 | 804 #ifdef FEAT_GUI |
805 /* May be needed for the scrollbars that are going to change. */ | |
806 if (gui.in_use) | |
807 out_flush(); | |
808 #endif | |
809 | |
7 | 810 if (flags & WSP_VERT) |
811 { | |
6068 | 812 int wmw1; |
813 int minwidth; | |
814 | |
7 | 815 layout = FR_ROW; |
816 | |
817 /* | |
818 * Check if we are able to split the current window and compute its | |
819 * width. | |
820 */ | |
6066 | 821 /* Current window requires at least 1 space. */ |
822 wmw1 = (p_wmw == 0 ? 1 : p_wmw); | |
823 needed = wmw1 + 1; | |
7 | 824 if (flags & WSP_ROOM) |
6066 | 825 needed += p_wiw - wmw1; |
6077 | 826 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 827 { |
6066 | 828 minwidth = frame_minwidth(topframe, NOWIN); |
7 | 829 available = topframe->fr_width; |
6052 | 830 needed += minwidth; |
7 | 831 } |
6077 | 832 else if (p_ea) |
833 { | |
834 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); | |
835 prevfrp = oldwin->w_frame; | |
836 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
837 frp = frp->fr_parent) | |
838 { | |
839 if (frp->fr_layout == FR_ROW) | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
840 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 841 if (frp2 != prevfrp) |
842 minwidth += frame_minwidth(frp2, NOWIN); | |
843 prevfrp = frp; | |
844 } | |
845 available = topframe->fr_width; | |
846 needed += minwidth; | |
847 } | |
7 | 848 else |
6052 | 849 { |
6066 | 850 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); |
851 available = oldwin->w_frame->fr_width; | |
852 needed += minwidth; | |
6052 | 853 } |
3263 | 854 if (available < needed && new_wp == NULL) |
7 | 855 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
856 emsg(_(e_noroom)); |
7 | 857 return FAIL; |
858 } | |
859 if (new_size == 0) | |
860 new_size = oldwin->w_width / 2; | |
6052 | 861 if (new_size > available - minwidth - 1) |
862 new_size = available - minwidth - 1; | |
6066 | 863 if (new_size < wmw1) |
864 new_size = wmw1; | |
7 | 865 |
866 /* if it doesn't fit in the current window, need win_equal() */ | |
867 if (oldwin->w_width - new_size - 1 < p_wmw) | |
868 do_equal = TRUE; | |
779 | 869 |
870 /* We don't like to take lines for the new window from a | |
871 * 'winfixwidth' window. Take them from a window to the left or right | |
11207
e6140f3d2be7
patch 8.0.0490: vertical split makes 'winfixwidth' window smaller
Christian Brabandt <cb@256bit.org>
parents:
11199
diff
changeset
|
872 * instead, if possible. Add one for the separator. */ |
779 | 873 if (oldwin->w_p_wfw) |
11207
e6140f3d2be7
patch 8.0.0490: vertical split makes 'winfixwidth' window smaller
Christian Brabandt <cb@256bit.org>
parents:
11199
diff
changeset
|
874 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin); |
1354 | 875 |
876 /* Only make all windows the same width if one of them (except oldwin) | |
877 * is wider than one of the split windows. */ | |
878 if (!do_equal && p_ea && size == 0 && *p_ead != 'v' | |
879 && oldwin->w_frame->fr_parent != NULL) | |
880 { | |
881 frp = oldwin->w_frame->fr_parent->fr_child; | |
882 while (frp != NULL) | |
883 { | |
884 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
885 && (frp->fr_win->w_width > new_size | |
886 || frp->fr_win->w_width > oldwin->w_width | |
6373 | 887 - new_size - 1)) |
1354 | 888 { |
889 do_equal = TRUE; | |
890 break; | |
891 } | |
892 frp = frp->fr_next; | |
893 } | |
894 } | |
7 | 895 } |
896 else | |
897 { | |
898 layout = FR_COL; | |
899 | |
900 /* | |
901 * Check if we are able to split the current window and compute its | |
902 * height. | |
903 */ | |
6066 | 904 /* Current window requires at least 1 space. */ |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
905 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin); |
6066 | 906 needed = wmh1 + STATUS_HEIGHT; |
7 | 907 if (flags & WSP_ROOM) |
6066 | 908 needed += p_wh - wmh1; |
6077 | 909 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 910 { |
6066 | 911 minheight = frame_minheight(topframe, NOWIN) + need_status; |
7 | 912 available = topframe->fr_height; |
6052 | 913 needed += minheight; |
7 | 914 } |
6077 | 915 else if (p_ea) |
916 { | |
917 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; | |
918 prevfrp = oldwin->w_frame; | |
919 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
920 frp = frp->fr_parent) | |
921 { | |
922 if (frp->fr_layout == FR_COL) | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
923 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 924 if (frp2 != prevfrp) |
925 minheight += frame_minheight(frp2, NOWIN); | |
926 prevfrp = frp; | |
927 } | |
928 available = topframe->fr_height; | |
929 needed += minheight; | |
930 } | |
7 | 931 else |
932 { | |
6066 | 933 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; |
934 available = oldwin->w_frame->fr_height; | |
935 needed += minheight; | |
7 | 936 } |
3263 | 937 if (available < needed && new_wp == NULL) |
7 | 938 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
939 emsg(_(e_noroom)); |
7 | 940 return FAIL; |
941 } | |
942 oldwin_height = oldwin->w_height; | |
943 if (need_status) | |
944 { | |
945 oldwin->w_status_height = STATUS_HEIGHT; | |
946 oldwin_height -= STATUS_HEIGHT; | |
947 } | |
948 if (new_size == 0) | |
949 new_size = oldwin_height / 2; | |
6052 | 950 if (new_size > available - minheight - STATUS_HEIGHT) |
951 new_size = available - minheight - STATUS_HEIGHT; | |
6066 | 952 if (new_size < wmh1) |
953 new_size = wmh1; | |
7 | 954 |
955 /* if it doesn't fit in the current window, need win_equal() */ | |
956 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh) | |
957 do_equal = TRUE; | |
958 | |
959 /* We don't like to take lines for the new window from a | |
960 * 'winfixheight' window. Take them from a window above or below | |
961 * instead, if possible. */ | |
962 if (oldwin->w_p_wfh) | |
963 { | |
13670
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
964 /* Set w_fraction now so that the cursor keeps the same relative |
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
965 * vertical position using the old height. */ |
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
966 set_fraction(oldwin); |
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
967 did_set_fraction = TRUE; |
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
968 |
7 | 969 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT, |
970 oldwin); | |
971 oldwin_height = oldwin->w_height; | |
972 if (need_status) | |
973 oldwin_height -= STATUS_HEIGHT; | |
974 } | |
1354 | 975 |
976 /* Only make all windows the same height if one of them (except oldwin) | |
977 * is higher than one of the split windows. */ | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
978 if (!do_equal && p_ea && size == 0 && *p_ead != 'h' |
1354 | 979 && oldwin->w_frame->fr_parent != NULL) |
980 { | |
981 frp = oldwin->w_frame->fr_parent->fr_child; | |
982 while (frp != NULL) | |
983 { | |
984 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
985 && (frp->fr_win->w_height > new_size | |
986 || frp->fr_win->w_height > oldwin_height - new_size | |
987 - STATUS_HEIGHT)) | |
988 { | |
989 do_equal = TRUE; | |
990 break; | |
991 } | |
992 frp = frp->fr_next; | |
993 } | |
994 } | |
7 | 995 } |
996 | |
997 /* | |
998 * allocate new window structure and link it in the window list | |
999 */ | |
1000 if ((flags & WSP_TOP) == 0 | |
1001 && ((flags & WSP_BOT) | |
1002 || (flags & WSP_BELOW) | |
1003 || (!(flags & WSP_ABOVE) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1004 && ( (flags & WSP_VERT) ? p_spr : p_sb)))) |
7 | 1005 { |
1006 /* new window below/right of current one */ | |
3263 | 1007 if (new_wp == NULL) |
1906 | 1008 wp = win_alloc(oldwin, FALSE); |
7 | 1009 else |
1010 win_append(oldwin, wp); | |
1011 } | |
1012 else | |
1013 { | |
3263 | 1014 if (new_wp == NULL) |
1906 | 1015 wp = win_alloc(oldwin->w_prev, FALSE); |
7 | 1016 else |
1017 win_append(oldwin->w_prev, wp); | |
1018 } | |
1019 | |
3263 | 1020 if (new_wp == NULL) |
7 | 1021 { |
1022 if (wp == NULL) | |
1023 return FAIL; | |
1024 | |
1906 | 1025 new_frame(wp); |
1026 if (wp->w_frame == NULL) | |
1027 { | |
1028 win_free(wp, NULL); | |
1029 return FAIL; | |
1030 } | |
1031 | |
675 | 1032 /* make the contents of the new window the same as the current one */ |
1822 | 1033 win_init(wp, curwin, flags); |
7 | 1034 } |
1035 | |
1036 /* | |
1037 * Reorganise the tree of frames to insert the new window. | |
1038 */ | |
1039 if (flags & (WSP_TOP | WSP_BOT)) | |
1040 { | |
1041 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0) | |
1042 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0)) | |
1043 { | |
1044 curfrp = topframe->fr_child; | |
1045 if (flags & WSP_BOT) | |
1046 while (curfrp->fr_next != NULL) | |
1047 curfrp = curfrp->fr_next; | |
1048 } | |
1049 else | |
1050 curfrp = topframe; | |
1051 before = (flags & WSP_TOP); | |
1052 } | |
1053 else | |
1054 { | |
1055 curfrp = oldwin->w_frame; | |
1056 if (flags & WSP_BELOW) | |
1057 before = FALSE; | |
1058 else if (flags & WSP_ABOVE) | |
1059 before = TRUE; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1060 else if (flags & WSP_VERT) |
7 | 1061 before = !p_spr; |
1062 else | |
1063 before = !p_sb; | |
1064 } | |
1065 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout) | |
1066 { | |
1067 /* Need to create a new frame in the tree to make a branch. */ | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16690
diff
changeset
|
1068 frp = (frame_T *)alloc_clear(sizeof(frame_T)); |
7 | 1069 *frp = *curfrp; |
1070 curfrp->fr_layout = layout; | |
1071 frp->fr_parent = curfrp; | |
1072 frp->fr_next = NULL; | |
1073 frp->fr_prev = NULL; | |
1074 curfrp->fr_child = frp; | |
1075 curfrp->fr_win = NULL; | |
1076 curfrp = frp; | |
1077 if (frp->fr_win != NULL) | |
1078 oldwin->w_frame = frp; | |
1079 else | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1080 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 1081 frp->fr_parent = curfrp; |
1082 } | |
1083 | |
3263 | 1084 if (new_wp == NULL) |
1906 | 1085 frp = wp->w_frame; |
7 | 1086 else |
3263 | 1087 frp = new_wp->w_frame; |
7 | 1088 frp->fr_parent = curfrp->fr_parent; |
1089 | |
1090 /* Insert the new frame at the right place in the frame list. */ | |
1091 if (before) | |
1092 frame_insert(curfrp, frp); | |
1093 else | |
1094 frame_append(curfrp, frp); | |
1095 | |
2665 | 1096 /* Set w_fraction now so that the cursor keeps the same relative |
1097 * vertical position. */ | |
13670
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1098 if (!did_set_fraction) |
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1099 set_fraction(oldwin); |
2665 | 1100 wp->w_fraction = oldwin->w_fraction; |
1101 | |
7 | 1102 if (flags & WSP_VERT) |
1103 { | |
1104 wp->w_p_scr = curwin->w_p_scr; | |
2665 | 1105 |
7 | 1106 if (need_status) |
1107 { | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1108 win_new_height(oldwin, oldwin->w_height - 1); |
7 | 1109 oldwin->w_status_height = need_status; |
1110 } | |
1111 if (flags & (WSP_TOP | WSP_BOT)) | |
1112 { | |
1113 /* set height and row of new window to full height */ | |
685 | 1114 wp->w_winrow = tabline_height(); |
12491
7ab796b041bd
patch 8.0.1125: wrong window height when splitting window with window toolbar
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
1115 win_new_height(wp, curfrp->fr_height - (p_ls > 0) |
12916
af2e0401eb8c
patch 8.0.1334: splitting a window with a WinBar damages window layout
Christian Brabandt <cb@256bit.org>
parents:
12910
diff
changeset
|
1116 - WINBAR_HEIGHT(wp)); |
7 | 1117 wp->w_status_height = (p_ls > 0); |
1118 } | |
1119 else | |
1120 { | |
1121 /* height and row of new window is same as current window */ | |
1122 wp->w_winrow = oldwin->w_winrow; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1123 win_new_height(wp, VISIBLE_HEIGHT(oldwin)); |
7 | 1124 wp->w_status_height = oldwin->w_status_height; |
1125 } | |
1126 frp->fr_height = curfrp->fr_height; | |
1127 | |
1128 /* "new_size" of the current window goes to the new window, use | |
1129 * one column for the vertical separator */ | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1130 win_new_width(wp, new_size); |
7 | 1131 if (before) |
1132 wp->w_vsep_width = 1; | |
1133 else | |
1134 { | |
1135 wp->w_vsep_width = oldwin->w_vsep_width; | |
1136 oldwin->w_vsep_width = 1; | |
1137 } | |
1138 if (flags & (WSP_TOP | WSP_BOT)) | |
1139 { | |
1140 if (flags & WSP_BOT) | |
1141 frame_add_vsep(curfrp); | |
1142 /* Set width of neighbor frame */ | |
1143 frame_new_width(curfrp, curfrp->fr_width | |
779 | 1144 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP, |
1145 FALSE); | |
7 | 1146 } |
1147 else | |
779 | 1148 win_new_width(oldwin, oldwin->w_width - (new_size + 1)); |
7 | 1149 if (before) /* new window left of current one */ |
1150 { | |
1151 wp->w_wincol = oldwin->w_wincol; | |
1152 oldwin->w_wincol += new_size + 1; | |
1153 } | |
1154 else /* new window right of current one */ | |
1155 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1; | |
1156 frame_fix_width(oldwin); | |
1157 frame_fix_width(wp); | |
1158 } | |
1159 else | |
1160 { | |
1161 /* width and column of new window is same as current window */ | |
1162 if (flags & (WSP_TOP | WSP_BOT)) | |
1163 { | |
1164 wp->w_wincol = 0; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1165 win_new_width(wp, Columns); |
7 | 1166 wp->w_vsep_width = 0; |
1167 } | |
1168 else | |
1169 { | |
1170 wp->w_wincol = oldwin->w_wincol; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1171 win_new_width(wp, oldwin->w_width); |
7 | 1172 wp->w_vsep_width = oldwin->w_vsep_width; |
1173 } | |
1174 frp->fr_width = curfrp->fr_width; | |
1175 | |
1176 /* "new_size" of the current window goes to the new window, use | |
1177 * one row for the status line */ | |
1178 win_new_height(wp, new_size); | |
1179 if (flags & (WSP_TOP | WSP_BOT)) | |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1180 { |
12491
7ab796b041bd
patch 8.0.1125: wrong window height when splitting window with window toolbar
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
1181 int new_fr_height = curfrp->fr_height - new_size |
12916
af2e0401eb8c
patch 8.0.1334: splitting a window with a WinBar damages window layout
Christian Brabandt <cb@256bit.org>
parents:
12910
diff
changeset
|
1182 + WINBAR_HEIGHT(wp) ; |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1183 |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1184 if (!((flags & WSP_BOT) && p_ls == 0)) |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1185 new_fr_height -= STATUS_HEIGHT; |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1186 frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, FALSE); |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1187 } |
7 | 1188 else |
1189 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT)); | |
1190 if (before) /* new window above current one */ | |
1191 { | |
1192 wp->w_winrow = oldwin->w_winrow; | |
1193 wp->w_status_height = STATUS_HEIGHT; | |
1194 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT; | |
1195 } | |
1196 else /* new window below current one */ | |
1197 { | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1198 wp->w_winrow = oldwin->w_winrow + VISIBLE_HEIGHT(oldwin) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1199 + STATUS_HEIGHT; |
7 | 1200 wp->w_status_height = oldwin->w_status_height; |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1201 if (!(flags & WSP_BOT)) |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1202 oldwin->w_status_height = STATUS_HEIGHT; |
7 | 1203 } |
1204 if (flags & WSP_BOT) | |
1205 frame_add_statusline(curfrp); | |
1206 frame_fix_height(wp); | |
1207 frame_fix_height(oldwin); | |
1208 } | |
1209 | |
1210 if (flags & (WSP_TOP | WSP_BOT)) | |
1211 (void)win_comp_pos(); | |
1212 | |
1213 /* | |
1214 * Both windows need redrawing | |
1215 */ | |
1216 redraw_win_later(wp, NOT_VALID); | |
1217 wp->w_redr_status = TRUE; | |
1218 redraw_win_later(oldwin, NOT_VALID); | |
1219 oldwin->w_redr_status = TRUE; | |
1220 | |
1221 if (need_status) | |
1222 { | |
1223 msg_row = Rows - 1; | |
1224 msg_col = sc_col; | |
1225 msg_clr_eos_force(); /* Old command/ruler may still be there */ | |
1226 comp_col(); | |
1227 msg_row = Rows - 1; | |
1228 msg_col = 0; /* put position back at start of line */ | |
1229 } | |
1230 | |
1231 /* | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1232 * equalize the window sizes. |
7 | 1233 */ |
1234 if (do_equal || dir != 0) | |
1235 win_equal(wp, TRUE, | |
1236 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h') | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1237 : dir == 'h' ? 'b' : 'v'); |
7 | 1238 |
1239 /* Don't change the window height/width to 'winheight' / 'winwidth' if a | |
1240 * size was given. */ | |
1241 if (flags & WSP_VERT) | |
1242 { | |
1243 i = p_wiw; | |
1244 if (size != 0) | |
1245 p_wiw = size; | |
1246 | |
1247 # ifdef FEAT_GUI | |
1248 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */ | |
1249 if (gui.in_use) | |
1250 gui_init_which_components(NULL); | |
1251 # endif | |
1252 } | |
1253 else | |
1254 { | |
1255 i = p_wh; | |
1256 if (size != 0) | |
1257 p_wh = size; | |
1258 } | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1259 |
6096 | 1260 #ifdef FEAT_JUMPLIST |
1261 /* Keep same changelist position in new window. */ | |
1262 wp->w_changelistidx = oldwin->w_changelistidx; | |
1263 #endif | |
1264 | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1265 /* |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1266 * make the new window the current window |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1267 */ |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1268 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE); |
7 | 1269 if (flags & WSP_VERT) |
1270 p_wiw = i; | |
1271 else | |
1272 p_wh = i; | |
1273 | |
1274 return OK; | |
1275 } | |
1276 | |
1906 | 1277 |
675 | 1278 /* |
1279 * Initialize window "newp" from window "oldp". | |
1280 * Used when splitting a window and when creating a new tab page. | |
1281 * The windows will both edit the same buffer. | |
1822 | 1282 * WSP_NEWLOC may be specified in flags to prevent the location list from |
1283 * being copied. | |
675 | 1284 */ |
1285 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1286 win_init(win_T *newp, win_T *oldp, int flags UNUSED) |
675 | 1287 { |
1288 int i; | |
1289 | |
1290 newp->w_buffer = oldp->w_buffer; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1291 #ifdef FEAT_SYN_HL |
2253
12ebd6f6dfce
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
Bram Moolenaar <bram@vim.org>
parents:
2252
diff
changeset
|
1292 newp->w_s = &(oldp->w_buffer->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1293 #endif |
675 | 1294 oldp->w_buffer->b_nwindows++; |
1295 newp->w_cursor = oldp->w_cursor; | |
1296 newp->w_valid = 0; | |
1297 newp->w_curswant = oldp->w_curswant; | |
1298 newp->w_set_curswant = oldp->w_set_curswant; | |
1299 newp->w_topline = oldp->w_topline; | |
1300 #ifdef FEAT_DIFF | |
1301 newp->w_topfill = oldp->w_topfill; | |
1302 #endif | |
1303 newp->w_leftcol = oldp->w_leftcol; | |
1304 newp->w_pcmark = oldp->w_pcmark; | |
1305 newp->w_prev_pcmark = oldp->w_prev_pcmark; | |
1306 newp->w_alt_fnum = oldp->w_alt_fnum; | |
826 | 1307 newp->w_wrow = oldp->w_wrow; |
675 | 1308 newp->w_fraction = oldp->w_fraction; |
1309 newp->w_prev_fraction_row = oldp->w_prev_fraction_row; | |
1310 #ifdef FEAT_JUMPLIST | |
1311 copy_jumplist(oldp, newp); | |
1312 #endif | |
1313 #ifdef FEAT_QUICKFIX | |
1822 | 1314 if (flags & WSP_NEWLOC) |
1315 { | |
1316 /* Don't copy the location list. */ | |
1317 newp->w_llist = NULL; | |
1318 newp->w_llist_ref = NULL; | |
1319 } | |
1320 else | |
14844
a74786d0370c
patch 8.1.0434: copy_loclist() is too long
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
1321 copy_loclist_stack(oldp, newp); |
675 | 1322 #endif |
5584 | 1323 newp->w_localdir = (oldp->w_localdir == NULL) |
1324 ? NULL : vim_strsave(oldp->w_localdir); | |
675 | 1325 |
1906 | 1326 /* copy tagstack and folds */ |
675 | 1327 for (i = 0; i < oldp->w_tagstacklen; i++) |
1328 { | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1329 taggy_T *tag = &newp->w_tagstack[i]; |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1330 *tag = oldp->w_tagstack[i]; |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1331 if (tag->tagname != NULL) |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1332 tag->tagname = vim_strsave(tag->tagname); |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1333 if (tag->user_data != NULL) |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1334 tag->user_data = vim_strsave(tag->user_data); |
675 | 1335 } |
1336 newp->w_tagstackidx = oldp->w_tagstackidx; | |
1337 newp->w_tagstacklen = oldp->w_tagstacklen; | |
3068 | 1338 #ifdef FEAT_FOLDING |
675 | 1339 copyFoldingState(oldp, newp); |
3068 | 1340 #endif |
1906 | 1341 |
1342 win_init_some(newp, oldp); | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1343 |
3068 | 1344 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1345 check_colorcolumn(newp); |
3068 | 1346 #endif |
1906 | 1347 } |
1348 | |
1349 /* | |
6222 | 1350 * Initialize window "newp" from window "old". |
1906 | 1351 * Only the essential things are copied. |
1352 */ | |
1353 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1354 win_init_some(win_T *newp, win_T *oldp) |
1906 | 1355 { |
1356 /* Use the same argument list. */ | |
1357 newp->w_alist = oldp->w_alist; | |
1358 ++newp->w_alist->al_refcount; | |
1359 newp->w_arg_idx = oldp->w_arg_idx; | |
1360 | |
1361 /* copy options from existing window */ | |
1362 win_copy_options(oldp, newp); | |
675 | 1363 } |
1364 | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1365 static int |
16780
491c01280a5d
patch 8.1.1392: build failure in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1366 win_valid_popup(win_T *win UNUSED) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1367 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1368 #ifdef FEAT_TEXT_PROP |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1369 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1370 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1371 for (wp = first_popupwin; wp != NULL; wp = wp->w_next) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1372 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1373 return TRUE; |
16796
5f98d80d116a
patch 8.1.1400: using global pointer for tab-local popups is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
16794
diff
changeset
|
1374 for (wp = curtab->tp_first_popupwin; wp != NULL; wp = wp->w_next) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1375 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1376 return TRUE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1377 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1378 return FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1379 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
1380 |
7 | 1381 /* |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1382 * Check if "win" is a pointer to an existing window in the current tab page. |
7 | 1383 */ |
1384 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1385 win_valid(win_T *win) |
7 | 1386 { |
1387 win_T *wp; | |
1388 | |
1389 if (win == NULL) | |
1390 return FALSE; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1391 FOR_ALL_WINDOWS(wp) |
7 | 1392 if (wp == win) |
1393 return TRUE; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1394 return win_valid_popup(win); |
7 | 1395 } |
1396 | |
1397 /* | |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1398 * Check if "win" is a pointer to an existing window in any tab page. |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1399 */ |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1400 int |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1401 win_valid_any_tab(win_T *win) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1402 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1403 win_T *wp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1404 tabpage_T *tp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1405 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1406 if (win == NULL) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1407 return FALSE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1408 FOR_ALL_TABPAGES(tp) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1409 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1410 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1411 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1412 if (wp == win) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1413 return TRUE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1414 } |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1415 } |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1416 return win_valid_popup(win); |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1417 } |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1418 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1419 /* |
7 | 1420 * Return the number of windows. |
1421 */ | |
1422 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1423 win_count(void) |
7 | 1424 { |
1425 win_T *wp; | |
1426 int count = 0; | |
1427 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1428 FOR_ALL_WINDOWS(wp) |
7 | 1429 ++count; |
1430 return count; | |
1431 } | |
1432 | |
1433 /* | |
1434 * Make "count" windows on the screen. | |
1435 * Return actual number of windows on the screen. | |
1436 * Must be called when there is just one window, filling the whole screen | |
1437 * (excluding the command line). | |
1438 */ | |
1439 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1440 make_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1441 int count, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1442 int vertical UNUSED) /* split windows vertically if TRUE */ |
7 | 1443 { |
1444 int maxcount; | |
1445 int todo; | |
1446 | |
1447 if (vertical) | |
1448 { | |
1449 /* Each windows needs at least 'winminwidth' lines and a separator | |
1450 * column. */ | |
1451 maxcount = (curwin->w_width + curwin->w_vsep_width | |
1452 - (p_wiw - p_wmw)) / (p_wmw + 1); | |
1453 } | |
1454 else | |
1455 { | |
1456 /* Each window needs at least 'winminheight' lines and a status line. */ | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1457 maxcount = (VISIBLE_HEIGHT(curwin) + curwin->w_status_height |
7 | 1458 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT); |
1459 } | |
1460 | |
1461 if (maxcount < 2) | |
1462 maxcount = 2; | |
1463 if (count > maxcount) | |
1464 count = maxcount; | |
1465 | |
1466 /* | |
1467 * add status line now, otherwise first window will be too big | |
1468 */ | |
1469 if (count > 1) | |
1470 last_status(TRUE); | |
1471 | |
1472 /* | |
1473 * Don't execute autocommands while creating the windows. Must do that | |
1474 * when putting the buffers in the windows. | |
1475 */ | |
1410 | 1476 block_autocmds(); |
7 | 1477 |
1478 /* todo is number of windows left to create */ | |
1479 for (todo = count - 1; todo > 0; --todo) | |
1480 if (vertical) | |
1481 { | |
1482 if (win_split(curwin->w_width - (curwin->w_width - todo) | |
1483 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL) | |
1484 break; | |
1485 } | |
1486 else | |
1487 { | |
1488 if (win_split(curwin->w_height - (curwin->w_height - todo | |
1489 * STATUS_HEIGHT) / (todo + 1) | |
1490 - STATUS_HEIGHT, WSP_ABOVE) == FAIL) | |
1491 break; | |
1492 } | |
1493 | |
1410 | 1494 unblock_autocmds(); |
7 | 1495 |
1496 /* return actual number of windows */ | |
1497 return (count - todo); | |
1498 } | |
1499 | |
1500 /* | |
1501 * Exchange current and next window | |
1502 */ | |
1503 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1504 win_exchange(long Prenum) |
7 | 1505 { |
1506 frame_T *frp; | |
1507 frame_T *frp2; | |
1508 win_T *wp; | |
1509 win_T *wp2; | |
1510 int temp; | |
1511 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1512 if (ONE_WINDOW) /* just one window */ |
7 | 1513 { |
1514 beep_flush(); | |
1515 return; | |
1516 } | |
1517 | |
1518 #ifdef FEAT_GUI | |
1519 need_mouse_correct = TRUE; | |
1520 #endif | |
1521 | |
1522 /* | |
1523 * find window to exchange with | |
1524 */ | |
1525 if (Prenum) | |
1526 { | |
1527 frp = curwin->w_frame->fr_parent->fr_child; | |
1528 while (frp != NULL && --Prenum > 0) | |
1529 frp = frp->fr_next; | |
1530 } | |
1531 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */ | |
1532 frp = curwin->w_frame->fr_next; | |
1533 else /* Swap last window in row/col with previous */ | |
1534 frp = curwin->w_frame->fr_prev; | |
1535 | |
1536 /* We can only exchange a window with another window, not with a frame | |
1537 * containing windows. */ | |
1538 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin) | |
1539 return; | |
1540 wp = frp->fr_win; | |
1541 | |
1542 /* | |
1543 * 1. remove curwin from the list. Remember after which window it was in wp2 | |
1544 * 2. insert curwin before wp in the list | |
1545 * if wp != wp2 | |
1546 * 3. remove wp from the list | |
1547 * 4. insert wp after wp2 | |
1548 * 5. exchange the status line height and vsep width. | |
1549 */ | |
1550 wp2 = curwin->w_prev; | |
1551 frp2 = curwin->w_frame->fr_prev; | |
1552 if (wp->w_prev != curwin) | |
1553 { | |
671 | 1554 win_remove(curwin, NULL); |
7 | 1555 frame_remove(curwin->w_frame); |
1556 win_append(wp->w_prev, curwin); | |
1557 frame_insert(frp, curwin->w_frame); | |
1558 } | |
1559 if (wp != wp2) | |
1560 { | |
671 | 1561 win_remove(wp, NULL); |
7 | 1562 frame_remove(wp->w_frame); |
1563 win_append(wp2, wp); | |
1564 if (frp2 == NULL) | |
1565 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame); | |
1566 else | |
1567 frame_append(frp2, wp->w_frame); | |
1568 } | |
1569 temp = curwin->w_status_height; | |
1570 curwin->w_status_height = wp->w_status_height; | |
1571 wp->w_status_height = temp; | |
1572 temp = curwin->w_vsep_width; | |
1573 curwin->w_vsep_width = wp->w_vsep_width; | |
1574 wp->w_vsep_width = temp; | |
1575 | |
1576 /* If the windows are not in the same frame, exchange the sizes to avoid | |
1577 * messing up the window layout. Otherwise fix the frame sizes. */ | |
1578 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent) | |
1579 { | |
1580 temp = curwin->w_height; | |
1581 curwin->w_height = wp->w_height; | |
1582 wp->w_height = temp; | |
1583 temp = curwin->w_width; | |
1584 curwin->w_width = wp->w_width; | |
1585 wp->w_width = temp; | |
1586 } | |
1587 else | |
1588 { | |
1589 frame_fix_height(curwin); | |
1590 frame_fix_height(wp); | |
1591 frame_fix_width(curwin); | |
1592 frame_fix_width(wp); | |
1593 } | |
1594 | |
1595 (void)win_comp_pos(); /* recompute window positions */ | |
1596 | |
1597 win_enter(wp, TRUE); | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1598 redraw_all_later(NOT_VALID); |
7 | 1599 } |
1600 | |
1601 /* | |
1602 * rotate windows: if upwards TRUE the second window becomes the first one | |
1603 * if upwards FALSE the first window becomes the second one | |
1604 */ | |
1605 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1606 win_rotate(int upwards, int count) |
7 | 1607 { |
1608 win_T *wp1; | |
1609 win_T *wp2; | |
1610 frame_T *frp; | |
1611 int n; | |
1612 | |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
1613 if (ONE_WINDOW) /* nothing to do */ |
7 | 1614 { |
1615 beep_flush(); | |
1616 return; | |
1617 } | |
1618 | |
1619 #ifdef FEAT_GUI | |
1620 need_mouse_correct = TRUE; | |
1621 #endif | |
1622 | |
1623 /* Check if all frames in this row/col have one window. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1624 FOR_ALL_FRAMES(frp, curwin->w_frame->fr_parent->fr_child) |
7 | 1625 if (frp->fr_win == NULL) |
1626 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
1627 emsg(_("E443: Cannot rotate when another window is split")); |
7 | 1628 return; |
1629 } | |
1630 | |
1631 while (count--) | |
1632 { | |
1633 if (upwards) /* first window becomes last window */ | |
1634 { | |
1635 /* remove first window/frame from the list */ | |
1636 frp = curwin->w_frame->fr_parent->fr_child; | |
1637 wp1 = frp->fr_win; | |
671 | 1638 win_remove(wp1, NULL); |
7 | 1639 frame_remove(frp); |
1640 | |
1641 /* find last frame and append removed window/frame after it */ | |
1642 for ( ; frp->fr_next != NULL; frp = frp->fr_next) | |
1643 ; | |
1644 win_append(frp->fr_win, wp1); | |
1645 frame_append(frp, wp1->w_frame); | |
1646 | |
1647 wp2 = frp->fr_win; /* previously last window */ | |
1648 } | |
1649 else /* last window becomes first window */ | |
1650 { | |
1651 /* find last window/frame in the list and remove it */ | |
1652 for (frp = curwin->w_frame; frp->fr_next != NULL; | |
1653 frp = frp->fr_next) | |
1654 ; | |
1655 wp1 = frp->fr_win; | |
1656 wp2 = wp1->w_prev; /* will become last window */ | |
671 | 1657 win_remove(wp1, NULL); |
7 | 1658 frame_remove(frp); |
1659 | |
1660 /* append the removed window/frame before the first in the list */ | |
1661 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1); | |
1662 frame_insert(frp->fr_parent->fr_child, frp); | |
1663 } | |
1664 | |
1665 /* exchange status height and vsep width of old and new last window */ | |
1666 n = wp2->w_status_height; | |
1667 wp2->w_status_height = wp1->w_status_height; | |
1668 wp1->w_status_height = n; | |
1669 frame_fix_height(wp1); | |
1670 frame_fix_height(wp2); | |
1671 n = wp2->w_vsep_width; | |
1672 wp2->w_vsep_width = wp1->w_vsep_width; | |
1673 wp1->w_vsep_width = n; | |
1674 frame_fix_width(wp1); | |
1675 frame_fix_width(wp2); | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1676 |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1677 /* recompute w_winrow and w_wincol for all windows */ |
7 | 1678 (void)win_comp_pos(); |
1679 } | |
1680 | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1681 redraw_all_later(NOT_VALID); |
7 | 1682 } |
1683 | |
1684 /* | |
1685 * Move the current window to the very top/bottom/left/right of the screen. | |
1686 */ | |
1687 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1688 win_totop(int size, int flags) |
7 | 1689 { |
1690 int dir; | |
1691 int height = curwin->w_height; | |
1692 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1693 if (ONE_WINDOW) |
7 | 1694 { |
1695 beep_flush(); | |
1696 return; | |
1697 } | |
1698 | |
1699 /* Remove the window and frame from the tree of frames. */ | |
671 | 1700 (void)winframe_remove(curwin, &dir, NULL); |
1701 win_remove(curwin, NULL); | |
7 | 1702 last_status(FALSE); /* may need to remove last status line */ |
1703 (void)win_comp_pos(); /* recompute window positions */ | |
1704 | |
1705 /* Split a window on the desired side and put the window there. */ | |
1706 (void)win_split_ins(size, flags, curwin, dir); | |
1707 if (!(flags & WSP_VERT)) | |
1708 { | |
1709 win_setheight(height); | |
1710 if (p_ea) | |
1711 win_equal(curwin, TRUE, 'v'); | |
1712 } | |
1713 | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1714 #if defined(FEAT_GUI) |
7 | 1715 /* When 'guioptions' includes 'L' or 'R' may have to remove or add |
1716 * scrollbars. Have to update them anyway. */ | |
1906 | 1717 gui_may_update_scrollbars(); |
1718 #endif | |
7 | 1719 } |
1720 | |
1721 /* | |
1722 * Move window "win1" to below/right of "win2" and make "win1" the current | |
1723 * window. Only works within the same frame! | |
1724 */ | |
1725 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1726 win_move_after(win_T *win1, win_T *win2) |
7 | 1727 { |
1728 int height; | |
1729 | |
1730 /* check if the arguments are reasonable */ | |
1731 if (win1 == win2) | |
1732 return; | |
1733 | |
1734 /* check if there is something to do */ | |
1735 if (win2->w_next != win1) | |
1736 { | |
1737 /* may need move the status line/vertical separator of the last window | |
1738 * */ | |
1739 if (win1 == lastwin) | |
1740 { | |
1741 height = win1->w_prev->w_status_height; | |
1742 win1->w_prev->w_status_height = win1->w_status_height; | |
1743 win1->w_status_height = height; | |
1070 | 1744 if (win1->w_prev->w_vsep_width == 1) |
1745 { | |
1746 /* Remove the vertical separator from the last-but-one window, | |
1747 * add it to the last window. Adjust the frame widths. */ | |
1748 win1->w_prev->w_vsep_width = 0; | |
1749 win1->w_prev->w_frame->fr_width -= 1; | |
1750 win1->w_vsep_width = 1; | |
1751 win1->w_frame->fr_width += 1; | |
1752 } | |
7 | 1753 } |
1754 else if (win2 == lastwin) | |
1755 { | |
1756 height = win1->w_status_height; | |
1757 win1->w_status_height = win2->w_status_height; | |
1758 win2->w_status_height = height; | |
1070 | 1759 if (win1->w_vsep_width == 1) |
1760 { | |
1761 /* Remove the vertical separator from win1, add it to the last | |
1762 * window, win2. Adjust the frame widths. */ | |
1763 win2->w_vsep_width = 1; | |
1764 win2->w_frame->fr_width += 1; | |
1765 win1->w_vsep_width = 0; | |
1766 win1->w_frame->fr_width -= 1; | |
1767 } | |
7 | 1768 } |
671 | 1769 win_remove(win1, NULL); |
7 | 1770 frame_remove(win1->w_frame); |
1771 win_append(win2, win1); | |
1772 frame_append(win2->w_frame, win1->w_frame); | |
1773 | |
1774 (void)win_comp_pos(); /* recompute w_winrow for all windows */ | |
1775 redraw_later(NOT_VALID); | |
1776 } | |
1777 win_enter(win1, FALSE); | |
1778 } | |
1779 | |
1780 /* | |
1781 * Make all windows the same height. | |
1782 * 'next_curwin' will soon be the current window, make sure it has enough | |
1783 * rows. | |
1784 */ | |
1785 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1786 win_equal( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1787 win_T *next_curwin, /* pointer to current window to be or NULL */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1788 int current, /* do only frame with current window */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1789 int dir) /* 'v' for vertically, 'h' for horizontally, |
7 | 1790 'b' for both, 0 for using p_ead */ |
1791 { | |
1792 if (dir == 0) | |
1793 dir = *p_ead; | |
1794 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current, | |
685 | 1795 topframe, dir, 0, tabline_height(), |
667 | 1796 (int)Columns, topframe->fr_height); |
7 | 1797 } |
1798 | |
1799 /* | |
1800 * Set a frame to a new position and height, spreading the available room | |
1801 * equally over contained frames. | |
1802 * The window "next_curwin" (if not NULL) should at least get the size from | |
1803 * 'winheight' and 'winwidth' if possible. | |
1804 */ | |
1805 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1806 win_equal_rec( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1807 win_T *next_curwin, /* pointer to current window to be or NULL */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1808 int current, /* do only frame with current window */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1809 frame_T *topfr, /* frame to set size off */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1810 int dir, /* 'v', 'h' or 'b', see win_equal() */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1811 int col, /* horizontal position for frame */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1812 int row, /* vertical position for frame */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1813 int width, /* new width of frame */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1814 int height) /* new height of frame */ |
7 | 1815 { |
1816 int n, m; | |
1817 int extra_sep = 0; | |
1818 int wincount, totwincount = 0; | |
1819 frame_T *fr; | |
1820 int next_curwin_size = 0; | |
1821 int room = 0; | |
1822 int new_size; | |
1823 int has_next_curwin = 0; | |
1824 int hnc; | |
1825 | |
1826 if (topfr->fr_layout == FR_LEAF) | |
1827 { | |
1828 /* Set the width/height of this frame. | |
1829 * Redraw when size or position changes */ | |
1830 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row | |
1831 || topfr->fr_width != width || topfr->fr_win->w_wincol != col | |
1832 ) | |
1833 { | |
1834 topfr->fr_win->w_winrow = row; | |
1835 frame_new_height(topfr, height, FALSE, FALSE); | |
1836 topfr->fr_win->w_wincol = col; | |
779 | 1837 frame_new_width(topfr, width, FALSE, FALSE); |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1838 redraw_all_later(NOT_VALID); |
7 | 1839 } |
1840 } | |
1841 else if (topfr->fr_layout == FR_ROW) | |
1842 { | |
1843 topfr->fr_width = width; | |
1844 topfr->fr_height = height; | |
1845 | |
1846 if (dir != 'v') /* equalize frame widths */ | |
1847 { | |
1848 /* Compute the maximum number of windows horizontally in this | |
1849 * frame. */ | |
1850 n = frame_minwidth(topfr, NOWIN); | |
1851 /* add one for the rightmost window, it doesn't have a separator */ | |
1852 if (col + width == Columns) | |
1853 extra_sep = 1; | |
1854 else | |
1855 extra_sep = 0; | |
1856 totwincount = (n + extra_sep) / (p_wmw + 1); | |
779 | 1857 has_next_curwin = frame_has_win(topfr, next_curwin); |
1858 | |
1859 /* | |
1860 * Compute width for "next_curwin" window and room available for | |
1861 * other windows. | |
1862 * "m" is the minimal width when counting p_wiw for "next_curwin". | |
1863 */ | |
7 | 1864 m = frame_minwidth(topfr, next_curwin); |
1865 room = width - m; | |
1866 if (room < 0) | |
1867 { | |
1868 next_curwin_size = p_wiw + room; | |
1869 room = 0; | |
1870 } | |
1871 else | |
1872 { | |
779 | 1873 next_curwin_size = -1; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1874 FOR_ALL_FRAMES(fr, topfr->fr_child) |
779 | 1875 { |
1876 /* If 'winfixwidth' set keep the window width if | |
1877 * possible. | |
1878 * Watch out for this window being the next_curwin. */ | |
1879 if (frame_fixed_width(fr)) | |
1880 { | |
1881 n = frame_minwidth(fr, NOWIN); | |
1882 new_size = fr->fr_width; | |
1883 if (frame_has_win(fr, next_curwin)) | |
1884 { | |
1885 room += p_wiw - p_wmw; | |
1886 next_curwin_size = 0; | |
1887 if (new_size < p_wiw) | |
1888 new_size = p_wiw; | |
1889 } | |
1890 else | |
1891 /* These windows don't use up room. */ | |
1892 totwincount -= (n + (fr->fr_next == NULL | |
1893 ? extra_sep : 0)) / (p_wmw + 1); | |
1894 room -= new_size - n; | |
1895 if (room < 0) | |
1896 { | |
1897 new_size += room; | |
1898 room = 0; | |
1899 } | |
1900 fr->fr_newwidth = new_size; | |
1901 } | |
1902 } | |
1903 if (next_curwin_size == -1) | |
1904 { | |
1905 if (!has_next_curwin) | |
1906 next_curwin_size = 0; | |
1907 else if (totwincount > 1 | |
1908 && (room + (totwincount - 2)) | |
1909 / (totwincount - 1) > p_wiw) | |
1910 { | |
834 | 1911 /* Can make all windows wider than 'winwidth', spread |
1912 * the room equally. */ | |
1913 next_curwin_size = (room + p_wiw | |
1914 + (totwincount - 1) * p_wmw | |
1915 + (totwincount - 1)) / totwincount; | |
779 | 1916 room -= next_curwin_size - p_wiw; |
1917 } | |
1918 else | |
1919 next_curwin_size = p_wiw; | |
1920 } | |
7 | 1921 } |
779 | 1922 |
1923 if (has_next_curwin) | |
7 | 1924 --totwincount; /* don't count curwin */ |
1925 } | |
1926 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1927 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 1928 { |
1929 wincount = 1; | |
1930 if (fr->fr_next == NULL) | |
1931 /* last frame gets all that remains (avoid roundoff error) */ | |
1932 new_size = width; | |
1933 else if (dir == 'v') | |
1934 new_size = fr->fr_width; | |
779 | 1935 else if (frame_fixed_width(fr)) |
1936 { | |
1937 new_size = fr->fr_newwidth; | |
1938 wincount = 0; /* doesn't count as a sizeable window */ | |
1939 } | |
7 | 1940 else |
1941 { | |
1942 /* Compute the maximum number of windows horiz. in "fr". */ | |
1943 n = frame_minwidth(fr, NOWIN); | |
1944 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
1945 / (p_wmw + 1); | |
1946 m = frame_minwidth(fr, next_curwin); | |
779 | 1947 if (has_next_curwin) |
1948 hnc = frame_has_win(fr, next_curwin); | |
1949 else | |
1950 hnc = FALSE; | |
1951 if (hnc) /* don't count next_curwin */ | |
7 | 1952 --wincount; |
779 | 1953 if (totwincount == 0) |
1954 new_size = room; | |
1955 else | |
1956 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
7 | 1957 / totwincount; |
779 | 1958 if (hnc) /* add next_curwin size */ |
7 | 1959 { |
1960 next_curwin_size -= p_wiw - (m - n); | |
1961 new_size += next_curwin_size; | |
779 | 1962 room -= new_size - next_curwin_size; |
7 | 1963 } |
779 | 1964 else |
1965 room -= new_size; | |
1966 new_size += n; | |
7 | 1967 } |
1968 | |
779 | 1969 /* Skip frame that is full width when splitting or closing a |
7 | 1970 * window, unless equalizing all frames. */ |
1971 if (!current || dir != 'v' || topfr->fr_parent != NULL | |
1972 || (new_size != fr->fr_width) | |
1973 || frame_has_win(fr, next_curwin)) | |
1974 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
779 | 1975 new_size, height); |
1976 col += new_size; | |
1977 width -= new_size; | |
7 | 1978 totwincount -= wincount; |
1979 } | |
1980 } | |
1981 else /* topfr->fr_layout == FR_COL */ | |
1982 { | |
1983 topfr->fr_width = width; | |
1984 topfr->fr_height = height; | |
1985 | |
1986 if (dir != 'h') /* equalize frame heights */ | |
1987 { | |
1988 /* Compute maximum number of windows vertically in this frame. */ | |
1989 n = frame_minheight(topfr, NOWIN); | |
1990 /* add one for the bottom window if it doesn't have a statusline */ | |
1991 if (row + height == cmdline_row && p_ls == 0) | |
1992 extra_sep = 1; | |
1993 else | |
1994 extra_sep = 0; | |
1995 totwincount = (n + extra_sep) / (p_wmh + 1); | |
1996 has_next_curwin = frame_has_win(topfr, next_curwin); | |
1997 | |
1998 /* | |
1999 * Compute height for "next_curwin" window and room available for | |
2000 * other windows. | |
2001 * "m" is the minimal height when counting p_wh for "next_curwin". | |
2002 */ | |
2003 m = frame_minheight(topfr, next_curwin); | |
2004 room = height - m; | |
2005 if (room < 0) | |
2006 { | |
2007 /* The room is less then 'winheight', use all space for the | |
2008 * current window. */ | |
2009 next_curwin_size = p_wh + room; | |
2010 room = 0; | |
2011 } | |
2012 else | |
2013 { | |
2014 next_curwin_size = -1; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2015 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2016 { |
2017 /* If 'winfixheight' set keep the window height if | |
2018 * possible. | |
2019 * Watch out for this window being the next_curwin. */ | |
2020 if (frame_fixed_height(fr)) | |
2021 { | |
2022 n = frame_minheight(fr, NOWIN); | |
2023 new_size = fr->fr_height; | |
2024 if (frame_has_win(fr, next_curwin)) | |
2025 { | |
2026 room += p_wh - p_wmh; | |
2027 next_curwin_size = 0; | |
2028 if (new_size < p_wh) | |
2029 new_size = p_wh; | |
2030 } | |
2031 else | |
2032 /* These windows don't use up room. */ | |
2033 totwincount -= (n + (fr->fr_next == NULL | |
2034 ? extra_sep : 0)) / (p_wmh + 1); | |
2035 room -= new_size - n; | |
2036 if (room < 0) | |
2037 { | |
2038 new_size += room; | |
2039 room = 0; | |
2040 } | |
2041 fr->fr_newheight = new_size; | |
2042 } | |
2043 } | |
2044 if (next_curwin_size == -1) | |
2045 { | |
2046 if (!has_next_curwin) | |
2047 next_curwin_size = 0; | |
2048 else if (totwincount > 1 | |
2049 && (room + (totwincount - 2)) | |
2050 / (totwincount - 1) > p_wh) | |
2051 { | |
834 | 2052 /* can make all windows higher than 'winheight', |
2053 * spread the room equally. */ | |
2054 next_curwin_size = (room + p_wh | |
2055 + (totwincount - 1) * p_wmh | |
7 | 2056 + (totwincount - 1)) / totwincount; |
2057 room -= next_curwin_size - p_wh; | |
2058 } | |
2059 else | |
2060 next_curwin_size = p_wh; | |
2061 } | |
2062 } | |
2063 | |
2064 if (has_next_curwin) | |
2065 --totwincount; /* don't count curwin */ | |
2066 } | |
2067 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2068 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2069 { |
2070 wincount = 1; | |
2071 if (fr->fr_next == NULL) | |
2072 /* last frame gets all that remains (avoid roundoff error) */ | |
2073 new_size = height; | |
2074 else if (dir == 'h') | |
2075 new_size = fr->fr_height; | |
2076 else if (frame_fixed_height(fr)) | |
2077 { | |
2078 new_size = fr->fr_newheight; | |
2079 wincount = 0; /* doesn't count as a sizeable window */ | |
2080 } | |
2081 else | |
2082 { | |
2083 /* Compute the maximum number of windows vert. in "fr". */ | |
2084 n = frame_minheight(fr, NOWIN); | |
2085 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2086 / (p_wmh + 1); | |
2087 m = frame_minheight(fr, next_curwin); | |
2088 if (has_next_curwin) | |
2089 hnc = frame_has_win(fr, next_curwin); | |
2090 else | |
2091 hnc = FALSE; | |
2092 if (hnc) /* don't count next_curwin */ | |
2093 --wincount; | |
2094 if (totwincount == 0) | |
2095 new_size = room; | |
2096 else | |
2097 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
2098 / totwincount; | |
2099 if (hnc) /* add next_curwin size */ | |
2100 { | |
2101 next_curwin_size -= p_wh - (m - n); | |
2102 new_size += next_curwin_size; | |
2103 room -= new_size - next_curwin_size; | |
2104 } | |
2105 else | |
2106 room -= new_size; | |
2107 new_size += n; | |
2108 } | |
2109 /* Skip frame that is full width when splitting or closing a | |
2110 * window, unless equalizing all frames. */ | |
2111 if (!current || dir != 'h' || topfr->fr_parent != NULL | |
2112 || (new_size != fr->fr_height) | |
2113 || frame_has_win(fr, next_curwin)) | |
2114 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
2115 width, new_size); | |
2116 row += new_size; | |
2117 height -= new_size; | |
2118 totwincount -= wincount; | |
2119 } | |
2120 } | |
2121 } | |
2122 | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2123 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2124 static void |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2125 leaving_window(win_T *win) |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2126 { |
14049
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2127 // Only matters for a prompt window. |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2128 if (!bt_prompt(win->w_buffer)) |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2129 return; |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2130 |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2131 // When leaving a prompt window stop Insert mode and perhaps restart |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2132 // it when entering that window again. |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2133 win->w_buffer->b_prompt_insert = restart_edit; |
14093
a9d94f10ecef
patch 8.1.0064: typing CTRL-W in a prompt buffer shows mode "-- --"
Christian Brabandt <cb@256bit.org>
parents:
14057
diff
changeset
|
2134 if (restart_edit != 0 && mode_displayed) |
a9d94f10ecef
patch 8.1.0064: typing CTRL-W in a prompt buffer shows mode "-- --"
Christian Brabandt <cb@256bit.org>
parents:
14057
diff
changeset
|
2135 clear_cmdline = TRUE; /* unshow mode later */ |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2136 restart_edit = NUL; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2137 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2138 // When leaving the window (or closing the window) was done from a |
14049
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2139 // callback we need to break out of the Insert mode loop and restart Insert |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2140 // mode when entering the window again. |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2141 if (State & INSERT) |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2142 { |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2143 stop_insert_mode = TRUE; |
14049
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2144 if (win->w_buffer->b_prompt_insert == NUL) |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2145 win->w_buffer->b_prompt_insert = 'A'; |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2146 } |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2147 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2148 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2149 static void |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2150 entering_window(win_T *win) |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2151 { |
14049
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2152 // Only matters for a prompt window. |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2153 if (!bt_prompt(win->w_buffer)) |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2154 return; |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2155 |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2156 // When switching to a prompt buffer that was in Insert mode, don't stop |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2157 // Insert mode, it may have been set in leaving_window(). |
14049
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2158 if (win->w_buffer->b_prompt_insert != NUL) |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2159 stop_insert_mode = FALSE; |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2160 |
14049
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2161 // When entering the prompt window restart Insert mode if we were in Insert |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2162 // mode when we left it. |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2163 restart_edit = win->w_buffer->b_prompt_insert; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2164 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2165 #endif |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2166 |
7 | 2167 /* |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2168 * Close all windows for buffer "buf". |
7 | 2169 */ |
2170 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2171 close_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2172 buf_T *buf, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2173 int keep_curwin) /* don't close "curwin" */ |
7 | 2174 { |
671 | 2175 win_T *wp; |
2176 tabpage_T *tp, *nexttp; | |
685 | 2177 int h = tabline_height(); |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2178 int count = tabpage_index(NULL); |
7 | 2179 |
2180 ++RedrawingDisabled; | |
671 | 2181 |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
2182 for (wp = firstwin; wp != NULL && !ONE_WINDOW; ) |
7 | 2183 { |
3570 | 2184 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2185 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
7 | 2186 { |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2187 if (win_close(wp, FALSE) == FAIL) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2188 /* If closing the window fails give up, to avoid looping |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2189 * forever. */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2190 break; |
671 | 2191 |
2192 /* Start all over, autocommands may change the window layout. */ | |
2193 wp = firstwin; | |
7 | 2194 } |
2195 else | |
671 | 2196 wp = wp->w_next; |
7 | 2197 } |
671 | 2198 |
2199 /* Also check windows in other tab pages. */ | |
2200 for (tp = first_tabpage; tp != NULL; tp = nexttp) | |
2201 { | |
2202 nexttp = tp->tp_next; | |
672 | 2203 if (tp != curtab) |
671 | 2204 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next) |
3570 | 2205 if (wp->w_buffer == buf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2206 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
671 | 2207 { |
2208 win_close_othertab(wp, FALSE, tp); | |
2209 | |
2210 /* Start all over, the tab page may be closed and | |
2211 * autocommands may change the window layout. */ | |
2212 nexttp = first_tabpage; | |
2213 break; | |
2214 } | |
2215 } | |
2216 | |
7 | 2217 --RedrawingDisabled; |
671 | 2218 |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2219 if (count != tabpage_index(NULL)) |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2220 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2221 |
4305 | 2222 redraw_tabline = TRUE; |
685 | 2223 if (h != tabline_height()) |
671 | 2224 shell_new_rows(); |
7 | 2225 } |
2226 | |
2227 /* | |
1906 | 2228 * Return TRUE if the current window is the only window that exists (ignoring |
2229 * "aucmd_win"). | |
672 | 2230 * Returns FALSE if there is a window, possibly in another tab page. |
667 | 2231 */ |
672 | 2232 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2233 last_window(void) |
667 | 2234 { |
1906 | 2235 return (one_window() && first_tabpage->tp_next == NULL); |
2236 } | |
2237 | |
2238 /* | |
2239 * Return TRUE if there is only one window other than "aucmd_win" in the | |
2240 * current tab page. | |
2241 */ | |
3365 | 2242 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2243 one_window(void) |
1906 | 2244 { |
2245 win_T *wp; | |
2246 int seen_one = FALSE; | |
2247 | |
2248 FOR_ALL_WINDOWS(wp) | |
2249 { | |
2250 if (wp != aucmd_win) | |
2251 { | |
2252 if (seen_one) | |
2253 return FALSE; | |
2254 seen_one = TRUE; | |
2255 } | |
2256 } | |
2257 return TRUE; | |
667 | 2258 } |
2259 | |
2260 /* | |
3535 | 2261 * Close the possibly last window in a tab page. |
2262 * Returns TRUE when the window was closed already. | |
2263 */ | |
2264 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2265 close_last_window_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2266 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2267 int free_buf, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2268 tabpage_T *prev_curtab) |
3535 | 2269 { |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2270 if (ONE_WINDOW) |
3535 | 2271 { |
4354 | 2272 buf_T *old_curbuf = curbuf; |
2273 | |
3535 | 2274 /* |
2275 * Closing the last window in a tab page. First go to another tab | |
2276 * page and then close the window and the tab page. This avoids that | |
2277 * curwin and curtab are invalid while we are freeing memory, they may | |
2278 * be used in GUI events. | |
3582 | 2279 * Don't trigger autocommands yet, they may use wrong values, so do |
2280 * that below. | |
3535 | 2281 */ |
4354 | 2282 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE); |
3535 | 2283 redraw_tabline = TRUE; |
2284 | |
2285 /* Safety check: Autocommands may have closed the window when jumping | |
2286 * to the other tab page. */ | |
2287 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win) | |
2288 { | |
2289 int h = tabline_height(); | |
2290 | |
2291 win_close_othertab(win, free_buf, prev_curtab); | |
2292 if (h != tabline_height()) | |
2293 shell_new_rows(); | |
2294 } | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2295 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2296 entering_window(curwin); |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2297 #endif |
3582 | 2298 /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do |
2299 * that now. */ | |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2300 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
4354 | 2301 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
3582 | 2302 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
4354 | 2303 if (old_curbuf != curbuf) |
2304 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3535 | 2305 return TRUE; |
2306 } | |
2307 return FALSE; | |
2308 } | |
2309 | |
2310 /* | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2311 * Close the buffer of "win" and unload it if "free_buf" is TRUE. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2312 * "abort_if_last" is passed to close_buffer(): abort closing if all other |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2313 * windows are closed. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2314 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2315 static void |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2316 win_close_buffer(win_T *win, int free_buf, int abort_if_last) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2317 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2318 #ifdef FEAT_SYN_HL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2319 // Free independent synblock before the buffer is freed. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2320 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2321 reset_synblock(win); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2322 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2323 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2324 #ifdef FEAT_QUICKFIX |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2325 // When the quickfix/location list window is closed, unlist the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2326 if (win->w_buffer != NULL && bt_quickfix(win->w_buffer)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2327 win->w_buffer->b_p_bl = FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2328 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2329 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2330 // Close the link to the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2331 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2332 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2333 bufref_T bufref; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2334 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2335 set_bufref(&bufref, curbuf); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2336 win->w_closing = TRUE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2337 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2338 abort_if_last); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2339 if (win_valid_any_tab(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2340 win->w_closing = FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2341 // Make sure curbuf is valid. It can become invalid if 'bufhidden' is |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2342 // "wipe". |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2343 if (!bufref_valid(&bufref)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2344 curbuf = firstbuf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2345 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2346 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2347 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2348 /* |
819 | 2349 * Close window "win". Only works for the current tab page. |
7 | 2350 * If "free_buf" is TRUE related buffer may be unloaded. |
2351 * | |
3365 | 2352 * Called by :quit, :close, :xit, :wq and findtag(). |
5302 | 2353 * Returns FAIL when the window was not closed. |
7 | 2354 */ |
5302 | 2355 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2356 win_close(win_T *win, int free_buf) |
7 | 2357 { |
2358 win_T *wp; | |
2359 int other_buffer = FALSE; | |
2360 int close_curwin = FALSE; | |
2361 int dir; | |
2362 int help_window = FALSE; | |
847 | 2363 tabpage_T *prev_curtab = curtab; |
11593
c4e7fe672a72
patch 8.0.0679: using freed memory
Christian Brabandt <cb@256bit.org>
parents:
11591
diff
changeset
|
2364 frame_T *win_frame = win->w_frame->fr_parent; |
7 | 2365 |
667 | 2366 if (last_window()) |
7 | 2367 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
2368 emsg(_("E444: Cannot close last window")); |
5302 | 2369 return FAIL; |
7 | 2370 } |
2371 | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2372 if (win->w_closing || (win->w_buffer != NULL |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2373 && win->w_buffer->b_locked > 0)) |
5302 | 2374 return FAIL; /* window is already being closed */ |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2375 if (win_unlisted(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2376 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2377 emsg(_("E813: Cannot close autocmd or popup window")); |
5302 | 2378 return FAIL; |
1906 | 2379 } |
2380 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) | |
2381 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
2382 emsg(_("E814: Cannot close window, only autocmd window would remain")); |
5302 | 2383 return FAIL; |
1906 | 2384 } |
2385 | |
3535 | 2386 /* When closing the last window in a tab page first go to another tab page |
2387 * and then close the window and the tab page to avoid that curwin and | |
2388 * curtab are invalid while we are freeing memory. */ | |
2389 if (close_last_window_tabpage(win, free_buf, prev_curtab)) | |
5302 | 2390 return FAIL; |
856 | 2391 |
7 | 2392 /* When closing the help window, try restoring a snapshot after closing |
2393 * the window. Otherwise clear the snapshot, it's now invalid. */ | |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11593
diff
changeset
|
2394 if (bt_help(win->w_buffer)) |
7 | 2395 help_window = TRUE; |
2396 else | |
1906 | 2397 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 2398 |
2399 if (win == curwin) | |
2400 { | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2401 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2402 leaving_window(curwin); |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2403 #endif |
7 | 2404 /* |
2405 * Guess which window is going to be the new current window. | |
2406 * This may change because of the autocommands (sigh). | |
2407 */ | |
671 | 2408 wp = frame2win(win_altframe(win, NULL)); |
7 | 2409 |
2410 /* | |
3570 | 2411 * Be careful: If autocommands delete the window or cause this window |
2412 * to be the last one left, return now. | |
7 | 2413 */ |
2414 if (wp->w_buffer != curbuf) | |
2415 { | |
2416 other_buffer = TRUE; | |
3570 | 2417 win->w_closing = TRUE; |
7 | 2418 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2419 if (!win_valid(win)) |
5302 | 2420 return FAIL; |
3570 | 2421 win->w_closing = FALSE; |
2422 if (last_window()) | |
5302 | 2423 return FAIL; |
7 | 2424 } |
3570 | 2425 win->w_closing = TRUE; |
7 | 2426 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2427 if (!win_valid(win)) |
5302 | 2428 return FAIL; |
3570 | 2429 win->w_closing = FALSE; |
2430 if (last_window()) | |
5302 | 2431 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2432 #ifdef FEAT_EVAL |
7 | 2433 /* autocmds may abort script processing */ |
2434 if (aborting()) | |
5302 | 2435 return FAIL; |
7 | 2436 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2437 } |
7 | 2438 |
1101 | 2439 #ifdef FEAT_GUI |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15977
diff
changeset
|
2440 // Avoid trouble with scrollbars that are going to be deleted in |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15977
diff
changeset
|
2441 // win_free(). |
1101 | 2442 if (gui.in_use) |
2443 out_flush(); | |
2444 #endif | |
2445 | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2446 win_close_buffer(win, free_buf, TRUE); |
847 | 2447 |
4021 | 2448 if (only_one_window() && win_valid(win) && win->w_buffer == NULL |
2449 && (last_window() || curtab != prev_curtab | |
2450 || close_last_window_tabpage(win, free_buf, prev_curtab))) | |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2451 { |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11593
diff
changeset
|
2452 /* Autocommands have closed all windows, quit now. Restore |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2453 * curwin->w_buffer, otherwise writing viminfo may fail. */ |
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2454 if (curwin->w_buffer == NULL) |
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2455 curwin->w_buffer = curbuf; |
4021 | 2456 getout(0); |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2457 } |
4021 | 2458 |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2459 /* Autocommands may have moved to another tab page. */ |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2460 if (curtab != prev_curtab && win_valid_any_tab(win) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2461 && win->w_buffer == NULL) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2462 { |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2463 /* Need to close the window anyway, since the buffer is NULL. */ |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2464 win_close_othertab(win, FALSE, prev_curtab); |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2465 return FAIL; |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2466 } |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2467 |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2468 /* Autocommands may have closed the window already or closed the only |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2469 * other window. */ |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2470 if (!win_valid(win) || last_window() |
3535 | 2471 || close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2472 return FAIL; |
7 | 2473 |
3068 | 2474 /* Free the memory used for the window and get the window that received |
2475 * the screen space. */ | |
847 | 2476 wp = win_free_mem(win, &dir, NULL); |
2477 | |
7 | 2478 /* Make sure curwin isn't invalid. It can cause severe trouble when |
2479 * printing an error message. For win_equal() curbuf needs to be valid | |
2480 * too. */ | |
847 | 2481 if (win == curwin) |
7 | 2482 { |
2483 curwin = wp; | |
2484 #ifdef FEAT_QUICKFIX | |
2485 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer)) | |
2486 { | |
2487 /* | |
1346 | 2488 * If the cursor goes to the preview or the quickfix window, try |
7 | 2489 * finding another window to go to. |
2490 */ | |
2491 for (;;) | |
2492 { | |
2493 if (wp->w_next == NULL) | |
2494 wp = firstwin; | |
2495 else | |
2496 wp = wp->w_next; | |
2497 if (wp == curwin) | |
2498 break; | |
2499 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer)) | |
2500 { | |
2501 curwin = wp; | |
2502 break; | |
2503 } | |
2504 } | |
2505 } | |
2506 #endif | |
2507 curbuf = curwin->w_buffer; | |
2508 close_curwin = TRUE; | |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2509 |
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2510 /* The cursor position may be invalid if the buffer changed after last |
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2511 * using the window. */ |
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2512 check_cursor(); |
7 | 2513 } |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2514 if (p_ea && (*p_ead == 'b' || *p_ead == dir)) |
11591
d06a3db9b651
patch 8.0.0678: closing a window does not trigger resizing
Christian Brabandt <cb@256bit.org>
parents:
11232
diff
changeset
|
2515 /* If the frame of the closed window contains the new current window, |
d06a3db9b651
patch 8.0.0678: closing a window does not trigger resizing
Christian Brabandt <cb@256bit.org>
parents:
11232
diff
changeset
|
2516 * only resize that frame. Otherwise resize all windows. */ |
11593
c4e7fe672a72
patch 8.0.0679: using freed memory
Christian Brabandt <cb@256bit.org>
parents:
11591
diff
changeset
|
2517 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir); |
7 | 2518 else |
2519 win_comp_pos(); | |
2520 if (close_curwin) | |
2521 { | |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2522 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE); |
7 | 2523 if (other_buffer) |
2524 /* careful: after this wp and win may be invalid! */ | |
2525 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
2526 } | |
2527 | |
2528 /* | |
667 | 2529 * If last window has a status line now and we don't want one, |
2530 * remove the status line. | |
7 | 2531 */ |
2532 last_status(FALSE); | |
2533 | |
2534 /* After closing the help window, try restoring the window layout from | |
2535 * before it was opened. */ | |
2536 if (help_window) | |
1906 | 2537 restore_snapshot(SNAP_HELP_IDX, close_curwin); |
7 | 2538 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2539 #if defined(FEAT_GUI) |
7 | 2540 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */ |
2541 if (gui.in_use && !win_hasvertsplit()) | |
2542 gui_init_which_components(NULL); | |
2543 #endif | |
2544 | |
2545 redraw_all_later(NOT_VALID); | |
5302 | 2546 return OK; |
7 | 2547 } |
2548 | |
2549 /* | |
671 | 2550 * Close window "win" in tab page "tp", which is not the current tab page. |
3535 | 2551 * This may be the last window in that tab page and result in closing the tab, |
671 | 2552 * thus "tp" may become invalid! |
856 | 2553 * Caller must check if buffer is hidden and whether the tabline needs to be |
2554 * updated. | |
671 | 2555 */ |
2556 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2557 win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) |
671 | 2558 { |
2559 win_T *wp; | |
2560 int dir; | |
2561 tabpage_T *ptp = NULL; | |
2191 | 2562 int free_tp = FALSE; |
671 | 2563 |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2564 /* Get here with win->w_buffer == NULL when win_close() detects the tab |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2565 * page changed. */ |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2566 if (win->w_closing || (win->w_buffer != NULL |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2567 && win->w_buffer->b_locked > 0)) |
3570 | 2568 return; /* window is already being closed */ |
2569 | |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2570 if (win->w_buffer != NULL) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2571 /* Close the link to the buffer. */ |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2572 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE); |
671 | 2573 |
2574 /* Careful: Autocommands may have closed the tab page or made it the | |
2575 * current tab page. */ | |
2576 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) | |
2577 ; | |
672 | 2578 if (ptp == NULL || tp == curtab) |
671 | 2579 return; |
2580 | |
2581 /* Autocommands may have closed the window already. */ | |
2582 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next) | |
2583 ; | |
2584 if (wp == NULL) | |
2585 return; | |
2586 | |
2587 /* When closing the last window in a tab page remove the tab page. */ | |
7009 | 2588 if (tp->tp_firstwin == tp->tp_lastwin) |
671 | 2589 { |
2590 if (tp == first_tabpage) | |
2591 first_tabpage = tp->tp_next; | |
2592 else | |
2593 { | |
2594 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; | |
2595 ptp = ptp->tp_next) | |
2596 ; | |
2597 if (ptp == NULL) | |
2598 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2599 internal_error("win_close_othertab()"); |
671 | 2600 return; |
2601 } | |
2602 ptp->tp_next = tp->tp_next; | |
2603 } | |
2191 | 2604 free_tp = TRUE; |
2605 } | |
2606 | |
2607 /* Free the memory used for the window. */ | |
2608 win_free_mem(win, &dir, tp); | |
2609 | |
2610 if (free_tp) | |
847 | 2611 free_tabpage(tp); |
671 | 2612 } |
2613 | |
2614 /* | |
355 | 2615 * Free the memory used for a window. |
2616 * Returns a pointer to the window that got the freed up space. | |
2617 */ | |
2618 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2619 win_free_mem( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2620 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2621 int *dirp, /* set to 'v' or 'h' for direction if 'ea' */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2622 tabpage_T *tp) /* tab page "win" is in, NULL for current */ |
355 | 2623 { |
2624 frame_T *frp; | |
2625 win_T *wp; | |
2626 | |
667 | 2627 /* Remove the window and its frame from the tree of frames. */ |
355 | 2628 frp = win->w_frame; |
671 | 2629 wp = winframe_remove(win, dirp, tp); |
355 | 2630 vim_free(frp); |
671 | 2631 win_free(win, tp); |
355 | 2632 |
819 | 2633 /* When deleting the current window of another tab page select a new |
2634 * current window. */ | |
2635 if (tp != NULL && win == tp->tp_curwin) | |
2636 tp->tp_curwin = wp; | |
2637 | |
355 | 2638 return wp; |
2639 } | |
2640 | |
2641 #if defined(EXITFREE) || defined(PROTO) | |
2642 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2643 win_free_all(void) |
355 | 2644 { |
2645 int dummy; | |
2646 | |
671 | 2647 while (first_tabpage->tp_next != NULL) |
2648 tabpage_close(TRUE); | |
2649 | |
1906 | 2650 if (aucmd_win != NULL) |
2651 { | |
2652 (void)win_free_mem(aucmd_win, &dummy, NULL); | |
2653 aucmd_win = NULL; | |
2654 } | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2655 # ifdef FEAT_TEXT_PROP |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2656 close_all_popups(); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2657 # endif |
1918 | 2658 |
2659 while (firstwin != NULL) | |
2660 (void)win_free_mem(firstwin, &dummy, NULL); | |
6060 | 2661 |
2662 /* No window should be used after this. Set curwin to NULL to crash | |
2663 * instead of using freed memory. */ | |
2664 curwin = NULL; | |
355 | 2665 } |
2666 #endif | |
2667 | |
2668 /* | |
7 | 2669 * Remove a window and its frame from the tree of frames. |
2670 * Returns a pointer to the window that got the freed up space. | |
2671 */ | |
1906 | 2672 win_T * |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2673 winframe_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2674 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2675 int *dirp UNUSED, /* set to 'v' or 'h' for direction if 'ea' */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2676 tabpage_T *tp) /* tab page "win" is in, NULL for current */ |
7 | 2677 { |
2678 frame_T *frp, *frp2, *frp3; | |
2679 frame_T *frp_close = win->w_frame; | |
2680 win_T *wp; | |
2681 | |
2682 /* | |
671 | 2683 * If there is only one window there is nothing to remove. |
2684 */ | |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2685 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
671 | 2686 return NULL; |
2687 | |
2688 /* | |
7 | 2689 * Remove the window from its frame. |
2690 */ | |
671 | 2691 frp2 = win_altframe(win, tp); |
7 | 2692 wp = frame2win(frp2); |
2693 | |
2694 /* Remove this frame from the list of frames. */ | |
2695 frame_remove(frp_close); | |
2696 | |
2697 if (frp_close->fr_parent->fr_layout == FR_COL) | |
2698 { | |
1346 | 2699 /* When 'winfixheight' is set, try to find another frame in the column |
2700 * (as close to the closed frame as possible) to distribute the height | |
2701 * to. */ | |
2702 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh) | |
2703 { | |
2704 frp = frp_close->fr_prev; | |
2705 frp3 = frp_close->fr_next; | |
2706 while (frp != NULL || frp3 != NULL) | |
2707 { | |
2708 if (frp != NULL) | |
2709 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2710 if (!frame_fixed_height(frp)) |
1346 | 2711 { |
2712 frp2 = frp; | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2713 wp = frame2win(frp2); |
1346 | 2714 break; |
2715 } | |
2716 frp = frp->fr_prev; | |
2717 } | |
2718 if (frp3 != NULL) | |
2719 { | |
2720 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh) | |
2721 { | |
2722 frp2 = frp3; | |
2723 wp = frp3->fr_win; | |
2724 break; | |
2725 } | |
2726 frp3 = frp3->fr_next; | |
2727 } | |
2728 } | |
2729 } | |
7 | 2730 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height, |
2731 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); | |
2732 *dirp = 'v'; | |
2733 } | |
2734 else | |
2735 { | |
1346 | 2736 /* When 'winfixwidth' is set, try to find another frame in the column |
2737 * (as close to the closed frame as possible) to distribute the width | |
2738 * to. */ | |
2739 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw) | |
2740 { | |
2741 frp = frp_close->fr_prev; | |
2742 frp3 = frp_close->fr_next; | |
2743 while (frp != NULL || frp3 != NULL) | |
2744 { | |
2745 if (frp != NULL) | |
2746 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2747 if (!frame_fixed_width(frp)) |
1346 | 2748 { |
2749 frp2 = frp; | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2750 wp = frame2win(frp2); |
1346 | 2751 break; |
2752 } | |
2753 frp = frp->fr_prev; | |
2754 } | |
2755 if (frp3 != NULL) | |
2756 { | |
2757 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw) | |
2758 { | |
2759 frp2 = frp3; | |
2760 wp = frp3->fr_win; | |
2761 break; | |
2762 } | |
2763 frp3 = frp3->fr_next; | |
2764 } | |
2765 } | |
2766 } | |
7 | 2767 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width, |
779 | 2768 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); |
7 | 2769 *dirp = 'h'; |
2770 } | |
2771 | |
2772 /* If rows/columns go to a window below/right its positions need to be | |
2773 * updated. Can only be done after the sizes have been updated. */ | |
2774 if (frp2 == frp_close->fr_next) | |
2775 { | |
2776 int row = win->w_winrow; | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12491
diff
changeset
|
2777 int col = win->w_wincol; |
7 | 2778 |
2779 frame_comp_pos(frp2, &row, &col); | |
2780 } | |
2781 | |
2782 if (frp2->fr_next == NULL && frp2->fr_prev == NULL) | |
2783 { | |
2784 /* There is no other frame in this list, move its info to the parent | |
2785 * and remove it. */ | |
2786 frp2->fr_parent->fr_layout = frp2->fr_layout; | |
2787 frp2->fr_parent->fr_child = frp2->fr_child; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2788 FOR_ALL_FRAMES(frp, frp2->fr_child) |
7 | 2789 frp->fr_parent = frp2->fr_parent; |
2790 frp2->fr_parent->fr_win = frp2->fr_win; | |
2791 if (frp2->fr_win != NULL) | |
2792 frp2->fr_win->w_frame = frp2->fr_parent; | |
2793 frp = frp2->fr_parent; | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
2794 if (topframe->fr_child == frp2) |
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
2795 topframe->fr_child = frp; |
7 | 2796 vim_free(frp2); |
2797 | |
2798 frp2 = frp->fr_parent; | |
2799 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout) | |
2800 { | |
2801 /* The frame above the parent has the same layout, have to merge | |
2802 * the frames into this list. */ | |
2803 if (frp2->fr_child == frp) | |
2804 frp2->fr_child = frp->fr_child; | |
2805 frp->fr_child->fr_prev = frp->fr_prev; | |
2806 if (frp->fr_prev != NULL) | |
2807 frp->fr_prev->fr_next = frp->fr_child; | |
2808 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next) | |
2809 { | |
2810 frp3->fr_parent = frp2; | |
2811 if (frp3->fr_next == NULL) | |
2812 { | |
2813 frp3->fr_next = frp->fr_next; | |
2814 if (frp->fr_next != NULL) | |
2815 frp->fr_next->fr_prev = frp3; | |
2816 break; | |
2817 } | |
2818 } | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
2819 if (topframe->fr_child == frp) |
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
2820 topframe->fr_child = frp2; |
7 | 2821 vim_free(frp); |
2822 } | |
2823 } | |
2824 | |
2825 return wp; | |
2826 } | |
2827 | |
2828 /* | |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2829 * Return a pointer to the frame that will receive the empty screen space that |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2830 * is left over after "win" is closed. |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2831 * |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2832 * If 'splitbelow' or 'splitright' is set, the space goes above or to the left |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2833 * by default. Otherwise, the free space goes below or to the right. The |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2834 * result is that opening a window and then immediately closing it will |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2835 * preserve the initial window layout. The 'wfh' and 'wfw' settings are |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2836 * respected when possible. |
7 | 2837 */ |
2838 static frame_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2839 win_altframe( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2840 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2841 tabpage_T *tp) /* tab page "win" is in, NULL for current */ |
7 | 2842 { |
2843 frame_T *frp; | |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2844 frame_T *other_fr, *target_fr; |
7 | 2845 |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2846 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
667 | 2847 return alt_tabpage()->tp_curwin->w_frame; |
2848 | |
7 | 2849 frp = win->w_frame; |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2850 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2851 if (frp->fr_prev == NULL) |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2852 return frp->fr_next; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2853 if (frp->fr_next == NULL) |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2854 return frp->fr_prev; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2855 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2856 target_fr = frp->fr_next; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2857 other_fr = frp->fr_prev; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2858 if (p_spr || p_sb) |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2859 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2860 target_fr = frp->fr_prev; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2861 other_fr = frp->fr_next; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2862 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2863 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2864 /* If 'wfh' or 'wfw' is set for the target and not for the alternate |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2865 * window, reverse the selection. */ |
355 | 2866 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW) |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2867 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2868 if (frame_fixed_width(target_fr) && !frame_fixed_width(other_fr)) |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2869 target_fr = other_fr; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2870 } |
7 | 2871 else |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2872 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2873 if (frame_fixed_height(target_fr) && !frame_fixed_height(other_fr)) |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2874 target_fr = other_fr; |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2875 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2876 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2877 return target_fr; |
7 | 2878 } |
2879 | |
2880 /* | |
667 | 2881 * Return the tabpage that will be used if the current one is closed. |
2882 */ | |
2883 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2884 alt_tabpage(void) |
667 | 2885 { |
672 | 2886 tabpage_T *tp; |
2887 | |
682 | 2888 /* Use the next tab page if possible. */ |
2889 if (curtab->tp_next != NULL) | |
672 | 2890 return curtab->tp_next; |
2891 | |
682 | 2892 /* Find the last but one tab page. */ |
2893 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next) | |
2894 ; | |
674 | 2895 return tp; |
667 | 2896 } |
2897 | |
2898 /* | |
7 | 2899 * Find the left-upper window in frame "frp". |
2900 */ | |
2901 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2902 frame2win(frame_T *frp) |
7 | 2903 { |
2904 while (frp->fr_win == NULL) | |
2905 frp = frp->fr_child; | |
2906 return frp->fr_win; | |
2907 } | |
2908 | |
2909 /* | |
2910 * Return TRUE if frame "frp" contains window "wp". | |
2911 */ | |
2912 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2913 frame_has_win(frame_T *frp, win_T *wp) |
7 | 2914 { |
2915 frame_T *p; | |
2916 | |
2917 if (frp->fr_layout == FR_LEAF) | |
2918 return frp->fr_win == wp; | |
2919 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2920 FOR_ALL_FRAMES(p, frp->fr_child) |
7 | 2921 if (frame_has_win(p, wp)) |
2922 return TRUE; | |
2923 return FALSE; | |
2924 } | |
2925 | |
2926 /* | |
2927 * Set a new height for a frame. Recursively sets the height for contained | |
2928 * frames and windows. Caller must take care of positions. | |
2929 */ | |
2930 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2931 frame_new_height( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2932 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2933 int height, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2934 int topfirst, /* resize topmost contained frame first */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2935 int wfh) /* obey 'winfixheight' when there is a choice; |
7 | 2936 may cause the height not to be set */ |
2937 { | |
2938 frame_T *frp; | |
2939 int extra_lines; | |
2940 int h; | |
2941 | |
2942 if (topfrp->fr_win != NULL) | |
2943 { | |
2944 /* Simple case: just one window. */ | |
2945 win_new_height(topfrp->fr_win, | |
12491
7ab796b041bd
patch 8.0.1125: wrong window height when splitting window with window toolbar
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2946 height - topfrp->fr_win->w_status_height |
12916
af2e0401eb8c
patch 8.0.1334: splitting a window with a WinBar damages window layout
Christian Brabandt <cb@256bit.org>
parents:
12910
diff
changeset
|
2947 - WINBAR_HEIGHT(topfrp->fr_win)); |
7 | 2948 } |
2949 else if (topfrp->fr_layout == FR_ROW) | |
2950 { | |
2951 do | |
2952 { | |
2953 /* All frames in this row get the same new height. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2954 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 2955 { |
2956 frame_new_height(frp, height, topfirst, wfh); | |
2957 if (frp->fr_height > height) | |
2958 { | |
2959 /* Could not fit the windows, make the whole row higher. */ | |
2960 height = frp->fr_height; | |
2961 break; | |
2962 } | |
2963 } | |
2964 } | |
2965 while (frp != NULL); | |
2966 } | |
779 | 2967 else /* fr_layout == FR_COL */ |
7 | 2968 { |
2969 /* Complicated case: Resize a column of frames. Resize the bottom | |
2970 * frame first, frames above that when needed. */ | |
2971 | |
2972 frp = topfrp->fr_child; | |
2973 if (wfh) | |
2974 /* Advance past frames with one window with 'wfh' set. */ | |
2975 while (frame_fixed_height(frp)) | |
2976 { | |
2977 frp = frp->fr_next; | |
2978 if (frp == NULL) | |
2979 return; /* no frame without 'wfh', give up */ | |
2980 } | |
2981 if (!topfirst) | |
2982 { | |
2983 /* Find the bottom frame of this column */ | |
2984 while (frp->fr_next != NULL) | |
2985 frp = frp->fr_next; | |
2986 if (wfh) | |
2987 /* Advance back for frames with one window with 'wfh' set. */ | |
2988 while (frame_fixed_height(frp)) | |
2989 frp = frp->fr_prev; | |
2990 } | |
2991 | |
2992 extra_lines = height - topfrp->fr_height; | |
2993 if (extra_lines < 0) | |
2994 { | |
2995 /* reduce height of contained frames, bottom or top frame first */ | |
2996 while (frp != NULL) | |
2997 { | |
2998 h = frame_minheight(frp, NULL); | |
2999 if (frp->fr_height + extra_lines < h) | |
3000 { | |
3001 extra_lines += frp->fr_height - h; | |
3002 frame_new_height(frp, h, topfirst, wfh); | |
3003 } | |
3004 else | |
3005 { | |
3006 frame_new_height(frp, frp->fr_height + extra_lines, | |
3007 topfirst, wfh); | |
3008 break; | |
3009 } | |
3010 if (topfirst) | |
3011 { | |
3012 do | |
3013 frp = frp->fr_next; | |
3014 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3015 } | |
3016 else | |
3017 { | |
3018 do | |
3019 frp = frp->fr_prev; | |
3020 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3021 } | |
3022 /* Increase "height" if we could not reduce enough frames. */ | |
3023 if (frp == NULL) | |
3024 height -= extra_lines; | |
3025 } | |
3026 } | |
3027 else if (extra_lines > 0) | |
3028 { | |
3029 /* increase height of bottom or top frame */ | |
3030 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh); | |
3031 } | |
3032 } | |
3033 topfrp->fr_height = height; | |
3034 } | |
3035 | |
3036 /* | |
3037 * Return TRUE if height of frame "frp" should not be changed because of | |
3038 * the 'winfixheight' option. | |
3039 */ | |
3040 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3041 frame_fixed_height(frame_T *frp) |
7 | 3042 { |
3043 /* frame with one window: fixed height if 'winfixheight' set. */ | |
3044 if (frp->fr_win != NULL) | |
3045 return frp->fr_win->w_p_wfh; | |
3046 | |
3047 if (frp->fr_layout == FR_ROW) | |
3048 { | |
3049 /* The frame is fixed height if one of the frames in the row is fixed | |
3050 * height. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3051 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3052 if (frame_fixed_height(frp)) |
3053 return TRUE; | |
3054 return FALSE; | |
3055 } | |
3056 | |
3057 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the | |
3058 * frames in the row are fixed height. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3059 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3060 if (!frame_fixed_height(frp)) |
3061 return FALSE; | |
3062 return TRUE; | |
3063 } | |
3064 | |
3065 /* | |
779 | 3066 * Return TRUE if width of frame "frp" should not be changed because of |
3067 * the 'winfixwidth' option. | |
3068 */ | |
3069 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3070 frame_fixed_width(frame_T *frp) |
779 | 3071 { |
3072 /* frame with one window: fixed width if 'winfixwidth' set. */ | |
3073 if (frp->fr_win != NULL) | |
3074 return frp->fr_win->w_p_wfw; | |
3075 | |
3076 if (frp->fr_layout == FR_COL) | |
3077 { | |
3078 /* The frame is fixed width if one of the frames in the row is fixed | |
3079 * width. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3080 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3081 if (frame_fixed_width(frp)) |
3082 return TRUE; | |
3083 return FALSE; | |
3084 } | |
3085 | |
3086 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the | |
3087 * frames in the row are fixed width. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3088 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3089 if (!frame_fixed_width(frp)) |
3090 return FALSE; | |
3091 return TRUE; | |
3092 } | |
3093 | |
3094 /* | |
7 | 3095 * Add a status line to windows at the bottom of "frp". |
3096 * Note: Does not check if there is room! | |
3097 */ | |
3098 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3099 frame_add_statusline(frame_T *frp) |
7 | 3100 { |
3101 win_T *wp; | |
3102 | |
3103 if (frp->fr_layout == FR_LEAF) | |
3104 { | |
3105 wp = frp->fr_win; | |
3106 if (wp->w_status_height == 0) | |
3107 { | |
3108 if (wp->w_height > 0) /* don't make it negative */ | |
3109 --wp->w_height; | |
3110 wp->w_status_height = STATUS_HEIGHT; | |
3111 } | |
3112 } | |
3113 else if (frp->fr_layout == FR_ROW) | |
3114 { | |
3115 /* Handle all the frames in the row. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3116 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3117 frame_add_statusline(frp); |
3118 } | |
3119 else /* frp->fr_layout == FR_COL */ | |
3120 { | |
3121 /* Only need to handle the last frame in the column. */ | |
3122 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next) | |
3123 ; | |
3124 frame_add_statusline(frp); | |
3125 } | |
3126 } | |
3127 | |
3128 /* | |
3129 * Set width of a frame. Handles recursively going through contained frames. | |
3130 * May remove separator line for windows at the right side (for win_close()). | |
3131 */ | |
3132 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3133 frame_new_width( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3134 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3135 int width, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3136 int leftfirst, /* resize leftmost contained frame first */ |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3137 int wfw) /* obey 'winfixwidth' when there is a choice; |
779 | 3138 may cause the width not to be set */ |
7 | 3139 { |
3140 frame_T *frp; | |
3141 int extra_cols; | |
3142 int w; | |
3143 win_T *wp; | |
3144 | |
3145 if (topfrp->fr_layout == FR_LEAF) | |
3146 { | |
3147 /* Simple case: just one window. */ | |
3148 wp = topfrp->fr_win; | |
3149 /* Find out if there are any windows right of this one. */ | |
3150 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent) | |
3151 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL) | |
3152 break; | |
3153 if (frp->fr_parent == NULL) | |
3154 wp->w_vsep_width = 0; | |
3155 win_new_width(wp, width - wp->w_vsep_width); | |
3156 } | |
3157 else if (topfrp->fr_layout == FR_COL) | |
3158 { | |
779 | 3159 do |
3160 { | |
3161 /* All frames in this column get the same new width. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3162 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
779 | 3163 { |
3164 frame_new_width(frp, width, leftfirst, wfw); | |
3165 if (frp->fr_width > width) | |
3166 { | |
3167 /* Could not fit the windows, make whole column wider. */ | |
3168 width = frp->fr_width; | |
3169 break; | |
3170 } | |
3171 } | |
3172 } while (frp != NULL); | |
7 | 3173 } |
3174 else /* fr_layout == FR_ROW */ | |
3175 { | |
3176 /* Complicated case: Resize a row of frames. Resize the rightmost | |
3177 * frame first, frames left of it when needed. */ | |
3178 | |
3179 frp = topfrp->fr_child; | |
779 | 3180 if (wfw) |
3181 /* Advance past frames with one window with 'wfw' set. */ | |
3182 while (frame_fixed_width(frp)) | |
3183 { | |
3184 frp = frp->fr_next; | |
3185 if (frp == NULL) | |
3186 return; /* no frame without 'wfw', give up */ | |
3187 } | |
7 | 3188 if (!leftfirst) |
779 | 3189 { |
3190 /* Find the rightmost frame of this row */ | |
7 | 3191 while (frp->fr_next != NULL) |
3192 frp = frp->fr_next; | |
779 | 3193 if (wfw) |
3194 /* Advance back for frames with one window with 'wfw' set. */ | |
3195 while (frame_fixed_width(frp)) | |
3196 frp = frp->fr_prev; | |
3197 } | |
7 | 3198 |
3199 extra_cols = width - topfrp->fr_width; | |
3200 if (extra_cols < 0) | |
3201 { | |
3202 /* reduce frame width, rightmost frame first */ | |
3203 while (frp != NULL) | |
3204 { | |
3205 w = frame_minwidth(frp, NULL); | |
3206 if (frp->fr_width + extra_cols < w) | |
3207 { | |
3208 extra_cols += frp->fr_width - w; | |
779 | 3209 frame_new_width(frp, w, leftfirst, wfw); |
7 | 3210 } |
3211 else | |
3212 { | |
779 | 3213 frame_new_width(frp, frp->fr_width + extra_cols, |
3214 leftfirst, wfw); | |
7 | 3215 break; |
3216 } | |
3217 if (leftfirst) | |
779 | 3218 { |
3219 do | |
3220 frp = frp->fr_next; | |
3221 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3222 } | |
7 | 3223 else |
779 | 3224 { |
3225 do | |
3226 frp = frp->fr_prev; | |
3227 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3228 } | |
3229 /* Increase "width" if we could not reduce enough frames. */ | |
3230 if (frp == NULL) | |
3231 width -= extra_cols; | |
7 | 3232 } |
3233 } | |
3234 else if (extra_cols > 0) | |
3235 { | |
3236 /* increase width of rightmost frame */ | |
779 | 3237 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw); |
7 | 3238 } |
3239 } | |
3240 topfrp->fr_width = width; | |
3241 } | |
3242 | |
3243 /* | |
3244 * Add the vertical separator to windows at the right side of "frp". | |
3245 * Note: Does not check if there is room! | |
3246 */ | |
3247 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3248 frame_add_vsep(frame_T *frp) |
7 | 3249 { |
3250 win_T *wp; | |
3251 | |
3252 if (frp->fr_layout == FR_LEAF) | |
3253 { | |
3254 wp = frp->fr_win; | |
3255 if (wp->w_vsep_width == 0) | |
3256 { | |
3257 if (wp->w_width > 0) /* don't make it negative */ | |
3258 --wp->w_width; | |
3259 wp->w_vsep_width = 1; | |
3260 } | |
3261 } | |
3262 else if (frp->fr_layout == FR_COL) | |
3263 { | |
3264 /* Handle all the frames in the column. */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3265 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3266 frame_add_vsep(frp); |
3267 } | |
3268 else /* frp->fr_layout == FR_ROW */ | |
3269 { | |
3270 /* Only need to handle the last frame in the row. */ | |
3271 frp = frp->fr_child; | |
3272 while (frp->fr_next != NULL) | |
3273 frp = frp->fr_next; | |
3274 frame_add_vsep(frp); | |
3275 } | |
3276 } | |
3277 | |
3278 /* | |
3279 * Set frame width from the window it contains. | |
3280 */ | |
3281 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3282 frame_fix_width(win_T *wp) |
7 | 3283 { |
3284 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width; | |
3285 } | |
3286 | |
3287 /* | |
3288 * Set frame height from the window it contains. | |
3289 */ | |
3290 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3291 frame_fix_height(win_T *wp) |
7 | 3292 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3293 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height; |
7 | 3294 } |
3295 | |
3296 /* | |
3297 * Compute the minimal height for frame "topfrp". | |
3298 * Uses the 'winminheight' option. | |
3299 * When "next_curwin" isn't NULL, use p_wh for this window. | |
3300 * When "next_curwin" is NOWIN, don't use at least one line for the current | |
3301 * window. | |
3302 */ | |
3303 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3304 frame_minheight(frame_T *topfrp, win_T *next_curwin) |
7 | 3305 { |
3306 frame_T *frp; | |
3307 int m; | |
3308 int n; | |
3309 | |
3310 if (topfrp->fr_win != NULL) | |
3311 { | |
3312 if (topfrp->fr_win == next_curwin) | |
3313 m = p_wh + topfrp->fr_win->w_status_height; | |
3314 else | |
3315 { | |
3316 /* window: minimal height of the window plus status line */ | |
3317 m = p_wmh + topfrp->fr_win->w_status_height; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3318 if (topfrp->fr_win == curwin && next_curwin == NULL) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3319 { |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3320 /* Current window is minimal one line high and WinBar is |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3321 * visible. */ |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3322 if (p_wmh == 0) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3323 ++m; |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3324 m += WINBAR_HEIGHT(curwin); |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3325 } |
7 | 3326 } |
3327 } | |
3328 else if (topfrp->fr_layout == FR_ROW) | |
3329 { | |
3330 /* get the minimal height from each frame in this row */ | |
3331 m = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3332 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3333 { |
3334 n = frame_minheight(frp, next_curwin); | |
3335 if (n > m) | |
3336 m = n; | |
3337 } | |
3338 } | |
3339 else | |
3340 { | |
3341 /* Add up the minimal heights for all frames in this column. */ | |
3342 m = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3343 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3344 m += frame_minheight(frp, next_curwin); |
3345 } | |
3346 | |
3347 return m; | |
3348 } | |
3349 | |
3350 /* | |
3351 * Compute the minimal width for frame "topfrp". | |
3352 * When "next_curwin" isn't NULL, use p_wiw for this window. | |
3353 * When "next_curwin" is NOWIN, don't use at least one column for the current | |
3354 * window. | |
3355 */ | |
3356 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3357 frame_minwidth( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3358 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3359 win_T *next_curwin) /* use p_wh and p_wiw for next_curwin */ |
7 | 3360 { |
3361 frame_T *frp; | |
3362 int m, n; | |
3363 | |
3364 if (topfrp->fr_win != NULL) | |
3365 { | |
3366 if (topfrp->fr_win == next_curwin) | |
3367 m = p_wiw + topfrp->fr_win->w_vsep_width; | |
3368 else | |
3369 { | |
3370 /* window: minimal width of the window plus separator column */ | |
3371 m = p_wmw + topfrp->fr_win->w_vsep_width; | |
3372 /* Current window is minimal one column wide */ | |
3373 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL) | |
3374 ++m; | |
3375 } | |
3376 } | |
3377 else if (topfrp->fr_layout == FR_COL) | |
3378 { | |
3379 /* get the minimal width from each frame in this column */ | |
3380 m = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3381 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3382 { |
3383 n = frame_minwidth(frp, next_curwin); | |
3384 if (n > m) | |
3385 m = n; | |
3386 } | |
3387 } | |
3388 else | |
3389 { | |
3390 /* Add up the minimal widths for all frames in this row. */ | |
3391 m = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3392 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3393 m += frame_minwidth(frp, next_curwin); |
3394 } | |
3395 | |
3396 return m; | |
3397 } | |
3398 | |
3399 | |
3400 /* | |
3401 * Try to close all windows except current one. | |
3402 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is | |
3403 * used and the buffer was modified. | |
3404 * | |
3405 * Used by ":bdel" and ":only". | |
3406 */ | |
3407 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3408 close_others( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3409 int message, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3410 int forceit) /* always hide all other windows */ |
7 | 3411 { |
3412 win_T *wp; | |
3413 win_T *nextwp; | |
3414 int r; | |
3415 | |
1906 | 3416 if (one_window()) |
7 | 3417 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
3418 if (message && !autocmd_busy) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15490
diff
changeset
|
3419 msg(_(m_onlyone)); |
7 | 3420 return; |
3421 } | |
3422 | |
3423 /* Be very careful here: autocommands may change the window layout. */ | |
3424 for (wp = firstwin; win_valid(wp); wp = nextwp) | |
3425 { | |
3426 nextwp = wp->w_next; | |
3427 if (wp != curwin) /* don't close current window */ | |
3428 { | |
3429 | |
3430 /* Check if it's allowed to abandon this window */ | |
3431 r = can_abandon(wp->w_buffer, forceit); | |
3432 if (!win_valid(wp)) /* autocommands messed wp up */ | |
3433 { | |
3434 nextwp = firstwin; | |
3435 continue; | |
3436 } | |
3437 if (!r) | |
3438 { | |
3439 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3440 if (message && (p_confirm || cmdmod.confirm) && p_write) | |
3441 { | |
3442 dialog_changed(wp->w_buffer, FALSE); | |
3443 if (!win_valid(wp)) /* autocommands messed wp up */ | |
3444 { | |
3445 nextwp = firstwin; | |
3446 continue; | |
3447 } | |
3448 } | |
3449 if (bufIsChanged(wp->w_buffer)) | |
3450 #endif | |
3451 continue; | |
3452 } | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3453 win_close(wp, !buf_hide(wp->w_buffer) |
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3454 && !bufIsChanged(wp->w_buffer)); |
7 | 3455 } |
3456 } | |
3457 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
3458 if (message && !ONE_WINDOW) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
3459 emsg(_("E445: Other window contains changes")); |
7 | 3460 } |
3461 | |
3462 /* | |
675 | 3463 * Init the current window "curwin". |
3464 * Called when a new file is being edited. | |
7 | 3465 */ |
3466 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3467 curwin_init(void) |
7 | 3468 { |
1918 | 3469 win_init_empty(curwin); |
3470 } | |
3471 | |
3472 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3473 win_init_empty(win_T *wp) |
1918 | 3474 { |
3475 redraw_win_later(wp, NOT_VALID); | |
3476 wp->w_lines_valid = 0; | |
3477 wp->w_cursor.lnum = 1; | |
3478 wp->w_curswant = wp->w_cursor.col = 0; | |
3479 wp->w_cursor.coladd = 0; | |
3480 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */ | |
3481 wp->w_pcmark.col = 0; | |
3482 wp->w_prev_pcmark.lnum = 0; | |
3483 wp->w_prev_pcmark.col = 0; | |
3484 wp->w_topline = 1; | |
7 | 3485 #ifdef FEAT_DIFF |
1918 | 3486 wp->w_topfill = 0; |
3487 #endif | |
3488 wp->w_botline = 2; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3489 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) |
3068 | 3490 wp->w_s = &wp->w_buffer->b_s; |
3491 #endif | |
7 | 3492 } |
3493 | |
3494 /* | |
3495 * Allocate the first window and put an empty buffer in it. | |
3496 * Called from main(). | |
667 | 3497 * Return FAIL when something goes wrong (out of memory). |
7 | 3498 */ |
667 | 3499 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3500 win_alloc_first(void) |
7 | 3501 { |
675 | 3502 if (win_alloc_firstwin(NULL) == FAIL) |
667 | 3503 return FAIL; |
3504 | |
672 | 3505 first_tabpage = alloc_tabpage(); |
667 | 3506 if (first_tabpage == NULL) |
3507 return FAIL; | |
3508 first_tabpage->tp_topframe = topframe; | |
672 | 3509 curtab = first_tabpage; |
1906 | 3510 |
667 | 3511 return OK; |
3512 } | |
3513 | |
1906 | 3514 /* |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3515 * Allocate and init a window that is not a regular window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3516 * This can only be done after the first window is fully initialized, thus it |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3517 * can't be in win_alloc_first(). |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3518 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3519 win_T * |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3520 win_alloc_popup_win(void) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3521 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3522 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3523 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3524 wp = win_alloc(NULL, TRUE); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3525 if (wp != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3526 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3527 // We need to initialize options with something, using the current |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3528 // window makes most sense. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3529 win_init_some(wp, curwin); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3530 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3531 RESET_BINDING(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3532 new_frame(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3533 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3534 return wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3535 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3536 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3537 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3538 * Initialize window "wp" to display buffer "buf". |
1906 | 3539 */ |
3540 void | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3541 win_init_popup_win(win_T *wp, buf_T *buf) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3542 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3543 wp->w_buffer = buf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3544 ++buf->b_nwindows; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3545 win_init_empty(wp); // set cursor and topline to safe values |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3546 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3547 // Make sure w_localdir and globaldir are NULL to avoid a chdir() in |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3548 // win_enter_ext(). |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3549 VIM_CLEAR(wp->w_localdir); |
1906 | 3550 } |
3551 | |
667 | 3552 /* |
675 | 3553 * Allocate the first window or the first window in a new tab page. |
3554 * When "oldwin" is NULL create an empty buffer for it. | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
3555 * When "oldwin" is not NULL copy info from it to the new window. |
667 | 3556 * Return FAIL when something goes wrong (out of memory). |
3557 */ | |
3558 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3559 win_alloc_firstwin(win_T *oldwin) |
667 | 3560 { |
1906 | 3561 curwin = win_alloc(NULL, FALSE); |
675 | 3562 if (oldwin == NULL) |
3563 { | |
3564 /* Very first window, need to create an empty buffer for it and | |
3565 * initialize from scratch. */ | |
3566 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); | |
3567 if (curwin == NULL || curbuf == NULL) | |
3568 return FAIL; | |
3569 curwin->w_buffer = curbuf; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3570 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3571 curwin->w_s = &(curbuf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3572 #endif |
675 | 3573 curbuf->b_nwindows = 1; /* there is one window */ |
3574 curwin->w_alist = &global_alist; | |
3575 curwin_init(); /* init current window */ | |
3576 } | |
3577 else | |
3578 { | |
3579 /* First window in new tab page, initialize it from "oldwin". */ | |
1822 | 3580 win_init(curwin, oldwin, 0); |
675 | 3581 |
2583 | 3582 /* We don't want cursor- and scroll-binding in the first window. */ |
3583 RESET_BINDING(curwin); | |
675 | 3584 } |
7 | 3585 |
1906 | 3586 new_frame(curwin); |
3587 if (curwin->w_frame == NULL) | |
667 | 3588 return FAIL; |
1906 | 3589 topframe = curwin->w_frame; |
7 | 3590 topframe->fr_width = Columns; |
3591 topframe->fr_height = Rows - p_ch; | |
667 | 3592 |
3593 return OK; | |
3594 } | |
3595 | |
3596 /* | |
1906 | 3597 * Create a frame for window "wp". |
3598 */ | |
3599 static void | |
3600 new_frame(win_T *wp) | |
3601 { | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16690
diff
changeset
|
3602 frame_T *frp = (frame_T *)alloc_clear(sizeof(frame_T)); |
1906 | 3603 |
3604 wp->w_frame = frp; | |
3605 if (frp != NULL) | |
3606 { | |
3607 frp->fr_layout = FR_LEAF; | |
3608 frp->fr_win = wp; | |
3609 } | |
3610 } | |
3611 | |
3612 /* | |
667 | 3613 * Initialize the window and frame size to the maximum. |
3614 */ | |
3615 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3616 win_init_size(void) |
667 | 3617 { |
3618 firstwin->w_height = ROWS_AVAIL; | |
3619 topframe->fr_height = ROWS_AVAIL; | |
3620 firstwin->w_width = Columns; | |
3621 topframe->fr_width = Columns; | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
3622 } |
672 | 3623 |
3624 /* | |
3625 * Allocate a new tabpage_T and init the values. | |
3626 * Returns NULL when out of memory. | |
3627 */ | |
3628 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3629 alloc_tabpage(void) |
672 | 3630 { |
3631 tabpage_T *tp; | |
4287 | 3632 # ifdef FEAT_GUI |
3633 int i; | |
3634 # endif | |
3635 | |
672 | 3636 |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16690
diff
changeset
|
3637 tp = (tabpage_T *)alloc_clear(sizeof(tabpage_T)); |
4287 | 3638 if (tp == NULL) |
3639 return NULL; | |
3640 | |
3641 # ifdef FEAT_EVAL | |
3642 /* init t: variables */ | |
3643 tp->tp_vars = dict_alloc(); | |
3644 if (tp->tp_vars == NULL) | |
3645 { | |
3646 vim_free(tp); | |
3647 return NULL; | |
3648 } | |
3649 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); | |
3650 # endif | |
3651 | |
788 | 3652 # ifdef FEAT_GUI |
4287 | 3653 for (i = 0; i < 3; i++) |
3654 tp->tp_prev_which_scrollbars[i] = -1; | |
788 | 3655 # endif |
672 | 3656 # ifdef FEAT_DIFF |
4287 | 3657 tp->tp_diff_invalid = TRUE; |
672 | 3658 # endif |
4287 | 3659 tp->tp_ch_used = p_ch; |
3660 | |
672 | 3661 return tp; |
3662 } | |
3663 | |
852 | 3664 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3665 free_tabpage(tabpage_T *tp) |
672 | 3666 { |
1906 | 3667 int idx; |
3668 | |
672 | 3669 # ifdef FEAT_DIFF |
3670 diff_clear(tp); | |
3671 # endif | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3672 # ifdef FEAT_TEXT_PROP |
16800
12e3a3afdb6a
patch 8.1.1402: "timer" option of popup windows not supported
Bram Moolenaar <Bram@vim.org>
parents:
16796
diff
changeset
|
3673 while (tp->tp_first_popupwin != NULL) |
12e3a3afdb6a
patch 8.1.1402: "timer" option of popup windows not supported
Bram Moolenaar <Bram@vim.org>
parents:
16796
diff
changeset
|
3674 popup_close_tabpage(tp, tp->tp_first_popupwin->w_id); |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3675 #endif |
1906 | 3676 for (idx = 0; idx < SNAP_COUNT; ++idx) |
3677 clear_snapshot(tp, idx); | |
819 | 3678 #ifdef FEAT_EVAL |
4287 | 3679 vars_clear(&tp->tp_vars->dv_hashtab); /* free all t: variables */ |
3680 hash_init(&tp->tp_vars->dv_hashtab); | |
3681 unref_var_dict(tp->tp_vars); | |
819 | 3682 #endif |
4401 | 3683 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3684 vim_free(tp->tp_localdir); |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3685 |
4401 | 3686 #ifdef FEAT_PYTHON |
3687 python_tabpage_free(tp); | |
3688 #endif | |
3689 | |
3690 #ifdef FEAT_PYTHON3 | |
3691 python3_tabpage_free(tp); | |
3692 #endif | |
3693 | |
672 | 3694 vim_free(tp); |
3695 } | |
3696 | |
667 | 3697 /* |
675 | 3698 * Create a new Tab page with one window. |
3699 * It will edit the current buffer, like after ":split". | |
682 | 3700 * When "after" is 0 put it just after the current Tab page. |
3701 * Otherwise put it just before tab page "after". | |
667 | 3702 * Return FAIL or OK. |
3703 */ | |
3704 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3705 win_new_tabpage(int after) |
667 | 3706 { |
672 | 3707 tabpage_T *tp = curtab; |
667 | 3708 tabpage_T *newtp; |
682 | 3709 int n; |
667 | 3710 |
672 | 3711 newtp = alloc_tabpage(); |
667 | 3712 if (newtp == NULL) |
3713 return FAIL; | |
3714 | |
3715 /* Remember the current windows in this Tab page. */ | |
4354 | 3716 if (leave_tabpage(curbuf, TRUE) == FAIL) |
674 | 3717 { |
3718 vim_free(newtp); | |
3719 return FAIL; | |
3720 } | |
672 | 3721 curtab = newtp; |
667 | 3722 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3723 newtp->tp_localdir = (tp->tp_localdir == NULL) |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3724 ? NULL : vim_strsave(tp->tp_localdir); |
667 | 3725 /* Create a new empty window. */ |
675 | 3726 if (win_alloc_firstwin(tp->tp_curwin) == OK) |
667 | 3727 { |
3728 /* Make the new Tab page the new topframe. */ | |
682 | 3729 if (after == 1) |
3730 { | |
3731 /* New tab page becomes the first one. */ | |
3732 newtp->tp_next = first_tabpage; | |
3733 first_tabpage = newtp; | |
3734 } | |
3735 else | |
3736 { | |
3737 if (after > 0) | |
3738 { | |
3739 /* Put new tab page before tab page "after". */ | |
3740 n = 2; | |
3741 for (tp = first_tabpage; tp->tp_next != NULL | |
3742 && n < after; tp = tp->tp_next) | |
3743 ++n; | |
3744 } | |
3745 newtp->tp_next = tp->tp_next; | |
3746 tp->tp_next = newtp; | |
3747 } | |
667 | 3748 win_init_size(); |
685 | 3749 firstwin->w_winrow = tabline_height(); |
819 | 3750 win_comp_scroll(curwin); |
667 | 3751 |
3752 newtp->tp_topframe = topframe; | |
671 | 3753 last_status(FALSE); |
815 | 3754 |
3755 #if defined(FEAT_GUI) | |
3756 /* When 'guioptions' includes 'L' or 'R' may have to remove or add | |
3757 * scrollbars. Have to update them anyway. */ | |
1906 | 3758 gui_may_update_scrollbars(); |
815 | 3759 #endif |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
3760 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
3761 entering_window(curwin); |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
3762 #endif |
815 | 3763 |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
3764 redraw_all_later(NOT_VALID); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3765 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 3766 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3767 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf); |
675 | 3768 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
667 | 3769 return OK; |
3770 } | |
3771 | |
3772 /* Failed, get back the previous Tab page */ | |
4354 | 3773 enter_tabpage(curtab, curbuf, TRUE, TRUE); |
667 | 3774 return FAIL; |
3775 } | |
3776 | |
3777 /* | |
682 | 3778 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer, |
3779 * like with ":split". | |
3780 * Returns OK if a new tab page was created, FAIL otherwise. | |
3781 */ | |
3782 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3783 may_open_tabpage(void) |
682 | 3784 { |
1090 | 3785 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab; |
3786 | |
3787 if (n != 0) | |
682 | 3788 { |
3789 cmdmod.tab = 0; /* reset it to avoid doing it twice */ | |
1090 | 3790 postponed_split_tab = 0; |
682 | 3791 return win_new_tabpage(n); |
3792 } | |
3793 return FAIL; | |
3794 } | |
3795 | |
3796 /* | |
672 | 3797 * Create up to "maxcount" tabpages with empty windows. |
3798 * Returns the number of resulting tab pages. | |
667 | 3799 */ |
672 | 3800 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3801 make_tabpages(int maxcount) |
667 | 3802 { |
672 | 3803 int count = maxcount; |
3804 int todo; | |
3805 | |
698 | 3806 /* Limit to 'tabpagemax' tabs. */ |
3807 if (count > p_tpm) | |
3808 count = p_tpm; | |
672 | 3809 |
3810 /* | |
3811 * Don't execute autocommands while creating the tab pages. Must do that | |
3812 * when putting the buffers in the windows. | |
3813 */ | |
1410 | 3814 block_autocmds(); |
672 | 3815 |
3816 for (todo = count - 1; todo > 0; --todo) | |
682 | 3817 if (win_new_tabpage(0) == FAIL) |
667 | 3818 break; |
672 | 3819 |
1410 | 3820 unblock_autocmds(); |
672 | 3821 |
3822 /* return actual number of tab pages */ | |
3823 return (count - todo); | |
667 | 3824 } |
3825 | |
3826 /* | |
671 | 3827 * Return TRUE when "tpc" points to a valid tab page. |
3828 */ | |
3829 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3830 valid_tabpage(tabpage_T *tpc) |
671 | 3831 { |
3832 tabpage_T *tp; | |
3833 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
3834 FOR_ALL_TABPAGES(tp) |
671 | 3835 if (tp == tpc) |
3836 return TRUE; | |
3837 return FALSE; | |
3838 } | |
3839 | |
3840 /* | |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3841 * Return TRUE when "tpc" points to a valid tab page and at least one window is |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3842 * valid. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3843 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3844 int |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3845 valid_tabpage_win(tabpage_T *tpc) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3846 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3847 tabpage_T *tp; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3848 win_T *wp; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3849 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3850 FOR_ALL_TABPAGES(tp) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3851 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3852 if (tp == tpc) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3853 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3854 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3855 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3856 if (win_valid_any_tab(wp)) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3857 return TRUE; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3858 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3859 return FALSE; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3860 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3861 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3862 /* shouldn't happen */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3863 return FALSE; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3864 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3865 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3866 /* |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3867 * Close tabpage "tab", assuming it has no windows in it. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3868 * There must be another tabpage or this will crash. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3869 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3870 void |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3871 close_tabpage(tabpage_T *tab) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3872 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3873 tabpage_T *ptp; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3874 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3875 if (tab == first_tabpage) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3876 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3877 first_tabpage = tab->tp_next; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3878 ptp = first_tabpage; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3879 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3880 else |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3881 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3882 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tab; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3883 ptp = ptp->tp_next) |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3884 ; |
11232
a14090a30a3f
patch 8.0.0502: Coverity complains about possible NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11207
diff
changeset
|
3885 assert(ptp != NULL); |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3886 ptp->tp_next = tab->tp_next; |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3887 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3888 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3889 goto_tabpage_tp(ptp, FALSE, FALSE); |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3890 free_tabpage(tab); |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3891 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3892 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3893 /* |
671 | 3894 * Find tab page "n" (first one is 1). Returns NULL when not found. |
3895 */ | |
3896 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3897 find_tabpage(int n) |
671 | 3898 { |
3899 tabpage_T *tp; | |
3900 int i = 1; | |
3901 | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3902 if (n == 0) |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3903 return curtab; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3904 |
671 | 3905 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next) |
3906 ++i; | |
3907 return tp; | |
3908 } | |
3909 | |
3910 /* | |
685 | 3911 * Get index of tab page "tp". First one has index 1. |
686 | 3912 * When not found returns number of tab pages plus one. |
685 | 3913 */ |
3914 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3915 tabpage_index(tabpage_T *ftp) |
685 | 3916 { |
3917 int i = 1; | |
3918 tabpage_T *tp; | |
3919 | |
3920 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next) | |
3921 ++i; | |
3922 return i; | |
3923 } | |
3924 | |
3925 /* | |
674 | 3926 * Prepare for leaving the current tab page. |
4352 | 3927 * When autocommands change "curtab" we don't leave the tab page and return |
674 | 3928 * FAIL. |
3929 * Careful: When OK is returned need to get a new tab page very very soon! | |
667 | 3930 */ |
674 | 3931 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3932 leave_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3933 buf_T *new_curbuf UNUSED, /* what is going to be the new curbuf, |
674 | 3934 NULL if unknown */ |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3935 int trigger_leave_autocmds UNUSED) |
667 | 3936 { |
674 | 3937 tabpage_T *tp = curtab; |
3938 | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
3939 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
3940 leaving_window(curwin); |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
3941 #endif |
819 | 3942 reset_VIsual_and_resel(); /* stop Visual mode */ |
4354 | 3943 if (trigger_leave_autocmds) |
3944 { | |
3945 if (new_curbuf != curbuf) | |
3946 { | |
3947 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
3948 if (curtab != tp) | |
3949 return FAIL; | |
3950 } | |
3951 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
674 | 3952 if (curtab != tp) |
3953 return FAIL; | |
4354 | 3954 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); |
3955 if (curtab != tp) | |
3956 return FAIL; | |
3957 } | |
668 | 3958 #if defined(FEAT_GUI) |
3959 /* Remove the scrollbars. They may be added back later. */ | |
3960 if (gui.in_use) | |
3961 gui_remove_scrollbars(); | |
3962 #endif | |
667 | 3963 tp->tp_curwin = curwin; |
671 | 3964 tp->tp_prevwin = prevwin; |
667 | 3965 tp->tp_firstwin = firstwin; |
3966 tp->tp_lastwin = lastwin; | |
668 | 3967 tp->tp_old_Rows = Rows; |
3968 tp->tp_old_Columns = Columns; | |
667 | 3969 firstwin = NULL; |
3970 lastwin = NULL; | |
674 | 3971 return OK; |
667 | 3972 } |
3973 | |
3974 /* | |
3975 * Start using tab page "tp". | |
675 | 3976 * Only to be used after leave_tabpage() or freeing the current tab page. |
4354 | 3977 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
3978 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
667 | 3979 */ |
3980 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3981 enter_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3982 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3983 buf_T *old_curbuf UNUSED, |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3984 int trigger_enter_autocmds, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3985 int trigger_leave_autocmds) |
667 | 3986 { |
668 | 3987 int old_off = tp->tp_firstwin->w_winrow; |
870 | 3988 win_T *next_prevwin = tp->tp_prevwin; |
668 | 3989 |
672 | 3990 curtab = tp; |
667 | 3991 firstwin = tp->tp_firstwin; |
3992 lastwin = tp->tp_lastwin; | |
3993 topframe = tp->tp_topframe; | |
870 | 3994 |
3995 /* We would like doing the TabEnter event first, but we don't have a | |
3996 * valid current window yet, which may break some commands. | |
3997 * This triggers autocommands, thus may make "tp" invalid. */ | |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3998 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE, |
4918
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
3999 trigger_enter_autocmds, trigger_leave_autocmds); |
870 | 4000 prevwin = next_prevwin; |
4001 | |
668 | 4002 last_status(FALSE); /* status line may appear or disappear */ |
4003 (void)win_comp_pos(); /* recompute w_winrow for all windows */ | |
672 | 4004 #ifdef FEAT_DIFF |
4005 diff_need_scrollbind = TRUE; | |
4006 #endif | |
668 | 4007 |
4008 /* The tabpage line may have appeared or disappeared, may need to resize | |
4009 * the frames for that. When the Vim window was resized need to update | |
824 | 4010 * frame sizes too. Use the stored value of p_ch, so that it can be |
4011 * different for each tab page. */ | |
16477
8cc31b1b1d23
patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
4012 if (p_ch != curtab->tp_ch_used) |
8cc31b1b1d23
patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
4013 clear_cmdline = TRUE; |
824 | 4014 p_ch = curtab->tp_ch_used; |
685 | 4015 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow |
4016 #ifdef FEAT_GUI_TABLINE | |
4017 && !gui_use_tabline() | |
4018 #endif | |
4019 )) | |
668 | 4020 shell_new_rows(); |
674 | 4021 if (curtab->tp_old_Columns != Columns && starting == 0) |
668 | 4022 shell_new_columns(); /* update window widths */ |
4023 | |
4024 #if defined(FEAT_GUI) | |
4025 /* When 'guioptions' includes 'L' or 'R' may have to remove or add | |
4026 * scrollbars. Have to update them anyway. */ | |
1906 | 4027 gui_may_update_scrollbars(); |
667 | 4028 #endif |
4029 | |
3413 | 4030 /* Apply autocommands after updating the display, when 'rows' and |
4031 * 'columns' have been set correctly. */ | |
4354 | 4032 if (trigger_enter_autocmds) |
3582 | 4033 { |
4034 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); | |
4035 if (old_curbuf != curbuf) | |
4036 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4037 } | |
3413 | 4038 |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
4039 redraw_all_later(NOT_VALID); |
667 | 4040 } |
4041 | |
4042 /* | |
4043 * Go to tab page "n". For ":tab N" and "Ngt". | |
685 | 4044 * When "n" is 9999 go to the last tab page. |
667 | 4045 */ |
4046 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4047 goto_tabpage(int n) |
667 | 4048 { |
16405
840fa633ad64
patch 8.1.1207: some compilers give warning messages
Bram Moolenaar <Bram@vim.org>
parents:
16401
diff
changeset
|
4049 tabpage_T *tp = NULL; // shut up compiler |
682 | 4050 tabpage_T *ttp; |
667 | 4051 int i; |
4052 | |
857 | 4053 if (text_locked()) |
4054 { | |
4055 /* Not allowed when editing the command line. */ | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10076
diff
changeset
|
4056 text_locked_msg(); |
857 | 4057 return; |
4058 } | |
4059 | |
675 | 4060 /* If there is only one it can't work. */ |
4061 if (first_tabpage->tp_next == NULL) | |
4062 { | |
4063 if (n > 1) | |
4064 beep_flush(); | |
4065 return; | |
4066 } | |
4067 | |
667 | 4068 if (n == 0) |
4069 { | |
4070 /* No count, go to next tab page, wrap around end. */ | |
674 | 4071 if (curtab->tp_next == NULL) |
667 | 4072 tp = first_tabpage; |
4073 else | |
674 | 4074 tp = curtab->tp_next; |
667 | 4075 } |
682 | 4076 else if (n < 0) |
4077 { | |
4078 /* "gT": go to previous tab page, wrap around end. "N gT" repeats | |
4079 * this N times. */ | |
4080 ttp = curtab; | |
4081 for (i = n; i < 0; ++i) | |
4082 { | |
4083 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL; | |
4084 tp = tp->tp_next) | |
4085 ; | |
4086 ttp = tp; | |
4087 } | |
4088 } | |
685 | 4089 else if (n == 9999) |
4090 { | |
4091 /* Go to last tab page. */ | |
4092 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next) | |
4093 ; | |
4094 } | |
667 | 4095 else |
4096 { | |
4097 /* Go to tab page "n". */ | |
685 | 4098 tp = find_tabpage(n); |
671 | 4099 if (tp == NULL) |
4100 { | |
4101 beep_flush(); | |
4102 return; | |
4103 } | |
667 | 4104 } |
4105 | |
4354 | 4106 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 4107 |
4108 #ifdef FEAT_GUI_TABLINE | |
4109 if (gui_use_tabline()) | |
690 | 4110 gui_mch_set_curtab(tabpage_index(curtab)); |
685 | 4111 #endif |
4112 } | |
4113 | |
4114 /* | |
4115 * Go to tabpage "tp". | |
4354 | 4116 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4117 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
685 | 4118 * Note: doesn't update the GUI tab. |
4119 */ | |
4120 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4121 goto_tabpage_tp( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4122 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4123 int trigger_enter_autocmds, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4124 int trigger_leave_autocmds) |
685 | 4125 { |
2201
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4126 /* Don't repeat a message in another tab page. */ |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4127 set_keep_msg(NULL, 0); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4128 |
4354 | 4129 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer, |
4130 trigger_leave_autocmds) == OK) | |
674 | 4131 { |
4132 if (valid_tabpage(tp)) | |
4354 | 4133 enter_tabpage(tp, curbuf, trigger_enter_autocmds, |
4134 trigger_leave_autocmds); | |
674 | 4135 else |
4354 | 4136 enter_tabpage(curtab, curbuf, trigger_enter_autocmds, |
4137 trigger_leave_autocmds); | |
674 | 4138 } |
667 | 4139 } |
7 | 4140 |
4141 /* | |
825 | 4142 * Enter window "wp" in tab page "tp". |
4143 * Also updates the GUI tab. | |
4144 */ | |
4145 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4146 goto_tabpage_win(tabpage_T *tp, win_T *wp) |
825 | 4147 { |
4354 | 4148 goto_tabpage_tp(tp, TRUE, TRUE); |
825 | 4149 if (curtab == tp && win_valid(wp)) |
4150 { | |
4151 win_enter(wp, TRUE); | |
4152 # ifdef FEAT_GUI_TABLINE | |
4153 if (gui_use_tabline()) | |
4154 gui_mch_set_curtab(tabpage_index(curtab)); | |
4155 # endif | |
4156 } | |
4157 } | |
4158 | |
4159 /* | |
6775 | 4160 * Move the current tab page to after tab page "nr". |
682 | 4161 */ |
4162 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4163 tabpage_move(int nr) |
682 | 4164 { |
6775 | 4165 int n = 1; |
4166 tabpage_T *tp, *tp_dst; | |
682 | 4167 |
4168 if (first_tabpage->tp_next == NULL) | |
4169 return; | |
4170 | |
6775 | 4171 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next) |
4172 ++n; | |
4173 | |
4174 if (tp == curtab || (nr > 0 && tp->tp_next != NULL | |
4175 && tp->tp_next == curtab)) | |
4176 return; | |
4177 | |
4178 tp_dst = tp; | |
4179 | |
682 | 4180 /* Remove the current tab page from the list of tab pages. */ |
4181 if (curtab == first_tabpage) | |
4182 first_tabpage = curtab->tp_next; | |
4183 else | |
4184 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4185 FOR_ALL_TABPAGES(tp) |
682 | 4186 if (tp->tp_next == curtab) |
4187 break; | |
4188 if (tp == NULL) /* "cannot happen" */ | |
4189 return; | |
4190 tp->tp_next = curtab->tp_next; | |
4191 } | |
4192 | |
4193 /* Re-insert it at the specified position. */ | |
6775 | 4194 if (nr <= 0) |
682 | 4195 { |
4196 curtab->tp_next = first_tabpage; | |
4197 first_tabpage = curtab; | |
4198 } | |
4199 else | |
4200 { | |
6775 | 4201 curtab->tp_next = tp_dst->tp_next; |
4202 tp_dst->tp_next = curtab; | |
682 | 4203 } |
4204 | |
4205 /* Need to redraw the tabline. Tab page contents doesn't change. */ | |
4206 redraw_tabline = TRUE; | |
4207 } | |
4208 | |
4209 | |
4210 /* | |
7 | 4211 * Go to another window. |
4212 * When jumping to another buffer, stop Visual mode. Do this before | |
4213 * changing windows so we can yank the selection into the '*' register. | |
4214 * When jumping to another window on the same buffer, adjust its cursor | |
4215 * position to keep the same Visual area. | |
4216 */ | |
4217 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4218 win_goto(win_T *wp) |
7 | 4219 { |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4220 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4221 win_T *owp = curwin; |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4222 #endif |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4223 |
633 | 4224 if (text_locked()) |
7 | 4225 { |
4226 beep_flush(); | |
633 | 4227 text_locked_msg(); |
7 | 4228 return; |
4229 } | |
819 | 4230 if (curbuf_locked()) |
4231 return; | |
631 | 4232 |
7 | 4233 if (wp->w_buffer != curbuf) |
4234 reset_VIsual_and_resel(); | |
4235 else if (VIsual_active) | |
4236 wp->w_cursor = curwin->w_cursor; | |
4237 | |
4238 #ifdef FEAT_GUI | |
4239 need_mouse_correct = TRUE; | |
4240 #endif | |
4241 win_enter(wp, TRUE); | |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4242 |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4243 #ifdef FEAT_CONCEAL |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15380
diff
changeset
|
4244 // Conceal cursor line in previous window, unconceal in current window. |
4094 | 4245 if (win_valid(owp) && owp->w_p_cole > 0 && !msg_scrolled) |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15380
diff
changeset
|
4246 redrawWinline(owp, owp->w_cursor.lnum); |
4094 | 4247 if (curwin->w_p_cole > 0 && !msg_scrolled) |
4248 need_cursor_line_redraw = TRUE; | |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4249 #endif |
7 | 4250 } |
4251 | |
4252 #if defined(FEAT_PERL) || defined(PROTO) | |
4253 /* | |
4254 * Find window number "winnr" (counting top to bottom). | |
4255 */ | |
4256 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4257 win_find_nr(int winnr) |
7 | 4258 { |
4259 win_T *wp; | |
4260 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4261 FOR_ALL_WINDOWS(wp) |
7 | 4262 if (--winnr == 0) |
4263 break; | |
4264 return wp; | |
4265 } | |
4266 #endif | |
4267 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4268 #if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO) |
4429 | 4269 /* |
4270 * Find the tabpage for window "win". | |
4271 */ | |
4272 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4273 win_find_tabpage(win_T *win) |
4429 | 4274 { |
4275 win_T *wp; | |
4276 tabpage_T *tp; | |
4277 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4278 FOR_ALL_TAB_WINDOWS(tp, wp) |
4429 | 4279 if (wp == win) |
4280 return tp; | |
4281 return NULL; | |
4282 } | |
4283 #endif | |
4284 | |
7 | 4285 /* |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4286 * Get the above or below neighbor window of the specified window. |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4287 * up - TRUE for the above neighbor |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4288 * count - nth neighbor window |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4289 * Returns the specified window if the neighbor is not found. |
7 | 4290 */ |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4291 win_T * |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4292 win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count) |
7 | 4293 { |
4294 frame_T *fr; | |
4295 frame_T *nfr; | |
4296 frame_T *foundfr; | |
4297 | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4298 foundfr = wp->w_frame; |
7 | 4299 while (count--) |
4300 { | |
4301 /* | |
4302 * First go upwards in the tree of frames until we find a upwards or | |
4303 * downwards neighbor. | |
4304 */ | |
4305 fr = foundfr; | |
4306 for (;;) | |
4307 { | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4308 if (fr == tp->tp_topframe) |
7 | 4309 goto end; |
4310 if (up) | |
4311 nfr = fr->fr_prev; | |
4312 else | |
4313 nfr = fr->fr_next; | |
4314 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL) | |
4315 break; | |
4316 fr = fr->fr_parent; | |
4317 } | |
4318 | |
4319 /* | |
4320 * Now go downwards to find the bottom or top frame in it. | |
4321 */ | |
4322 for (;;) | |
4323 { | |
4324 if (nfr->fr_layout == FR_LEAF) | |
4325 { | |
4326 foundfr = nfr; | |
4327 break; | |
4328 } | |
4329 fr = nfr->fr_child; | |
4330 if (nfr->fr_layout == FR_ROW) | |
4331 { | |
4332 /* Find the frame at the cursor row. */ | |
4333 while (fr->fr_next != NULL | |
4334 && frame2win(fr)->w_wincol + fr->fr_width | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4335 <= wp->w_wincol + wp->w_wcol) |
7 | 4336 fr = fr->fr_next; |
4337 } | |
4338 if (nfr->fr_layout == FR_COL && up) | |
4339 while (fr->fr_next != NULL) | |
4340 fr = fr->fr_next; | |
4341 nfr = fr; | |
4342 } | |
4343 } | |
4344 end: | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4345 return foundfr != NULL ? foundfr->fr_win : NULL; |
7 | 4346 } |
4347 | |
4348 /* | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4349 * Move to window above or below "count" times. |
7 | 4350 */ |
4351 static void | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4352 win_goto_ver( |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4353 int up, // TRUE to go to win above |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4354 long count) |
7 | 4355 { |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4356 win_T *win; |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4357 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4358 win = win_vert_neighbor(curtab, curwin, up, count); |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4359 if (win != NULL) |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4360 win_goto(win); |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4361 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4362 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4363 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4364 * Get the left or right neighbor window of the specified window. |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4365 * left - TRUE for the left neighbor |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4366 * count - nth neighbor window |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4367 * Returns the specified window if the neighbor is not found. |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4368 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4369 win_T * |
16354
b3bc3ba07bef
patch 8.1.1182: some function prototypes are outdated
Bram Moolenaar <Bram@vim.org>
parents:
16271
diff
changeset
|
4370 win_horz_neighbor(tabpage_T *tp, win_T *wp, int left, long count) |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4371 { |
7 | 4372 frame_T *fr; |
4373 frame_T *nfr; | |
4374 frame_T *foundfr; | |
4375 | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4376 foundfr = wp->w_frame; |
7 | 4377 while (count--) |
4378 { | |
4379 /* | |
4380 * First go upwards in the tree of frames until we find a left or | |
4381 * right neighbor. | |
4382 */ | |
4383 fr = foundfr; | |
4384 for (;;) | |
4385 { | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4386 if (fr == tp->tp_topframe) |
7 | 4387 goto end; |
4388 if (left) | |
4389 nfr = fr->fr_prev; | |
4390 else | |
4391 nfr = fr->fr_next; | |
4392 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL) | |
4393 break; | |
4394 fr = fr->fr_parent; | |
4395 } | |
4396 | |
4397 /* | |
4398 * Now go downwards to find the leftmost or rightmost frame in it. | |
4399 */ | |
4400 for (;;) | |
4401 { | |
4402 if (nfr->fr_layout == FR_LEAF) | |
4403 { | |
4404 foundfr = nfr; | |
4405 break; | |
4406 } | |
4407 fr = nfr->fr_child; | |
4408 if (nfr->fr_layout == FR_COL) | |
4409 { | |
4410 /* Find the frame at the cursor row. */ | |
4411 while (fr->fr_next != NULL | |
4412 && frame2win(fr)->w_winrow + fr->fr_height | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4413 <= wp->w_winrow + wp->w_wrow) |
7 | 4414 fr = fr->fr_next; |
4415 } | |
4416 if (nfr->fr_layout == FR_ROW && left) | |
4417 while (fr->fr_next != NULL) | |
4418 fr = fr->fr_next; | |
4419 nfr = fr; | |
4420 } | |
4421 } | |
4422 end: | |
16271
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4423 return foundfr != NULL ? foundfr->fr_win : NULL; |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4424 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4425 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4426 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4427 * Move to left or right window. |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4428 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4429 static void |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4430 win_goto_hor( |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4431 int left, // TRUE to go to left win |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4432 long count) |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4433 { |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4434 win_T *win; |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4435 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4436 win = win_horz_neighbor(curtab, curwin, left, count); |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4437 if (win != NULL) |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4438 win_goto(win); |
7 | 4439 } |
4440 | |
4441 /* | |
4442 * Make window "wp" the current window. | |
4443 */ | |
4444 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4445 win_enter(win_T *wp, int undo_sync) |
7 | 4446 { |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4447 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE); |
7 | 4448 } |
4449 | |
4450 /* | |
4451 * Make window wp the current window. | |
4452 * Can be called with "curwin_invalid" TRUE, which means that curwin has just | |
4453 * been closed and isn't valid. | |
4454 */ | |
4455 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4456 win_enter_ext( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4457 win_T *wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4458 int undo_sync, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4459 int curwin_invalid, |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4460 int trigger_new_autocmds, |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4461 int trigger_enter_autocmds, |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4462 int trigger_leave_autocmds) |
7 | 4463 { |
4464 int other_buffer = FALSE; | |
4465 | |
4466 if (wp == curwin && !curwin_invalid) /* nothing to do */ | |
4467 return; | |
4468 | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4469 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4470 if (!curwin_invalid) |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4471 leaving_window(curwin); |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4472 #endif |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4473 |
4354 | 4474 if (!curwin_invalid && trigger_leave_autocmds) |
7 | 4475 { |
4476 /* | |
4477 * Be careful: If autocommands delete the window, return now. | |
4478 */ | |
4479 if (wp->w_buffer != curbuf) | |
4480 { | |
4481 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4482 other_buffer = TRUE; | |
4483 if (!win_valid(wp)) | |
4484 return; | |
4485 } | |
4486 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
4487 if (!win_valid(wp)) | |
4488 return; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4489 #ifdef FEAT_EVAL |
7 | 4490 /* autocmds may abort script processing */ |
4491 if (aborting()) | |
4492 return; | |
4493 #endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4494 } |
7 | 4495 |
4496 /* sync undo before leaving the current buffer */ | |
4497 if (undo_sync && curbuf != wp->w_buffer) | |
825 | 4498 u_sync(FALSE); |
5977 | 4499 |
4500 /* Might need to scroll the old window before switching, e.g., when the | |
4501 * cursor was moved. */ | |
4502 update_topline(); | |
4503 | |
7 | 4504 /* may have to copy the buffer options when 'cpo' contains 'S' */ |
4505 if (wp->w_buffer != curbuf) | |
4506 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP); | |
4507 if (!curwin_invalid) | |
4508 { | |
4509 prevwin = curwin; /* remember for CTRL-W p */ | |
4510 curwin->w_redr_status = TRUE; | |
4511 } | |
4512 curwin = wp; | |
4513 curbuf = wp->w_buffer; | |
4514 check_cursor(); | |
4515 if (!virtual_active()) | |
4516 curwin->w_cursor.coladd = 0; | |
4517 changed_line_abv_curs(); /* assume cursor position needs updating */ | |
4518 | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4519 if (curwin->w_localdir != NULL || curtab->tp_localdir != NULL) |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4520 { |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4521 char_u *dirname; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4522 |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4523 // Window or tab has a local directory: Save current directory as |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4524 // global directory (unless that was done already) and change to the |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4525 // local directory. |
7 | 4526 if (globaldir == NULL) |
4527 { | |
4528 char_u cwd[MAXPATHL]; | |
4529 | |
4530 if (mch_dirname(cwd, MAXPATHL) == OK) | |
4531 globaldir = vim_strsave(cwd); | |
4532 } | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4533 if (curwin->w_localdir != NULL) |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4534 dirname = curwin->w_localdir; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4535 else |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4536 dirname = curtab->tp_localdir; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4537 |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4538 if (mch_chdir((char *)dirname) == 0) |
1757 | 4539 shorten_fnames(TRUE); |
7 | 4540 } |
4541 else if (globaldir != NULL) | |
4542 { | |
4543 /* Window doesn't have a local directory and we are not in the global | |
4544 * directory: Change to the global directory. */ | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14587
diff
changeset
|
4545 vim_ignored = mch_chdir((char *)globaldir); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
4546 VIM_CLEAR(globaldir); |
7 | 4547 shorten_fnames(TRUE); |
4548 } | |
4549 | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4550 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4551 entering_window(curwin); |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
4552 #endif |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4553 if (trigger_new_autocmds) |
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4554 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 4555 if (trigger_enter_autocmds) |
4556 { | |
4557 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); | |
4558 if (other_buffer) | |
4559 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4560 } | |
7 | 4561 |
4562 #ifdef FEAT_TITLE | |
4563 maketitle(); | |
4564 #endif | |
4565 curwin->w_redr_status = TRUE; | |
672 | 4566 redraw_tabline = TRUE; |
7 | 4567 if (restart_edit) |
4568 redraw_later(VALID); /* causes status line redraw */ | |
4569 | |
4570 /* set window height to desired minimal value */ | |
4571 if (curwin->w_height < p_wh && !curwin->w_p_wfh) | |
4572 win_setheight((int)p_wh); | |
4573 else if (curwin->w_height == 0) | |
4574 win_setheight(1); | |
4575 | |
4576 /* set window width to desired minimal value */ | |
779 | 4577 if (curwin->w_width < p_wiw && !curwin->w_p_wfw) |
7 | 4578 win_setwidth((int)p_wiw); |
4579 | |
4580 #ifdef FEAT_MOUSE | |
4581 setmouse(); /* in case jumped to/from help buffer */ | |
4582 #endif | |
4583 | |
961 | 4584 /* Change directories when the 'acd' option is set. */ |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4585 DO_AUTOCHDIR; |
7 | 4586 } |
4587 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4588 |
7 | 4589 /* |
825 | 4590 * Jump to the first open window that contains buffer "buf", if one exists. |
4591 * Returns a pointer to the window found, otherwise NULL. | |
7 | 4592 */ |
4593 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4594 buf_jump_open_win(buf_T *buf) |
7 | 4595 { |
6307 | 4596 win_T *wp = NULL; |
4597 | |
4598 if (curwin->w_buffer == buf) | |
4599 wp = curwin; | |
4600 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4601 FOR_ALL_WINDOWS(wp) |
6307 | 4602 if (wp->w_buffer == buf) |
4603 break; | |
7 | 4604 if (wp != NULL) |
4605 win_enter(wp, FALSE); | |
4606 return wp; | |
4607 } | |
825 | 4608 |
4609 /* | |
4610 * Jump to the first open window in any tab page that contains buffer "buf", | |
4611 * if one exists. | |
4612 * Returns a pointer to the window found, otherwise NULL. | |
4613 */ | |
4614 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4615 buf_jump_open_tab(buf_T *buf) |
825 | 4616 { |
6307 | 4617 win_T *wp = buf_jump_open_win(buf); |
825 | 4618 tabpage_T *tp; |
4619 | |
4620 if (wp != NULL) | |
4621 return wp; | |
4622 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4623 FOR_ALL_TABPAGES(tp) |
825 | 4624 if (tp != curtab) |
4625 { | |
4626 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next) | |
4627 if (wp->w_buffer == buf) | |
4628 break; | |
4629 if (wp != NULL) | |
4630 { | |
4631 goto_tabpage_win(tp, wp); | |
4632 if (curwin != wp) | |
4633 wp = NULL; /* something went wrong */ | |
4634 break; | |
4635 } | |
4636 } | |
4637 return wp; | |
4638 } | |
7 | 4639 |
9223
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
4640 static int last_win_id = LOWEST_WIN_ID - 1; |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
4641 |
7 | 4642 /* |
1906 | 4643 * Allocate a window structure and link it in the window list when "hidden" is |
4644 * FALSE. | |
7 | 4645 */ |
4646 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4647 win_alloc(win_T *after UNUSED, int hidden UNUSED) |
7 | 4648 { |
3263 | 4649 win_T *new_wp; |
7 | 4650 |
4651 /* | |
4652 * allocate window structure and linesizes arrays | |
4653 */ | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16690
diff
changeset
|
4654 new_wp = (win_T *)alloc_clear(sizeof(win_T)); |
4287 | 4655 if (new_wp == NULL) |
4656 return NULL; | |
4657 | |
4658 if (win_alloc_lines(new_wp) == FAIL) | |
3263 | 4659 { |
4660 vim_free(new_wp); | |
4287 | 4661 return NULL; |
4662 } | |
4663 | |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
4664 new_wp->w_id = ++last_win_id; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
4665 |
4287 | 4666 #ifdef FEAT_EVAL |
4667 /* init w: variables */ | |
4668 new_wp->w_vars = dict_alloc(); | |
4669 if (new_wp->w_vars == NULL) | |
4670 { | |
4671 win_free_lsize(new_wp); | |
4672 vim_free(new_wp); | |
4673 return NULL; | |
4674 } | |
4675 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE); | |
4676 #endif | |
4677 | |
4678 /* Don't execute autocommands while the window is not properly | |
4679 * initialized yet. gui_create_scrollbar() may trigger a FocusGained | |
4680 * event. */ | |
4681 block_autocmds(); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4682 |
4287 | 4683 /* |
4684 * link the window in the window list | |
4685 */ | |
4686 if (!hidden) | |
4687 win_append(after, new_wp); | |
4688 new_wp->w_wincol = 0; | |
4689 new_wp->w_width = Columns; | |
4690 | |
4691 /* position the display and the cursor at the top of the file. */ | |
4692 new_wp->w_topline = 1; | |
7 | 4693 #ifdef FEAT_DIFF |
4287 | 4694 new_wp->w_topfill = 0; |
4695 #endif | |
4696 new_wp->w_botline = 2; | |
4697 new_wp->w_cursor.lnum = 1; | |
4698 new_wp->w_scbind_pos = 1; | |
4699 | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4700 // use global option value for global-local options |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4701 new_wp->w_p_so = -1; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4702 new_wp->w_p_siso = -1; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4703 |
4287 | 4704 /* We won't calculate w_fraction until resizing the window */ |
4705 new_wp->w_fraction = 0; | |
4706 new_wp->w_prev_fraction_row = -1; | |
7 | 4707 |
4708 #ifdef FEAT_GUI | |
4287 | 4709 if (gui.in_use) |
4710 { | |
4711 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT], | |
4712 SBAR_LEFT, new_wp); | |
4713 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT], | |
4714 SBAR_RIGHT, new_wp); | |
4715 } | |
7 | 4716 #endif |
4717 #ifdef FEAT_FOLDING | |
4287 | 4718 foldInitWin(new_wp); |
7 | 4719 #endif |
4287 | 4720 unblock_autocmds(); |
1326 | 4721 #ifdef FEAT_SEARCH_EXTRA |
4287 | 4722 new_wp->w_match_head = NULL; |
4723 new_wp->w_next_match_id = 4; | |
4724 #endif | |
3263 | 4725 return new_wp; |
7 | 4726 } |
4727 | |
4728 /* | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4729 * Remove window 'wp' from the window list and free the structure. |
7 | 4730 */ |
4731 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4732 win_free( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4733 win_T *wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4734 tabpage_T *tp) /* tab page "win" is in, NULL for current */ |
7 | 4735 { |
4736 int i; | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4737 buf_T *buf; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4738 wininfo_T *wip; |
7 | 4739 |
1918 | 4740 #ifdef FEAT_FOLDING |
4741 clearFolding(wp); | |
4742 #endif | |
4743 | |
4744 /* reduce the reference count to the argument list. */ | |
4745 alist_unlink(wp->w_alist); | |
4746 | |
1114 | 4747 /* Don't execute autocommands while the window is halfway being deleted. |
4748 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */ | |
1410 | 4749 block_autocmds(); |
1114 | 4750 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4751 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4752 lua_window_free(wp); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4753 #endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4754 |
14 | 4755 #ifdef FEAT_MZSCHEME |
4756 mzscheme_window_free(wp); | |
4757 #endif | |
4758 | |
7 | 4759 #ifdef FEAT_PERL |
4760 perl_win_free(wp); | |
4761 #endif | |
4762 | |
4763 #ifdef FEAT_PYTHON | |
4764 python_window_free(wp); | |
4765 #endif | |
4766 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4767 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4768 python3_window_free(wp); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4769 #endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4770 |
7 | 4771 #ifdef FEAT_TCL |
4772 tcl_window_free(wp); | |
4773 #endif | |
4774 | |
4775 #ifdef FEAT_RUBY | |
4776 ruby_window_free(wp); | |
4777 #endif | |
4778 | |
4779 clear_winopt(&wp->w_onebuf_opt); | |
4780 clear_winopt(&wp->w_allbuf_opt); | |
4781 | |
4782 #ifdef FEAT_EVAL | |
4287 | 4783 vars_clear(&wp->w_vars->dv_hashtab); /* free all w: variables */ |
4784 hash_init(&wp->w_vars->dv_hashtab); | |
4785 unref_var_dict(wp->w_vars); | |
7 | 4786 #endif |
4787 | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4788 { |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4789 tabpage_T *ttp; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4790 |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4791 if (prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4792 prevwin = NULL; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4793 FOR_ALL_TABPAGES(ttp) |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4794 if (ttp->tp_prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4795 ttp->tp_prevwin = NULL; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4796 } |
7 | 4797 win_free_lsize(wp); |
4798 | |
4799 for (i = 0; i < wp->w_tagstacklen; ++i) | |
4800 vim_free(wp->w_tagstack[i].tagname); | |
4801 | |
4802 vim_free(wp->w_localdir); | |
1326 | 4803 |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4804 /* Remove the window from the b_wininfo lists, it may happen that the |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4805 * freed memory is re-used for another window. */ |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4806 FOR_ALL_BUFFERS(buf) |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4807 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4808 if (wip->wi_win == wp) |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4809 wip->wi_win = NULL; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4810 |
7 | 4811 #ifdef FEAT_SEARCH_EXTRA |
1326 | 4812 clear_matches(wp); |
4813 #endif | |
4814 | |
7 | 4815 #ifdef FEAT_JUMPLIST |
4816 free_jumplist(wp); | |
4817 #endif | |
4818 | |
643 | 4819 #ifdef FEAT_QUICKFIX |
4820 qf_free_all(wp); | |
4821 #endif | |
4822 | |
7 | 4823 #ifdef FEAT_GUI |
4824 if (gui.in_use) | |
4825 { | |
4826 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]); | |
4827 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]); | |
4828 } | |
4829 #endif /* FEAT_GUI */ | |
4830 | |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4831 #ifdef FEAT_MENU |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4832 remove_winbar(wp); |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4833 #endif |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4834 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
4835 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
4836 vim_free(wp->w_p_cc_cols); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
4837 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
4838 |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4839 if (win_valid_any_tab(wp)) |
1918 | 4840 win_remove(wp, tp); |
5958 | 4841 if (autocmd_busy) |
4842 { | |
4843 wp->w_next = au_pending_free_win; | |
4844 au_pending_free_win = wp; | |
4845 } | |
4846 else | |
4847 vim_free(wp); | |
1114 | 4848 |
1410 | 4849 unblock_autocmds(); |
7 | 4850 } |
4851 | |
4852 /* | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4853 * Return TRUE if "wp" is not in the list of windows: the autocmd window or a |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4854 * popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4855 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4856 int |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4857 win_unlisted(win_T *wp) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4858 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4859 return wp == aucmd_win || bt_popup(wp->w_buffer); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4860 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4861 |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
4862 #if defined(FEAT_TEXT_PROP) || defined(PROTO) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4863 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4864 * Free a popup window. This does not take the window out of the window list |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4865 * and assumes there is only one toplevel frame, no split. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4866 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4867 void |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4868 win_free_popup(win_T *win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4869 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4870 win_close_buffer(win, TRUE, FALSE); |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
4871 # if defined(FEAT_TIMERS) |
16800
12e3a3afdb6a
patch 8.1.1402: "timer" option of popup windows not supported
Bram Moolenaar <Bram@vim.org>
parents:
16796
diff
changeset
|
4872 if (win->w_popup_timer != NULL) |
12e3a3afdb6a
patch 8.1.1402: "timer" option of popup windows not supported
Bram Moolenaar <Bram@vim.org>
parents:
16796
diff
changeset
|
4873 stop_timer(win->w_popup_timer); |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
4874 # endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4875 vim_free(win->w_frame); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4876 win_free(win, NULL); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4877 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
4878 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4879 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
4880 /* |
7 | 4881 * Append window "wp" in the window list after window "after". |
4882 */ | |
1906 | 4883 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4884 win_append(win_T *after, win_T *wp) |
7 | 4885 { |
4886 win_T *before; | |
4887 | |
4888 if (after == NULL) /* after NULL is in front of the first */ | |
4889 before = firstwin; | |
4890 else | |
4891 before = after->w_next; | |
4892 | |
4893 wp->w_next = before; | |
4894 wp->w_prev = after; | |
4895 if (after == NULL) | |
4896 firstwin = wp; | |
4897 else | |
4898 after->w_next = wp; | |
4899 if (before == NULL) | |
4900 lastwin = wp; | |
4901 else | |
4902 before->w_prev = wp; | |
4903 } | |
4904 | |
4905 /* | |
4906 * Remove a window from the window list. | |
4907 */ | |
1906 | 4908 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4909 win_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4910 win_T *wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4911 tabpage_T *tp) /* tab page "win" is in, NULL for current */ |
7 | 4912 { |
4913 if (wp->w_prev != NULL) | |
4914 wp->w_prev->w_next = wp->w_next; | |
671 | 4915 else if (tp == NULL) |
12564
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4916 firstwin = curtab->tp_firstwin = wp->w_next; |
7 | 4917 else |
671 | 4918 tp->tp_firstwin = wp->w_next; |
12564
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4919 |
7 | 4920 if (wp->w_next != NULL) |
4921 wp->w_next->w_prev = wp->w_prev; | |
671 | 4922 else if (tp == NULL) |
12564
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4923 lastwin = curtab->tp_lastwin = wp->w_prev; |
7 | 4924 else |
671 | 4925 tp->tp_lastwin = wp->w_prev; |
7 | 4926 } |
4927 | |
4928 /* | |
4929 * Append frame "frp" in a frame list after frame "after". | |
4930 */ | |
4931 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4932 frame_append(frame_T *after, frame_T *frp) |
7 | 4933 { |
4934 frp->fr_next = after->fr_next; | |
4935 after->fr_next = frp; | |
4936 if (frp->fr_next != NULL) | |
4937 frp->fr_next->fr_prev = frp; | |
4938 frp->fr_prev = after; | |
4939 } | |
4940 | |
4941 /* | |
4942 * Insert frame "frp" in a frame list before frame "before". | |
4943 */ | |
4944 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4945 frame_insert(frame_T *before, frame_T *frp) |
7 | 4946 { |
4947 frp->fr_next = before; | |
4948 frp->fr_prev = before->fr_prev; | |
4949 before->fr_prev = frp; | |
4950 if (frp->fr_prev != NULL) | |
4951 frp->fr_prev->fr_next = frp; | |
4952 else | |
4953 frp->fr_parent->fr_child = frp; | |
4954 } | |
4955 | |
4956 /* | |
4957 * Remove a frame from a frame list. | |
4958 */ | |
4959 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4960 frame_remove(frame_T *frp) |
7 | 4961 { |
4962 if (frp->fr_prev != NULL) | |
4963 frp->fr_prev->fr_next = frp->fr_next; | |
4964 else | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
4965 { |
7 | 4966 frp->fr_parent->fr_child = frp->fr_next; |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
4967 /* special case: topframe->fr_child == frp */ |
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
4968 if (topframe->fr_child == frp) |
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
4969 topframe->fr_child = frp->fr_next; |
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
4970 } |
7 | 4971 if (frp->fr_next != NULL) |
4972 frp->fr_next->fr_prev = frp->fr_prev; | |
4973 } | |
4974 | |
4975 /* | |
4976 * Allocate w_lines[] for window "wp". | |
4977 * Return FAIL for failure, OK for success. | |
4978 */ | |
4979 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4980 win_alloc_lines(win_T *wp) |
7 | 4981 { |
4982 wp->w_lines_valid = 0; | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16690
diff
changeset
|
4983 wp->w_lines = (wline_T *)alloc_clear(Rows * sizeof(wline_T)); |
7 | 4984 if (wp->w_lines == NULL) |
4985 return FAIL; | |
4986 return OK; | |
4987 } | |
4988 | |
4989 /* | |
4990 * free lsize arrays for a window | |
4991 */ | |
4992 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4993 win_free_lsize(win_T *wp) |
7 | 4994 { |
5952 | 4995 /* TODO: why would wp be NULL here? */ |
4996 if (wp != NULL) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
4997 VIM_CLEAR(wp->w_lines); |
7 | 4998 } |
4999 | |
5000 /* | |
5001 * Called from win_new_shellsize() after Rows changed. | |
671 | 5002 * This only does the current tab page, others must be done when made active. |
7 | 5003 */ |
5004 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5005 shell_new_rows(void) |
7 | 5006 { |
667 | 5007 int h = (int)ROWS_AVAIL; |
7 | 5008 |
5009 if (firstwin == NULL) /* not initialized yet */ | |
5010 return; | |
5011 if (h < frame_minheight(topframe, NULL)) | |
5012 h = frame_minheight(topframe, NULL); | |
779 | 5013 |
5014 /* First try setting the heights of windows with 'winfixheight'. If | |
7 | 5015 * that doesn't result in the right height, forget about that option. */ |
5016 frame_new_height(topframe, h, FALSE, TRUE); | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5017 if (!frame_check_height(topframe, h)) |
7 | 5018 frame_new_height(topframe, h, FALSE, FALSE); |
5019 | |
5020 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */ | |
5021 compute_cmdrow(); | |
824 | 5022 curtab->tp_ch_used = p_ch; |
170 | 5023 |
7 | 5024 #if 0 |
5025 /* Disabled: don't want making the screen smaller make a window larger. */ | |
5026 if (p_ea) | |
5027 win_equal(curwin, FALSE, 'v'); | |
5028 #endif | |
5029 } | |
5030 | |
5031 /* | |
5032 * Called from win_new_shellsize() after Columns changed. | |
5033 */ | |
5034 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5035 shell_new_columns(void) |
7 | 5036 { |
5037 if (firstwin == NULL) /* not initialized yet */ | |
5038 return; | |
779 | 5039 |
5040 /* First try setting the widths of windows with 'winfixwidth'. If that | |
5041 * doesn't result in the right width, forget about that option. */ | |
5042 frame_new_width(topframe, (int)Columns, FALSE, TRUE); | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5043 if (!frame_check_width(topframe, Columns)) |
779 | 5044 frame_new_width(topframe, (int)Columns, FALSE, FALSE); |
5045 | |
7 | 5046 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */ |
5047 #if 0 | |
5048 /* Disabled: don't want making the screen smaller make a window larger. */ | |
5049 if (p_ea) | |
5050 win_equal(curwin, FALSE, 'h'); | |
5051 #endif | |
5052 } | |
5053 | |
5054 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
5055 /* | |
5056 * Save the size of all windows in "gap". | |
5057 */ | |
5058 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5059 win_size_save(garray_T *gap) |
7 | 5060 |
5061 { | |
5062 win_T *wp; | |
5063 | |
5064 ga_init2(gap, (int)sizeof(int), 1); | |
5065 if (ga_grow(gap, win_count() * 2) == OK) | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5066 FOR_ALL_WINDOWS(wp) |
7 | 5067 { |
5068 ((int *)gap->ga_data)[gap->ga_len++] = | |
5069 wp->w_width + wp->w_vsep_width; | |
5070 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height; | |
5071 } | |
5072 } | |
5073 | |
5074 /* | |
5075 * Restore window sizes, but only if the number of windows is still the same. | |
5076 * Does not free the growarray. | |
5077 */ | |
5078 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5079 win_size_restore(garray_T *gap) |
7 | 5080 { |
5081 win_T *wp; | |
6058 | 5082 int i, j; |
7 | 5083 |
5084 if (win_count() * 2 == gap->ga_len) | |
5085 { | |
6058 | 5086 /* The order matters, because frames contain other frames, but it's |
5087 * difficult to get right. The easy way out is to do it twice. */ | |
5088 for (j = 0; j < 2; ++j) | |
7 | 5089 { |
6058 | 5090 i = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5091 FOR_ALL_WINDOWS(wp) |
6058 | 5092 { |
5093 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]); | |
5094 win_setheight_win(((int *)gap->ga_data)[i++], wp); | |
5095 } | |
7 | 5096 } |
5097 /* recompute the window positions */ | |
5098 (void)win_comp_pos(); | |
5099 } | |
5100 } | |
5101 #endif /* FEAT_CMDWIN */ | |
5102 | |
5103 /* | |
5104 * Update the position for all windows, using the width and height of the | |
5105 * frames. | |
5106 * Returns the row just after the last window. | |
5107 */ | |
668 | 5108 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5109 win_comp_pos(void) |
7 | 5110 { |
685 | 5111 int row = tabline_height(); |
7 | 5112 int col = 0; |
5113 | |
5114 frame_comp_pos(topframe, &row, &col); | |
5115 return row; | |
5116 } | |
5117 | |
5118 /* | |
5119 * Update the position of the windows in frame "topfrp", using the width and | |
5120 * height of the frames. | |
5121 * "*row" and "*col" are the top-left position of the frame. They are updated | |
5122 * to the bottom-right position plus one. | |
5123 */ | |
5124 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5125 frame_comp_pos(frame_T *topfrp, int *row, int *col) |
7 | 5126 { |
5127 win_T *wp; | |
5128 frame_T *frp; | |
5129 int startcol; | |
5130 int startrow; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5131 int h; |
7 | 5132 |
5133 wp = topfrp->fr_win; | |
5134 if (wp != NULL) | |
5135 { | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
5136 if (wp->w_winrow != *row || wp->w_wincol != *col) |
7 | 5137 { |
5138 /* position changed, redraw */ | |
5139 wp->w_winrow = *row; | |
5140 wp->w_wincol = *col; | |
5141 redraw_win_later(wp, NOT_VALID); | |
5142 wp->w_redr_status = TRUE; | |
5143 } | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5144 /* WinBar will not show if the window height is zero */ |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5145 h = VISIBLE_HEIGHT(wp) + wp->w_status_height; |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5146 *row += h > topfrp->fr_height ? topfrp->fr_height : h; |
7 | 5147 *col += wp->w_width + wp->w_vsep_width; |
5148 } | |
5149 else | |
5150 { | |
5151 startrow = *row; | |
5152 startcol = *col; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5153 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 5154 { |
5155 if (topfrp->fr_layout == FR_ROW) | |
5156 *row = startrow; /* all frames are at the same row */ | |
5157 else | |
5158 *col = startcol; /* all frames are at the same col */ | |
5159 frame_comp_pos(frp, row, col); | |
5160 } | |
5161 } | |
5162 } | |
5163 | |
5164 /* | |
5165 * Set current window height and take care of repositioning other windows to | |
5166 * fit around it. | |
5167 */ | |
5168 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5169 win_setheight(int height) |
7 | 5170 { |
5171 win_setheight_win(height, curwin); | |
5172 } | |
5173 | |
5174 /* | |
5175 * Set the window height of window "win" and take care of repositioning other | |
5176 * windows to fit around it. | |
5177 */ | |
5178 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5179 win_setheight_win(int height, win_T *win) |
7 | 5180 { |
5181 int row; | |
5182 | |
5183 if (win == curwin) | |
5184 { | |
5185 /* Always keep current window at least one line high, even when | |
5186 * 'winminheight' is zero. */ | |
5187 if (height < p_wmh) | |
5188 height = p_wmh; | |
5189 if (height == 0) | |
5190 height = 1; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5191 height += WINBAR_HEIGHT(curwin); |
7 | 5192 } |
5193 | |
5194 frame_setheight(win->w_frame, height + win->w_status_height); | |
5195 | |
5196 /* recompute the window positions */ | |
5197 row = win_comp_pos(); | |
5198 | |
5199 /* | |
5200 * If there is extra space created between the last window and the command | |
5201 * line, clear it. | |
5202 */ | |
5203 if (full_screen && msg_scrolled == 0 && row < cmdline_row) | |
5204 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5205 cmdline_row = row; | |
5206 msg_row = row; | |
5207 msg_col = 0; | |
5208 | |
5209 redraw_all_later(NOT_VALID); | |
5210 } | |
5211 | |
5212 /* | |
5213 * Set the height of a frame to "height" and take care that all frames and | |
5214 * windows inside it are resized. Also resize frames on the left and right if | |
5215 * the are in the same FR_ROW frame. | |
5216 * | |
5217 * Strategy: | |
5218 * If the frame is part of a FR_COL frame, try fitting the frame in that | |
5219 * frame. If that doesn't work (the FR_COL frame is too small), recursively | |
5220 * go to containing frames to resize them and make room. | |
5221 * If the frame is part of a FR_ROW frame, all frames must be resized as well. | |
5222 * Check for the minimal height of the FR_ROW frame. | |
5223 * At the top level we can also use change the command line height. | |
5224 */ | |
5225 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5226 frame_setheight(frame_T *curfrp, int height) |
7 | 5227 { |
5228 int room; /* total number of lines available */ | |
5229 int take; /* number of lines taken from other windows */ | |
5230 int room_cmdline; /* lines available from cmdline */ | |
5231 int run; | |
5232 frame_T *frp; | |
5233 int h; | |
5234 int room_reserved; | |
5235 | |
5236 /* If the height already is the desired value, nothing to do. */ | |
5237 if (curfrp->fr_height == height) | |
5238 return; | |
5239 | |
5240 if (curfrp->fr_parent == NULL) | |
5241 { | |
5242 /* topframe: can only change the command line */ | |
667 | 5243 if (height > ROWS_AVAIL) |
5244 height = ROWS_AVAIL; | |
7 | 5245 if (height > 0) |
5246 frame_new_height(curfrp, height, FALSE, FALSE); | |
5247 } | |
5248 else if (curfrp->fr_parent->fr_layout == FR_ROW) | |
5249 { | |
5250 /* Row of frames: Also need to resize frames left and right of this | |
5251 * one. First check for the minimal height of these. */ | |
5252 h = frame_minheight(curfrp->fr_parent, NULL); | |
5253 if (height < h) | |
5254 height = h; | |
5255 frame_setheight(curfrp->fr_parent, height); | |
5256 } | |
5257 else | |
5258 { | |
5259 /* | |
5260 * Column of frames: try to change only frames in this column. | |
5261 */ | |
5262 /* | |
5263 * Do this twice: | |
5264 * 1: compute room available, if it's not enough try resizing the | |
5265 * containing frame. | |
5266 * 2: compute the room available and adjust the height to it. | |
5267 * Try not to reduce the height of a window with 'winfixheight' set. | |
5268 */ | |
5269 for (run = 1; run <= 2; ++run) | |
5270 { | |
5271 room = 0; | |
5272 room_reserved = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5273 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5274 { |
5275 if (frp != curfrp | |
5276 && frp->fr_win != NULL | |
5277 && frp->fr_win->w_p_wfh) | |
5278 room_reserved += frp->fr_height; | |
5279 room += frp->fr_height; | |
5280 if (frp != curfrp) | |
5281 room -= frame_minheight(frp, NULL); | |
5282 } | |
5283 if (curfrp->fr_width != Columns) | |
5284 room_cmdline = 0; | |
5285 else | |
5286 { | |
5287 room_cmdline = Rows - p_ch - (lastwin->w_winrow | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5288 + VISIBLE_HEIGHT(lastwin) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5289 + lastwin->w_status_height); |
7 | 5290 if (room_cmdline < 0) |
5291 room_cmdline = 0; | |
5292 } | |
5293 | |
5294 if (height <= room + room_cmdline) | |
5295 break; | |
5296 if (run == 2 || curfrp->fr_width == Columns) | |
5297 { | |
5298 if (height > room + room_cmdline) | |
5299 height = room + room_cmdline; | |
5300 break; | |
5301 } | |
5302 frame_setheight(curfrp->fr_parent, height | |
5303 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1); | |
5304 } | |
5305 | |
5306 /* | |
5307 * Compute the number of lines we will take from others frames (can be | |
5308 * negative!). | |
5309 */ | |
5310 take = height - curfrp->fr_height; | |
5311 | |
5312 /* If there is not enough room, also reduce the height of a window | |
5313 * with 'winfixheight' set. */ | |
5314 if (height > room + room_cmdline - room_reserved) | |
5315 room_reserved = room + room_cmdline - height; | |
5316 /* If there is only a 'winfixheight' window and making the | |
5317 * window smaller, need to make the other window taller. */ | |
5318 if (take < 0 && room - curfrp->fr_height < room_reserved) | |
5319 room_reserved = 0; | |
5320 | |
5321 if (take > 0 && room_cmdline > 0) | |
5322 { | |
5323 /* use lines from cmdline first */ | |
5324 if (take < room_cmdline) | |
5325 room_cmdline = take; | |
5326 take -= room_cmdline; | |
5327 topframe->fr_height += room_cmdline; | |
5328 } | |
5329 | |
5330 /* | |
5331 * set the current frame to the new height | |
5332 */ | |
5333 frame_new_height(curfrp, height, FALSE, FALSE); | |
5334 | |
5335 /* | |
5336 * First take lines from the frames after the current frame. If | |
5337 * that is not enough, takes lines from frames above the current | |
5338 * frame. | |
5339 */ | |
5340 for (run = 0; run < 2; ++run) | |
5341 { | |
5342 if (run == 0) | |
5343 frp = curfrp->fr_next; /* 1st run: start with next window */ | |
5344 else | |
5345 frp = curfrp->fr_prev; /* 2nd run: start with prev window */ | |
5346 while (frp != NULL && take != 0) | |
5347 { | |
5348 h = frame_minheight(frp, NULL); | |
5349 if (room_reserved > 0 | |
5350 && frp->fr_win != NULL | |
5351 && frp->fr_win->w_p_wfh) | |
5352 { | |
5353 if (room_reserved >= frp->fr_height) | |
5354 room_reserved -= frp->fr_height; | |
5355 else | |
5356 { | |
5357 if (frp->fr_height - room_reserved > take) | |
5358 room_reserved = frp->fr_height - take; | |
5359 take -= frp->fr_height - room_reserved; | |
5360 frame_new_height(frp, room_reserved, FALSE, FALSE); | |
5361 room_reserved = 0; | |
5362 } | |
5363 } | |
5364 else | |
5365 { | |
5366 if (frp->fr_height - take < h) | |
5367 { | |
5368 take -= frp->fr_height - h; | |
5369 frame_new_height(frp, h, FALSE, FALSE); | |
5370 } | |
5371 else | |
5372 { | |
5373 frame_new_height(frp, frp->fr_height - take, | |
5374 FALSE, FALSE); | |
5375 take = 0; | |
5376 } | |
5377 } | |
5378 if (run == 0) | |
5379 frp = frp->fr_next; | |
5380 else | |
5381 frp = frp->fr_prev; | |
5382 } | |
5383 } | |
5384 } | |
5385 } | |
5386 | |
5387 /* | |
5388 * Set current window width and take care of repositioning other windows to | |
5389 * fit around it. | |
5390 */ | |
5391 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5392 win_setwidth(int width) |
7 | 5393 { |
5394 win_setwidth_win(width, curwin); | |
5395 } | |
5396 | |
5397 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5398 win_setwidth_win(int width, win_T *wp) |
7 | 5399 { |
5400 /* Always keep current window at least one column wide, even when | |
5401 * 'winminwidth' is zero. */ | |
5402 if (wp == curwin) | |
5403 { | |
5404 if (width < p_wmw) | |
5405 width = p_wmw; | |
5406 if (width == 0) | |
5407 width = 1; | |
5408 } | |
5409 | |
5410 frame_setwidth(wp->w_frame, width + wp->w_vsep_width); | |
5411 | |
5412 /* recompute the window positions */ | |
5413 (void)win_comp_pos(); | |
5414 | |
5415 redraw_all_later(NOT_VALID); | |
5416 } | |
5417 | |
5418 /* | |
5419 * Set the width of a frame to "width" and take care that all frames and | |
5420 * windows inside it are resized. Also resize frames above and below if the | |
5421 * are in the same FR_ROW frame. | |
5422 * | |
5423 * Strategy is similar to frame_setheight(). | |
5424 */ | |
5425 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5426 frame_setwidth(frame_T *curfrp, int width) |
7 | 5427 { |
5428 int room; /* total number of lines available */ | |
5429 int take; /* number of lines taken from other windows */ | |
5430 int run; | |
5431 frame_T *frp; | |
5432 int w; | |
779 | 5433 int room_reserved; |
7 | 5434 |
5435 /* If the width already is the desired value, nothing to do. */ | |
5436 if (curfrp->fr_width == width) | |
5437 return; | |
5438 | |
5439 if (curfrp->fr_parent == NULL) | |
5440 /* topframe: can't change width */ | |
5441 return; | |
5442 | |
5443 if (curfrp->fr_parent->fr_layout == FR_COL) | |
5444 { | |
5445 /* Column of frames: Also need to resize frames above and below of | |
5446 * this one. First check for the minimal width of these. */ | |
5447 w = frame_minwidth(curfrp->fr_parent, NULL); | |
5448 if (width < w) | |
5449 width = w; | |
5450 frame_setwidth(curfrp->fr_parent, width); | |
5451 } | |
5452 else | |
5453 { | |
5454 /* | |
5455 * Row of frames: try to change only frames in this row. | |
5456 * | |
5457 * Do this twice: | |
5458 * 1: compute room available, if it's not enough try resizing the | |
5459 * containing frame. | |
5460 * 2: compute the room available and adjust the width to it. | |
5461 */ | |
5462 for (run = 1; run <= 2; ++run) | |
5463 { | |
5464 room = 0; | |
779 | 5465 room_reserved = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5466 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5467 { |
779 | 5468 if (frp != curfrp |
5469 && frp->fr_win != NULL | |
5470 && frp->fr_win->w_p_wfw) | |
5471 room_reserved += frp->fr_width; | |
7 | 5472 room += frp->fr_width; |
5473 if (frp != curfrp) | |
5474 room -= frame_minwidth(frp, NULL); | |
5475 } | |
5476 | |
5477 if (width <= room) | |
5478 break; | |
667 | 5479 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL) |
7 | 5480 { |
5481 if (width > room) | |
5482 width = room; | |
5483 break; | |
5484 } | |
5485 frame_setwidth(curfrp->fr_parent, width | |
5486 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1); | |
5487 } | |
5488 | |
5489 /* | |
5490 * Compute the number of lines we will take from others frames (can be | |
5491 * negative!). | |
5492 */ | |
5493 take = width - curfrp->fr_width; | |
5494 | |
779 | 5495 /* If there is not enough room, also reduce the width of a window |
5496 * with 'winfixwidth' set. */ | |
5497 if (width > room - room_reserved) | |
5498 room_reserved = room - width; | |
5499 /* If there is only a 'winfixwidth' window and making the | |
5500 * window smaller, need to make the other window narrower. */ | |
5501 if (take < 0 && room - curfrp->fr_width < room_reserved) | |
5502 room_reserved = 0; | |
5503 | |
7 | 5504 /* |
5505 * set the current frame to the new width | |
5506 */ | |
779 | 5507 frame_new_width(curfrp, width, FALSE, FALSE); |
7 | 5508 |
5509 /* | |
5510 * First take lines from the frames right of the current frame. If | |
5511 * that is not enough, takes lines from frames left of the current | |
5512 * frame. | |
5513 */ | |
5514 for (run = 0; run < 2; ++run) | |
5515 { | |
5516 if (run == 0) | |
5517 frp = curfrp->fr_next; /* 1st run: start with next window */ | |
5518 else | |
5519 frp = curfrp->fr_prev; /* 2nd run: start with prev window */ | |
5520 while (frp != NULL && take != 0) | |
5521 { | |
5522 w = frame_minwidth(frp, NULL); | |
779 | 5523 if (room_reserved > 0 |
5524 && frp->fr_win != NULL | |
5525 && frp->fr_win->w_p_wfw) | |
7 | 5526 { |
779 | 5527 if (room_reserved >= frp->fr_width) |
5528 room_reserved -= frp->fr_width; | |
5529 else | |
5530 { | |
5531 if (frp->fr_width - room_reserved > take) | |
5532 room_reserved = frp->fr_width - take; | |
5533 take -= frp->fr_width - room_reserved; | |
5534 frame_new_width(frp, room_reserved, FALSE, FALSE); | |
5535 room_reserved = 0; | |
5536 } | |
7 | 5537 } |
5538 else | |
5539 { | |
779 | 5540 if (frp->fr_width - take < w) |
5541 { | |
5542 take -= frp->fr_width - w; | |
5543 frame_new_width(frp, w, FALSE, FALSE); | |
5544 } | |
5545 else | |
5546 { | |
5547 frame_new_width(frp, frp->fr_width - take, | |
5548 FALSE, FALSE); | |
5549 take = 0; | |
5550 } | |
7 | 5551 } |
5552 if (run == 0) | |
5553 frp = frp->fr_next; | |
5554 else | |
5555 frp = frp->fr_prev; | |
5556 } | |
5557 } | |
5558 } | |
5559 } | |
5560 | |
5561 /* | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5562 * Check 'winminheight' for a valid value and reduce it if needed. |
7 | 5563 */ |
5564 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5565 win_setminheight(void) |
7 | 5566 { |
5567 int room; | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5568 int needed; |
7 | 5569 int first = TRUE; |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5570 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5571 // loop until there is a 'winminheight' that is possible |
7 | 5572 while (p_wmh > 0) |
5573 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5574 room = Rows - p_ch; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5575 needed = frame_minheight(topframe, NULL); |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5576 if (room >= needed) |
7 | 5577 break; |
5578 --p_wmh; | |
5579 if (first) | |
5580 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5581 emsg(_(e_noroom)); |
7 | 5582 first = FALSE; |
5583 } | |
5584 } | |
5585 } | |
5586 | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5587 /* |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5588 * Check 'winminwidth' for a valid value and reduce it if needed. |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5589 */ |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5590 void |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5591 win_setminwidth(void) |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5592 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5593 int room; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5594 int needed; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5595 int first = TRUE; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5596 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5597 // loop until there is a 'winminheight' that is possible |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5598 while (p_wmw > 0) |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5599 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5600 room = Columns; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5601 needed = frame_minwidth(topframe, NULL); |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5602 if (room >= needed) |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5603 break; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5604 --p_wmw; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5605 if (first) |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5606 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5607 emsg(_(e_noroom)); |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5608 first = FALSE; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5609 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5610 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5611 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5612 |
7229
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5613 #if defined(FEAT_MOUSE) || defined(PROTO) |
7 | 5614 |
5615 /* | |
5616 * Status line of dragwin is dragged "offset" lines down (negative is up). | |
5617 */ | |
5618 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5619 win_drag_status_line(win_T *dragwin, int offset) |
7 | 5620 { |
5621 frame_T *curfr; | |
5622 frame_T *fr; | |
5623 int room; | |
5624 int row; | |
5625 int up; /* if TRUE, drag status line up, otherwise down */ | |
5626 int n; | |
5627 | |
5628 fr = dragwin->w_frame; | |
5629 curfr = fr; | |
5630 if (fr != topframe) /* more than one window */ | |
5631 { | |
5632 fr = fr->fr_parent; | |
5633 /* When the parent frame is not a column of frames, its parent should | |
5634 * be. */ | |
5635 if (fr->fr_layout != FR_COL) | |
5636 { | |
5637 curfr = fr; | |
5638 if (fr != topframe) /* only a row of windows, may drag statusline */ | |
5639 fr = fr->fr_parent; | |
5640 } | |
5641 } | |
5642 | |
5643 /* If this is the last frame in a column, may want to resize the parent | |
5644 * frame instead (go two up to skip a row of frames). */ | |
5645 while (curfr != topframe && curfr->fr_next == NULL) | |
5646 { | |
5647 if (fr != topframe) | |
5648 fr = fr->fr_parent; | |
5649 curfr = fr; | |
5650 if (fr != topframe) | |
5651 fr = fr->fr_parent; | |
5652 } | |
5653 | |
5654 if (offset < 0) /* drag up */ | |
5655 { | |
5656 up = TRUE; | |
5657 offset = -offset; | |
5658 /* sum up the room of the current frame and above it */ | |
5659 if (fr == curfr) | |
5660 { | |
5661 /* only one window */ | |
5662 room = fr->fr_height - frame_minheight(fr, NULL); | |
5663 } | |
5664 else | |
5665 { | |
5666 room = 0; | |
5667 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5668 { | |
5669 room += fr->fr_height - frame_minheight(fr, NULL); | |
5670 if (fr == curfr) | |
5671 break; | |
5672 } | |
5673 } | |
5674 fr = curfr->fr_next; /* put fr at frame that grows */ | |
5675 } | |
5676 else /* drag down */ | |
5677 { | |
5678 up = FALSE; | |
5679 /* | |
5680 * Only dragging the last status line can reduce p_ch. | |
5681 */ | |
5682 room = Rows - cmdline_row; | |
5683 if (curfr->fr_next == NULL) | |
5684 room -= 1; | |
5685 else | |
5686 room -= p_ch; | |
5687 if (room < 0) | |
5688 room = 0; | |
5689 /* sum up the room of frames below of the current one */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5690 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 5691 room += fr->fr_height - frame_minheight(fr, NULL); |
5692 fr = curfr; /* put fr at window that grows */ | |
5693 } | |
5694 | |
5695 if (room < offset) /* Not enough room */ | |
5696 offset = room; /* Move as far as we can */ | |
5697 if (offset <= 0) | |
5698 return; | |
5699 | |
5700 /* | |
5701 * Grow frame fr by "offset" lines. | |
5702 * Doesn't happen when dragging the last status line up. | |
5703 */ | |
5704 if (fr != NULL) | |
5705 frame_new_height(fr, fr->fr_height + offset, up, FALSE); | |
5706 | |
5707 if (up) | |
5708 fr = curfr; /* current frame gets smaller */ | |
5709 else | |
5710 fr = curfr->fr_next; /* next frame gets smaller */ | |
5711 | |
5712 /* | |
5713 * Now make the other frames smaller. | |
5714 */ | |
5715 while (fr != NULL && offset > 0) | |
5716 { | |
5717 n = frame_minheight(fr, NULL); | |
5718 if (fr->fr_height - offset <= n) | |
5719 { | |
5720 offset -= fr->fr_height - n; | |
5721 frame_new_height(fr, n, !up, FALSE); | |
5722 } | |
5723 else | |
5724 { | |
5725 frame_new_height(fr, fr->fr_height - offset, !up, FALSE); | |
5726 break; | |
5727 } | |
5728 if (up) | |
5729 fr = fr->fr_prev; | |
5730 else | |
5731 fr = fr->fr_next; | |
5732 } | |
5733 row = win_comp_pos(); | |
5734 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5735 cmdline_row = row; | |
5736 p_ch = Rows - cmdline_row; | |
5737 if (p_ch < 1) | |
5738 p_ch = 1; | |
824 | 5739 curtab->tp_ch_used = p_ch; |
737 | 5740 redraw_all_later(SOME_VALID); |
7 | 5741 showmode(); |
5742 } | |
5743 | |
5744 /* | |
5745 * Separator line of dragwin is dragged "offset" lines right (negative is left). | |
5746 */ | |
5747 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5748 win_drag_vsep_line(win_T *dragwin, int offset) |
7 | 5749 { |
5750 frame_T *curfr; | |
5751 frame_T *fr; | |
5752 int room; | |
5753 int left; /* if TRUE, drag separator line left, otherwise right */ | |
5754 int n; | |
5755 | |
5756 fr = dragwin->w_frame; | |
840 | 5757 if (fr == topframe) /* only one window (cannot happen?) */ |
7 | 5758 return; |
5759 curfr = fr; | |
5760 fr = fr->fr_parent; | |
5761 /* When the parent frame is not a row of frames, its parent should be. */ | |
5762 if (fr->fr_layout != FR_ROW) | |
5763 { | |
5764 if (fr == topframe) /* only a column of windows (cannot happen?) */ | |
5765 return; | |
5766 curfr = fr; | |
5767 fr = fr->fr_parent; | |
5768 } | |
5769 | |
5770 /* If this is the last frame in a row, may want to resize a parent | |
5771 * frame instead. */ | |
5772 while (curfr->fr_next == NULL) | |
5773 { | |
5774 if (fr == topframe) | |
5775 break; | |
5776 curfr = fr; | |
5777 fr = fr->fr_parent; | |
5778 if (fr != topframe) | |
5779 { | |
5780 curfr = fr; | |
5781 fr = fr->fr_parent; | |
5782 } | |
5783 } | |
5784 | |
5785 if (offset < 0) /* drag left */ | |
5786 { | |
5787 left = TRUE; | |
5788 offset = -offset; | |
5789 /* sum up the room of the current frame and left of it */ | |
5790 room = 0; | |
5791 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5792 { | |
5793 room += fr->fr_width - frame_minwidth(fr, NULL); | |
5794 if (fr == curfr) | |
5795 break; | |
5796 } | |
5797 fr = curfr->fr_next; /* put fr at frame that grows */ | |
5798 } | |
5799 else /* drag right */ | |
5800 { | |
5801 left = FALSE; | |
5802 /* sum up the room of frames right of the current one */ | |
5803 room = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5804 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 5805 room += fr->fr_width - frame_minwidth(fr, NULL); |
5806 fr = curfr; /* put fr at window that grows */ | |
5807 } | |
5808 | |
5809 if (room < offset) /* Not enough room */ | |
5810 offset = room; /* Move as far as we can */ | |
5811 if (offset <= 0) /* No room at all, quit. */ | |
5812 return; | |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
5813 if (fr == NULL) |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
5814 return; /* Safety check, should not happen. */ |
7 | 5815 |
5816 /* grow frame fr by offset lines */ | |
779 | 5817 frame_new_width(fr, fr->fr_width + offset, left, FALSE); |
7 | 5818 |
5819 /* shrink other frames: current and at the left or at the right */ | |
5820 if (left) | |
5821 fr = curfr; /* current frame gets smaller */ | |
5822 else | |
5823 fr = curfr->fr_next; /* next frame gets smaller */ | |
5824 | |
5825 while (fr != NULL && offset > 0) | |
5826 { | |
5827 n = frame_minwidth(fr, NULL); | |
5828 if (fr->fr_width - offset <= n) | |
5829 { | |
5830 offset -= fr->fr_width - n; | |
779 | 5831 frame_new_width(fr, n, !left, FALSE); |
7 | 5832 } |
5833 else | |
5834 { | |
779 | 5835 frame_new_width(fr, fr->fr_width - offset, !left, FALSE); |
7 | 5836 break; |
5837 } | |
5838 if (left) | |
5839 fr = fr->fr_prev; | |
5840 else | |
5841 fr = fr->fr_next; | |
5842 } | |
5843 (void)win_comp_pos(); | |
5844 redraw_all_later(NOT_VALID); | |
5845 } | |
5846 #endif /* FEAT_MOUSE */ | |
5847 | |
2665 | 5848 #define FRACTION_MULT 16384L |
5849 | |
5850 /* | |
5851 * Set wp->w_fraction for the current w_wrow and w_height. | |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
5852 * Has no effect when the window is less than two lines. |
2665 | 5853 */ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
5854 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5855 set_fraction(win_T *wp) |
2665 | 5856 { |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
5857 if (wp->w_height > 1) |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
5858 // When cursor is in the first line the percentage is computed as if |
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
5859 // it's halfway that line. Thus with two lines it is 25%, with three |
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
5860 // lines 17%, etc. Similarly for the last line: 75%, 83%, etc. |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
5861 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
5862 + FRACTION_MULT / 2) / (long)wp->w_height; |
2665 | 5863 } |
5864 | |
7 | 5865 /* |
5866 * Set the height of a window. | |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5867 * "height" excludes any window toolbar. |
7 | 5868 * This takes care of the things inside the window, not what happens to the |
5869 * window position, the frame or to other windows. | |
5870 */ | |
3697 | 5871 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5872 win_new_height(win_T *wp, int height) |
7 | 5873 { |
5875 | 5874 int prev_height = wp->w_height; |
7 | 5875 |
5876 /* Don't want a negative height. Happens when splitting a tiny window. | |
5877 * Will equalize heights soon to fix it. */ | |
5878 if (height < 0) | |
5879 height = 0; | |
826 | 5880 if (wp->w_height == height) |
5881 return; /* nothing to do */ | |
7 | 5882 |
5875 | 5883 if (wp->w_height > 0) |
5884 { | |
5885 if (wp == curwin) | |
5969 | 5886 /* w_wrow needs to be valid. When setting 'laststatus' this may |
5887 * call win_new_height() recursively. */ | |
5888 validate_cursor(); | |
5889 if (wp->w_height != prev_height) | |
5890 return; /* Recursive call already changed the size, bail out here | |
5891 to avoid the following to mess things up. */ | |
5875 | 5892 if (wp->w_wrow != wp->w_prev_fraction_row) |
5893 set_fraction(wp); | |
5894 } | |
7 | 5895 |
5896 wp->w_height = height; | |
5897 wp->w_skipcol = 0; | |
5898 | |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
5899 /* There is no point in adjusting the scroll position when exiting. Some |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
5900 * values might be invalid. */ |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
5901 if (!exiting) |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
5902 scroll_to_fraction(wp, prev_height); |
10013
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5903 } |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5904 |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5905 void |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5906 scroll_to_fraction(win_T *wp, int prev_height) |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5907 { |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5908 linenr_T lnum; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5909 int sline, line_size; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5910 int height = wp->w_height; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
5911 |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
5912 // Don't change w_topline in any of these cases: |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
5913 // - window height is 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
5914 // - 'scrollbind' is set and this isn't the current window |
16690
4e3c4e8e465c
patch 8.1.1347: fractional scroll position not restored after closing window
Bram Moolenaar <Bram@vim.org>
parents:
16650
diff
changeset
|
5915 // - window height is sufficient to display the whole buffer and first line |
4e3c4e8e465c
patch 8.1.1347: fractional scroll position not restored after closing window
Bram Moolenaar <Bram@vim.org>
parents:
16650
diff
changeset
|
5916 // is visible. |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
5917 if (height > 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
5918 && (!wp->w_p_scb || wp == curwin) |
16690
4e3c4e8e465c
patch 8.1.1347: fractional scroll position not restored after closing window
Bram Moolenaar <Bram@vim.org>
parents:
16650
diff
changeset
|
5919 && (height < wp->w_buffer->b_ml.ml_line_count || wp->w_topline > 1)) |
7 | 5920 { |
47 | 5921 /* |
5922 * Find a value for w_topline that shows the cursor at the same | |
5923 * relative position in the window as before (more or less). | |
5924 */ | |
7 | 5925 lnum = wp->w_cursor.lnum; |
5926 if (lnum < 1) /* can happen when starting up */ | |
5927 lnum = 1; | |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
5928 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L) |
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
5929 / FRACTION_MULT; |
7 | 5930 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1; |
5931 sline = wp->w_wrow - line_size; | |
1023 | 5932 |
5933 if (sline >= 0) | |
5934 { | |
5935 /* Make sure the whole cursor line is visible, if possible. */ | |
5936 int rows = plines_win(wp, lnum, FALSE); | |
5937 | |
5938 if (sline > wp->w_height - rows) | |
5939 { | |
5940 sline = wp->w_height - rows; | |
5941 wp->w_wrow -= rows - line_size; | |
5942 } | |
5943 } | |
5944 | |
7 | 5945 if (sline < 0) |
5946 { | |
5947 /* | |
5948 * Cursor line would go off top of screen if w_wrow was this high. | |
1023 | 5949 * Make cursor line the first line in the window. If not enough |
5950 * room use w_skipcol; | |
7 | 5951 */ |
5952 wp->w_wrow = line_size; | |
1023 | 5953 if (wp->w_wrow >= wp->w_height |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
5954 && (wp->w_width - win_col_off(wp)) > 0) |
1023 | 5955 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
5956 wp->w_skipcol += wp->w_width - win_col_off(wp); |
1023 | 5957 --wp->w_wrow; |
5958 while (wp->w_wrow >= wp->w_height) | |
5959 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
5960 wp->w_skipcol += wp->w_width - win_col_off(wp) |
1023 | 5961 + win_col_off2(wp); |
5962 --wp->w_wrow; | |
5963 } | |
5964 } | |
7 | 5965 } |
5936 | 5966 else if (sline > 0) |
7 | 5967 { |
1023 | 5968 while (sline > 0 && lnum > 1) |
7 | 5969 { |
5970 #ifdef FEAT_FOLDING | |
5971 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); | |
5972 if (lnum == 1) | |
5973 { | |
5974 /* first line in buffer is folded */ | |
5975 line_size = 1; | |
5976 --sline; | |
5977 break; | |
5978 } | |
5979 #endif | |
5980 --lnum; | |
5981 #ifdef FEAT_DIFF | |
5982 if (lnum == wp->w_topline) | |
5983 line_size = plines_win_nofill(wp, lnum, TRUE) | |
5984 + wp->w_topfill; | |
5985 else | |
5986 #endif | |
5987 line_size = plines_win(wp, lnum, TRUE); | |
5988 sline -= line_size; | |
5989 } | |
47 | 5990 |
7 | 5991 if (sline < 0) |
5992 { | |
5993 /* | |
5994 * Line we want at top would go off top of screen. Use next | |
5995 * line instead. | |
5996 */ | |
5997 #ifdef FEAT_FOLDING | |
5998 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); | |
5999 #endif | |
6000 lnum++; | |
6001 wp->w_wrow -= line_size + sline; | |
6002 } | |
5936 | 6003 else if (sline > 0) |
7 | 6004 { |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6005 // First line of file reached, use that as topline. |
7 | 6006 lnum = 1; |
6007 wp->w_wrow -= sline; | |
6008 } | |
6009 } | |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6010 set_topline(wp, lnum); |
7 | 6011 } |
6012 | |
6013 if (wp == curwin) | |
6014 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
6015 if (get_scrolloff_value()) |
7 | 6016 update_topline(); |
6017 curs_columns(FALSE); /* validate w_wrow */ | |
6018 } | |
5875 | 6019 if (prev_height > 0) |
6020 wp->w_prev_fraction_row = wp->w_wrow; | |
7 | 6021 |
6022 win_comp_scroll(wp); | |
737 | 6023 redraw_win_later(wp, SOME_VALID); |
7 | 6024 wp->w_redr_status = TRUE; |
6025 invalidate_botline_win(wp); | |
6026 } | |
6027 | |
6028 /* | |
6029 * Set the width of a window. | |
6030 */ | |
3697 | 6031 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6032 win_new_width(win_T *wp, int width) |
7 | 6033 { |
6034 wp->w_width = width; | |
6035 wp->w_lines_valid = 0; | |
6036 changed_line_abv_curs_win(wp); | |
6037 invalidate_botline_win(wp); | |
6038 if (wp == curwin) | |
6039 { | |
6040 update_topline(); | |
6041 curs_columns(TRUE); /* validate w_wrow */ | |
6042 } | |
6043 redraw_win_later(wp, NOT_VALID); | |
6044 wp->w_redr_status = TRUE; | |
6045 } | |
6046 | |
6047 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6048 win_comp_scroll(win_T *wp) |
7 | 6049 { |
6050 wp->w_p_scr = ((unsigned)wp->w_height >> 1); | |
6051 if (wp->w_p_scr == 0) | |
6052 wp->w_p_scr = 1; | |
6053 } | |
6054 | |
6055 /* | |
6056 * command_height: called whenever p_ch has been changed | |
6057 */ | |
6058 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6059 command_height(void) |
7 | 6060 { |
6061 int h; | |
6062 frame_T *frp; | |
824 | 6063 int old_p_ch = curtab->tp_ch_used; |
6064 | |
6065 /* Use the value of p_ch that we remembered. This is needed for when the | |
6066 * GUI starts up, we can't be sure in what order things happen. And when | |
6067 * p_ch was changed in another tab page. */ | |
6068 curtab->tp_ch_used = p_ch; | |
170 | 6069 |
7 | 6070 /* Find bottom frame with width of screen. */ |
6071 frp = lastwin->w_frame; | |
6072 while (frp->fr_width != Columns && frp->fr_parent != NULL) | |
6073 frp = frp->fr_parent; | |
6074 | |
6075 /* Avoid changing the height of a window with 'winfixheight' set. */ | |
6076 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF | |
6077 && frp->fr_win->w_p_wfh) | |
6078 frp = frp->fr_prev; | |
6079 | |
6080 if (starting != NO_SCREEN) | |
6081 { | |
6082 cmdline_row = Rows - p_ch; | |
6083 | |
6084 if (p_ch > old_p_ch) /* p_ch got bigger */ | |
6085 { | |
6086 while (p_ch > old_p_ch) | |
6087 { | |
6088 if (frp == NULL) | |
6089 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6090 emsg(_(e_noroom)); |
7 | 6091 p_ch = old_p_ch; |
1404 | 6092 curtab->tp_ch_used = p_ch; |
7 | 6093 cmdline_row = Rows - p_ch; |
6094 break; | |
6095 } | |
6096 h = frp->fr_height - frame_minheight(frp, NULL); | |
6097 if (h > p_ch - old_p_ch) | |
6098 h = p_ch - old_p_ch; | |
6099 old_p_ch += h; | |
6100 frame_add_height(frp, -h); | |
6101 frp = frp->fr_prev; | |
6102 } | |
6103 | |
6104 /* Recompute window positions. */ | |
6105 (void)win_comp_pos(); | |
6106 | |
6107 /* clear the lines added to cmdline */ | |
6108 if (full_screen) | |
6109 screen_fill((int)(cmdline_row), (int)Rows, 0, | |
6110 (int)Columns, ' ', ' ', 0); | |
6111 msg_row = cmdline_row; | |
6112 redraw_cmdline = TRUE; | |
6113 return; | |
6114 } | |
6115 | |
6116 if (msg_row < cmdline_row) | |
6117 msg_row = cmdline_row; | |
6118 redraw_cmdline = TRUE; | |
6119 } | |
6120 frame_add_height(frp, (int)(old_p_ch - p_ch)); | |
6121 | |
6122 /* Recompute window positions. */ | |
6123 if (frp != lastwin->w_frame) | |
6124 (void)win_comp_pos(); | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6125 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6126 |
7 | 6127 /* |
6128 * Resize frame "frp" to be "n" lines higher (negative for less high). | |
6129 * Also resize the frames it is contained in. | |
6130 */ | |
6131 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6132 frame_add_height(frame_T *frp, int n) |
7 | 6133 { |
6134 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE); | |
6135 for (;;) | |
6136 { | |
6137 frp = frp->fr_parent; | |
6138 if (frp == NULL) | |
6139 break; | |
6140 frp->fr_height += n; | |
6141 } | |
6142 } | |
6143 | |
6144 /* | |
6145 * Add or remove a status line for the bottom window(s), according to the | |
6146 * value of 'laststatus'. | |
6147 */ | |
6148 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6149 last_status( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6150 int morewin) /* pretend there are two or more windows */ |
7 | 6151 { |
6152 /* Don't make a difference between horizontal or vertical split. */ | |
6153 last_status_rec(topframe, (p_ls == 2 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
6154 || (p_ls == 1 && (morewin || !ONE_WINDOW)))); |
7 | 6155 } |
6156 | |
6157 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6158 last_status_rec(frame_T *fr, int statusline) |
7 | 6159 { |
6160 frame_T *fp; | |
6161 win_T *wp; | |
6162 | |
6163 if (fr->fr_layout == FR_LEAF) | |
6164 { | |
6165 wp = fr->fr_win; | |
6166 if (wp->w_status_height != 0 && !statusline) | |
6167 { | |
6168 /* remove status line */ | |
6169 win_new_height(wp, wp->w_height + 1); | |
6170 wp->w_status_height = 0; | |
6171 comp_col(); | |
6172 } | |
6173 else if (wp->w_status_height == 0 && statusline) | |
6174 { | |
6175 /* Find a frame to take a line from. */ | |
6176 fp = fr; | |
6177 while (fp->fr_height <= frame_minheight(fp, NULL)) | |
6178 { | |
6179 if (fp == topframe) | |
6180 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6181 emsg(_(e_noroom)); |
7 | 6182 return; |
6183 } | |
6184 /* In a column of frames: go to frame above. If already at | |
6185 * the top or in a row of frames: go to parent. */ | |
6186 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL) | |
6187 fp = fp->fr_prev; | |
6188 else | |
6189 fp = fp->fr_parent; | |
6190 } | |
6191 wp->w_status_height = 1; | |
6192 if (fp != fr) | |
6193 { | |
6194 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE); | |
6195 frame_fix_height(wp); | |
6196 (void)win_comp_pos(); | |
6197 } | |
6198 else | |
6199 win_new_height(wp, wp->w_height - 1); | |
6200 comp_col(); | |
737 | 6201 redraw_all_later(SOME_VALID); |
7 | 6202 } |
6203 } | |
6204 else if (fr->fr_layout == FR_ROW) | |
6205 { | |
6206 /* vertically split windows, set status line for each one */ | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6207 FOR_ALL_FRAMES(fp, fr->fr_child) |
7 | 6208 last_status_rec(fp, statusline); |
6209 } | |
6210 else | |
6211 { | |
6212 /* horizontally split window, set status line for last one */ | |
6213 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next) | |
6214 ; | |
6215 last_status_rec(fp, statusline); | |
6216 } | |
6217 } | |
6218 | |
667 | 6219 /* |
668 | 6220 * Return the number of lines used by the tab page line. |
667 | 6221 */ |
6222 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6223 tabline_height(void) |
667 | 6224 { |
685 | 6225 #ifdef FEAT_GUI_TABLINE |
6226 /* When the GUI has the tabline then this always returns zero. */ | |
6227 if (gui_use_tabline()) | |
6228 return 0; | |
6229 #endif | |
675 | 6230 switch (p_stal) |
668 | 6231 { |
6232 case 0: return 0; | |
6233 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1; | |
6234 } | |
667 | 6235 return 1; |
6236 } | |
6237 | |
7 | 6238 /* |
6239 * Return the minimal number of rows that is needed on the screen to display | |
6240 * the current number of windows. | |
6241 */ | |
6242 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6243 min_rows(void) |
7 | 6244 { |
6245 int total; | |
671 | 6246 tabpage_T *tp; |
6247 int n; | |
7 | 6248 |
6249 if (firstwin == NULL) /* not initialized yet */ | |
6250 return MIN_LINES; | |
6251 | |
671 | 6252 total = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6253 FOR_ALL_TABPAGES(tp) |
671 | 6254 { |
6255 n = frame_minheight(tp->tp_topframe, NULL); | |
6256 if (total < n) | |
6257 total = n; | |
6258 } | |
685 | 6259 total += tabline_height(); |
671 | 6260 total += 1; /* count the room for the command line */ |
7 | 6261 return total; |
6262 } | |
6263 | |
6264 /* | |
672 | 6265 * Return TRUE if there is only one window (in the current tab page), not |
6266 * counting a help or preview window, unless it is the current window. | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
6267 * Does not count unlisted windows. |
7 | 6268 */ |
6269 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6270 only_one_window(void) |
7 | 6271 { |
6272 int count = 0; | |
6273 win_T *wp; | |
6274 | |
667 | 6275 /* If there is another tab page there always is another window. */ |
6276 if (first_tabpage->tp_next != NULL) | |
6277 return FALSE; | |
6278 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6279 FOR_ALL_WINDOWS(wp) |
4021 | 6280 if (wp->w_buffer != NULL |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11593
diff
changeset
|
6281 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf)) |
7 | 6282 # ifdef FEAT_QUICKFIX |
6283 || wp->w_p_pvw | |
6284 # endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
6285 ) || wp == curwin) && wp != aucmd_win) |
7 | 6286 ++count; |
6287 return (count <= 1); | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6288 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6289 |
7 | 6290 /* |
6291 * Correct the cursor line number in other windows. Used after changing the | |
6292 * current buffer, and before applying autocommands. | |
6293 * When "do_curwin" is TRUE, also check current window. | |
6294 */ | |
6295 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6296 check_lnums(int do_curwin) |
7 | 6297 { |
6298 win_T *wp; | |
671 | 6299 tabpage_T *tp; |
6300 | |
6301 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7 | 6302 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf) |
6303 { | |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6304 // save the original cursor position and topline |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6305 wp->w_save_cursor.w_cursor_save = wp->w_cursor; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6306 wp->w_save_cursor.w_topline_save = wp->w_topline; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6307 |
7 | 6308 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
6309 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
6310 if (wp->w_topline > curbuf->b_ml.ml_line_count) | |
6311 wp->w_topline = curbuf->b_ml.ml_line_count; | |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6312 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6313 // save the corrected cursor position and topline |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6314 wp->w_save_cursor.w_cursor_corr = wp->w_cursor; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6315 wp->w_save_cursor.w_topline_corr = wp->w_topline; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6316 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6317 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6318 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6319 /* |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6320 * Reset cursor and topline to its stored values from check_lnums(). |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6321 * check_lnums() must have been called first! |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6322 */ |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6323 void |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6324 reset_lnums() |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6325 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6326 win_T *wp; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6327 tabpage_T *tp; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6328 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6329 FOR_ALL_TAB_WINDOWS(tp, wp) |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6330 if (wp->w_buffer == curbuf) |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6331 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6332 // Restore the value if the autocommand didn't change it. |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6333 if (EQUAL_POS(wp->w_save_cursor.w_cursor_corr, wp->w_cursor)) |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6334 wp->w_cursor = wp->w_save_cursor.w_cursor_save; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6335 if (wp->w_save_cursor.w_topline_corr == wp->w_topline) |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6336 wp->w_topline = wp->w_save_cursor.w_topline_save; |
7 | 6337 } |
6338 } | |
6339 | |
6340 /* | |
6341 * A snapshot of the window sizes, to restore them after closing the help | |
6342 * window. | |
6343 * Only these fields are used: | |
6344 * fr_layout | |
6345 * fr_width | |
6346 * fr_height | |
6347 * fr_next | |
6348 * fr_child | |
6349 * fr_win (only valid for the old curwin, NULL otherwise) | |
6350 */ | |
6351 | |
6352 /* | |
6353 * Create a snapshot of the current frame sizes. | |
6354 */ | |
1906 | 6355 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6356 make_snapshot(int idx) |
7 | 6357 { |
1906 | 6358 clear_snapshot(curtab, idx); |
6359 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); | |
7 | 6360 } |
6361 | |
6362 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6363 make_snapshot_rec(frame_T *fr, frame_T **frp) |
7 | 6364 { |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16690
diff
changeset
|
6365 *frp = (frame_T *)alloc_clear(sizeof(frame_T)); |
7 | 6366 if (*frp == NULL) |
6367 return; | |
6368 (*frp)->fr_layout = fr->fr_layout; | |
6369 (*frp)->fr_width = fr->fr_width; | |
6370 (*frp)->fr_height = fr->fr_height; | |
6371 if (fr->fr_next != NULL) | |
6372 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next)); | |
6373 if (fr->fr_child != NULL) | |
6374 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child)); | |
6375 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin) | |
6376 (*frp)->fr_win = curwin; | |
6377 } | |
6378 | |
6379 /* | |
6380 * Remove any existing snapshot. | |
6381 */ | |
6382 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6383 clear_snapshot(tabpage_T *tp, int idx) |
7 | 6384 { |
1906 | 6385 clear_snapshot_rec(tp->tp_snapshot[idx]); |
6386 tp->tp_snapshot[idx] = NULL; | |
7 | 6387 } |
6388 | |
6389 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6390 clear_snapshot_rec(frame_T *fr) |
7 | 6391 { |
6392 if (fr != NULL) | |
6393 { | |
6394 clear_snapshot_rec(fr->fr_next); | |
6395 clear_snapshot_rec(fr->fr_child); | |
6396 vim_free(fr); | |
6397 } | |
6398 } | |
6399 | |
6400 /* | |
6401 * Restore a previously created snapshot, if there is any. | |
6402 * This is only done if the screen size didn't change and the window layout is | |
6403 * still the same. | |
6404 */ | |
1906 | 6405 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6406 restore_snapshot( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6407 int idx, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6408 int close_curwin) /* closing current window */ |
7 | 6409 { |
6410 win_T *wp; | |
6411 | |
1906 | 6412 if (curtab->tp_snapshot[idx] != NULL |
6413 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width | |
6414 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height | |
6415 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) | |
6416 { | |
6417 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); | |
7 | 6418 win_comp_pos(); |
6419 if (wp != NULL && close_curwin) | |
6420 win_goto(wp); | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
6421 redraw_all_later(NOT_VALID); |
7 | 6422 } |
1906 | 6423 clear_snapshot(curtab, idx); |
7 | 6424 } |
6425 | |
6426 /* | |
6427 * Check if frames "sn" and "fr" have the same layout, same following frames | |
10883
cb71a5468aca
patch 8.0.0331: restoring help snapshot accesses freed memory
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
6428 * and same children. And the window pointer is valid. |
7 | 6429 */ |
6430 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6431 check_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 6432 { |
6433 if (sn->fr_layout != fr->fr_layout | |
6434 || (sn->fr_next == NULL) != (fr->fr_next == NULL) | |
6435 || (sn->fr_child == NULL) != (fr->fr_child == NULL) | |
6436 || (sn->fr_next != NULL | |
6437 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL) | |
6438 || (sn->fr_child != NULL | |
10883
cb71a5468aca
patch 8.0.0331: restoring help snapshot accesses freed memory
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
6439 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL) |
11191
445fd6be2009
patch 8.0.0482: the setbufvar() function may mess up the window layout
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6440 || (sn->fr_win != NULL && !win_valid(sn->fr_win))) |
7 | 6441 return FAIL; |
6442 return OK; | |
6443 } | |
6444 | |
6445 /* | |
6446 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all | |
6447 * following frames and children. | |
6448 * Returns a pointer to the old current window, or NULL. | |
6449 */ | |
6450 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6451 restore_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 6452 { |
6453 win_T *wp = NULL; | |
6454 win_T *wp2; | |
6455 | |
6456 fr->fr_height = sn->fr_height; | |
6457 fr->fr_width = sn->fr_width; | |
6458 if (fr->fr_layout == FR_LEAF) | |
6459 { | |
6460 frame_new_height(fr, fr->fr_height, FALSE, FALSE); | |
779 | 6461 frame_new_width(fr, fr->fr_width, FALSE, FALSE); |
7 | 6462 wp = sn->fr_win; |
6463 } | |
6464 if (sn->fr_next != NULL) | |
6465 { | |
6466 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next); | |
6467 if (wp2 != NULL) | |
6468 wp = wp2; | |
6469 } | |
6470 if (sn->fr_child != NULL) | |
6471 { | |
6472 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child); | |
6473 if (wp2 != NULL) | |
6474 wp = wp2; | |
6475 } | |
6476 return wp; | |
6477 } | |
6478 | |
5202
8edba3805d78
updated for version 7.4a.027
Bram Moolenaar <bram@vim.org>
parents:
5098
diff
changeset
|
6479 #if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \ |
8edba3805d78
updated for version 7.4a.027
Bram Moolenaar <bram@vim.org>
parents:
5098
diff
changeset
|
6480 || defined(PROTO) |
4429 | 6481 /* |
6482 * Set "win" to be the curwin and "tp" to be the current tab page. | |
6222 | 6483 * restore_win() MUST be called to undo, also when FAIL is returned. |
6484 * No autocommands will be executed until restore_win() is called. | |
4918
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6485 * When "no_display" is TRUE the display won't be affected, no redraw is |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6486 * triggered, another tabpage access is limited. |
4429 | 6487 * Returns FAIL if switching to "win" failed. |
6488 */ | |
6489 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6490 switch_win( |
12564
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
6491 win_T **save_curwin, |
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
6492 tabpage_T **save_curtab, |
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
6493 win_T *win, |
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
6494 tabpage_T *tp, |
183dc24cf861
patch 8.0.1160: getting tab-local variable fails after closing window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
6495 int no_display) |
4429 | 6496 { |
6497 block_autocmds(); | |
6498 *save_curwin = curwin; | |
6499 if (tp != NULL) | |
6500 { | |
6501 *save_curtab = curtab; | |
4918
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6502 if (no_display) |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6503 { |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6504 curtab->tp_firstwin = firstwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6505 curtab->tp_lastwin = lastwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6506 curtab = tp; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6507 firstwin = curtab->tp_firstwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6508 lastwin = curtab->tp_lastwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6509 } |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6510 else |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6511 goto_tabpage_tp(tp, FALSE, FALSE); |
4429 | 6512 } |
6513 if (!win_valid(win)) | |
6514 return FAIL; | |
6515 curwin = win; | |
6516 curbuf = curwin->w_buffer; | |
6517 return OK; | |
6518 } | |
6519 | |
6520 /* | |
6521 * Restore current tabpage and window saved by switch_win(), if still valid. | |
4918
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6522 * When "no_display" is TRUE the display won't be affected, no redraw is |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6523 * triggered. |
4429 | 6524 */ |
6525 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6526 restore_win( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6527 win_T *save_curwin UNUSED, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6528 tabpage_T *save_curtab UNUSED, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6529 int no_display UNUSED) |
4429 | 6530 { |
6531 if (save_curtab != NULL && valid_tabpage(save_curtab)) | |
4918
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6532 { |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6533 if (no_display) |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6534 { |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6535 curtab->tp_firstwin = firstwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6536 curtab->tp_lastwin = lastwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6537 curtab = save_curtab; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6538 firstwin = curtab->tp_firstwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6539 lastwin = curtab->tp_lastwin; |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6540 } |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6541 else |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6542 goto_tabpage_tp(save_curtab, FALSE, FALSE); |
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6543 } |
4429 | 6544 if (win_valid(save_curwin)) |
6545 { | |
6546 curwin = save_curwin; | |
6547 curbuf = curwin->w_buffer; | |
6548 } | |
6549 unblock_autocmds(); | |
6550 } | |
6551 | |
6552 /* | |
6553 * Make "buf" the current buffer. restore_buffer() MUST be called to undo. | |
6554 * No autocommands will be executed. Use aucmd_prepbuf() if there are any. | |
6555 */ | |
6556 void | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9349
diff
changeset
|
6557 switch_buffer(bufref_T *save_curbuf, buf_T *buf) |
4429 | 6558 { |
6559 block_autocmds(); | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9349
diff
changeset
|
6560 set_bufref(save_curbuf, curbuf); |
4429 | 6561 --curbuf->b_nwindows; |
6562 curbuf = buf; | |
6563 curwin->w_buffer = buf; | |
6564 ++curbuf->b_nwindows; | |
6565 } | |
6566 | |
6567 /* | |
6568 * Restore the current buffer after using switch_buffer(). | |
6569 */ | |
6570 void | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9349
diff
changeset
|
6571 restore_buffer(bufref_T *save_curbuf) |
4429 | 6572 { |
6573 unblock_autocmds(); | |
6574 /* Check for valid buffer, just in case. */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9349
diff
changeset
|
6575 if (bufref_valid(save_curbuf)) |
4429 | 6576 { |
6577 --curbuf->b_nwindows; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9349
diff
changeset
|
6578 curwin->w_buffer = save_curbuf->br_buf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9349
diff
changeset
|
6579 curbuf = save_curbuf->br_buf; |
4429 | 6580 ++curbuf->b_nwindows; |
6581 } | |
6582 } | |
6583 #endif | |
6584 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6585 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 6586 /* |
6587 * Return TRUE if there is any vertically split window. | |
6588 */ | |
6589 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6590 win_hasvertsplit(void) |
7 | 6591 { |
6592 frame_T *fr; | |
6593 | |
6594 if (topframe->fr_layout == FR_ROW) | |
6595 return TRUE; | |
6596 | |
6597 if (topframe->fr_layout == FR_COL) | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6598 FOR_ALL_FRAMES(fr, topframe->fr_child) |
7 | 6599 if (fr->fr_layout == FR_ROW) |
6600 return TRUE; | |
6601 | |
6602 return FALSE; | |
6603 } | |
6604 #endif | |
1326 | 6605 |
6606 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO) | |
6607 /* | |
6608 * Add match to the match list of window 'wp'. The pattern 'pat' will be | |
1698 | 6609 * highlighted with the group 'grp' with priority 'prio'. |
1326 | 6610 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1). |
6611 * If no particular ID is desired, -1 must be specified for 'id'. | |
6612 * Return ID of added match, -1 on failure. | |
6613 */ | |
6614 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6615 match_add( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6616 win_T *wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6617 char_u *grp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6618 char_u *pat, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6619 int prio, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6620 int id, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6621 list_T *pos_list, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6622 char_u *conceal_char UNUSED) /* pointer to conceal replacement char */ |
1326 | 6623 { |
5979 | 6624 matchitem_T *cur; |
6625 matchitem_T *prev; | |
6626 matchitem_T *m; | |
1326 | 6627 int hlg_id; |
5979 | 6628 regprog_T *regprog = NULL; |
6629 int rtype = SOME_VALID; | |
6630 | |
6631 if (*grp == NUL || (pat != NULL && *pat == NUL)) | |
1326 | 6632 return -1; |
6633 if (id < -1 || id == 0) | |
6634 { | |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6635 semsg(_("E799: Invalid ID: %d (must be greater than or equal to 1)"), id); |
1326 | 6636 return -1; |
6637 } | |
6638 if (id != -1) | |
6639 { | |
6640 cur = wp->w_match_head; | |
6641 while (cur != NULL) | |
6642 { | |
6643 if (cur->id == id) | |
6644 { | |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6645 semsg(_("E801: ID already taken: %d"), id); |
1326 | 6646 return -1; |
6647 } | |
6648 cur = cur->next; | |
6649 } | |
6650 } | |
1570 | 6651 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0) |
1326 | 6652 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6653 semsg(_(e_nogroup), grp); |
1326 | 6654 return -1; |
6655 } | |
5979 | 6656 if (pat != NULL && (regprog = vim_regcomp(pat, RE_MAGIC)) == NULL) |
1326 | 6657 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6658 semsg(_(e_invarg2), pat); |
1326 | 6659 return -1; |
6660 } | |
6661 | |
6662 /* Find available match ID. */ | |
6663 while (id == -1) | |
6664 { | |
6665 cur = wp->w_match_head; | |
6666 while (cur != NULL && cur->id != wp->w_next_match_id) | |
6667 cur = cur->next; | |
6668 if (cur == NULL) | |
6669 id = wp->w_next_match_id; | |
6670 wp->w_next_match_id++; | |
6671 } | |
6672 | |
6673 /* Build new match. */ | |
5987 | 6674 m = (matchitem_T *)alloc_clear(sizeof(matchitem_T)); |
1326 | 6675 m->id = id; |
6676 m->priority = prio; | |
5979 | 6677 m->pattern = pat == NULL ? NULL : vim_strsave(pat); |
1326 | 6678 m->hlg_id = hlg_id; |
1338 | 6679 m->match.regprog = regprog; |
6680 m->match.rmm_ic = FALSE; | |
6681 m->match.rmm_maxcol = 0; | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
6682 # if defined(FEAT_CONCEAL) |
6947 | 6683 m->conceal_char = 0; |
6684 if (conceal_char != NULL) | |
6685 m->conceal_char = (*mb_ptr2char)(conceal_char); | |
8804
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
6686 # endif |
1326 | 6687 |
5979 | 6688 /* Set up position matches */ |
6689 if (pos_list != NULL) | |
6690 { | |
6691 linenr_T toplnum = 0; | |
6692 linenr_T botlnum = 0; | |
6693 listitem_T *li; | |
6694 int i; | |
6695 | |
6007 | 6696 for (i = 0, li = pos_list->lv_first; li != NULL && i < MAXPOSMATCH; |
5979 | 6697 i++, li = li->li_next) |
6698 { | |
6699 linenr_T lnum = 0; | |
6700 colnr_T col = 0; | |
6701 int len = 1; | |
6702 list_T *subl; | |
6703 listitem_T *subli; | |
5987 | 6704 int error = FALSE; |
5979 | 6705 |
6706 if (li->li_tv.v_type == VAR_LIST) | |
6707 { | |
6708 subl = li->li_tv.vval.v_list; | |
6709 if (subl == NULL) | |
6710 goto fail; | |
6711 subli = subl->lv_first; | |
6712 if (subli == NULL) | |
6713 goto fail; | |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
6714 lnum = tv_get_number_chk(&subli->li_tv, &error); |
5979 | 6715 if (error == TRUE) |
6716 goto fail; | |
6717 if (lnum == 0) | |
6718 { | |
6719 --i; | |
6720 continue; | |
6721 } | |
6007 | 6722 m->pos.pos[i].lnum = lnum; |
5979 | 6723 subli = subli->li_next; |
6724 if (subli != NULL) | |
6725 { | |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
6726 col = tv_get_number_chk(&subli->li_tv, &error); |
5979 | 6727 if (error == TRUE) |
6728 goto fail; | |
6729 subli = subli->li_next; | |
6730 if (subli != NULL) | |
6731 { | |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
6732 len = tv_get_number_chk(&subli->li_tv, &error); |
5979 | 6733 if (error == TRUE) |
6734 goto fail; | |
6735 } | |
6736 } | |
6737 m->pos.pos[i].col = col; | |
6738 m->pos.pos[i].len = len; | |
6739 } | |
6740 else if (li->li_tv.v_type == VAR_NUMBER) | |
6741 { | |
6742 if (li->li_tv.vval.v_number == 0) | |
6007 | 6743 { |
6744 --i; | |
5979 | 6745 continue; |
6007 | 6746 } |
5979 | 6747 m->pos.pos[i].lnum = li->li_tv.vval.v_number; |
6748 m->pos.pos[i].col = 0; | |
6749 m->pos.pos[i].len = 0; | |
6750 } | |
6751 else | |
6752 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6753 emsg(_("List or number required")); |
5979 | 6754 goto fail; |
6755 } | |
6756 if (toplnum == 0 || lnum < toplnum) | |
6757 toplnum = lnum; | |
6005 | 6758 if (botlnum == 0 || lnum >= botlnum) |
6759 botlnum = lnum + 1; | |
5979 | 6760 } |
6761 | |
6762 /* Calculate top and bottom lines for redrawing area */ | |
6763 if (toplnum != 0) | |
6764 { | |
6765 if (wp->w_buffer->b_mod_set) | |
6766 { | |
6767 if (wp->w_buffer->b_mod_top > toplnum) | |
6768 wp->w_buffer->b_mod_top = toplnum; | |
6769 if (wp->w_buffer->b_mod_bot < botlnum) | |
6770 wp->w_buffer->b_mod_bot = botlnum; | |
6771 } | |
6772 else | |
6773 { | |
6018 | 6774 wp->w_buffer->b_mod_set = TRUE; |
5979 | 6775 wp->w_buffer->b_mod_top = toplnum; |
6776 wp->w_buffer->b_mod_bot = botlnum; | |
6018 | 6777 wp->w_buffer->b_mod_xlines = 0; |
5979 | 6778 } |
6779 m->pos.toplnum = toplnum; | |
6780 m->pos.botlnum = botlnum; | |
6781 rtype = VALID; | |
6782 } | |
6783 } | |
6784 | |
1326 | 6785 /* Insert new match. The match list is in ascending order with regard to |
6786 * the match priorities. */ | |
6787 cur = wp->w_match_head; | |
6788 prev = cur; | |
6789 while (cur != NULL && prio >= cur->priority) | |
6790 { | |
6791 prev = cur; | |
6792 cur = cur->next; | |
6793 } | |
6794 if (cur == prev) | |
6795 wp->w_match_head = m; | |
6796 else | |
6797 prev->next = m; | |
6798 m->next = cur; | |
6799 | |
5979 | 6800 redraw_later(rtype); |
1326 | 6801 return id; |
5979 | 6802 |
6803 fail: | |
6804 vim_free(m); | |
6805 return -1; | |
1326 | 6806 } |
6807 | |
6808 /* | |
6809 * Delete match with ID 'id' in the match list of window 'wp'. | |
6810 * Print error messages if 'perr' is TRUE. | |
6811 */ | |
6812 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6813 match_delete(win_T *wp, int id, int perr) |
1326 | 6814 { |
5979 | 6815 matchitem_T *cur = wp->w_match_head; |
6816 matchitem_T *prev = cur; | |
6817 int rtype = SOME_VALID; | |
1326 | 6818 |
6819 if (id < 1) | |
6820 { | |
6821 if (perr == TRUE) | |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6822 semsg(_("E802: Invalid ID: %d (must be greater than or equal to 1)"), |
1326 | 6823 id); |
6824 return -1; | |
6825 } | |
6826 while (cur != NULL && cur->id != id) | |
6827 { | |
6828 prev = cur; | |
6829 cur = cur->next; | |
6830 } | |
6831 if (cur == NULL) | |
6832 { | |
6833 if (perr == TRUE) | |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6834 semsg(_("E803: ID not found: %d"), id); |
1326 | 6835 return -1; |
6836 } | |
6837 if (cur == prev) | |
6838 wp->w_match_head = cur->next; | |
6839 else | |
6840 prev->next = cur->next; | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4442
diff
changeset
|
6841 vim_regfree(cur->match.regprog); |
1326 | 6842 vim_free(cur->pattern); |
5979 | 6843 if (cur->pos.toplnum != 0) |
6844 { | |
6845 if (wp->w_buffer->b_mod_set) | |
6846 { | |
6847 if (wp->w_buffer->b_mod_top > cur->pos.toplnum) | |
6848 wp->w_buffer->b_mod_top = cur->pos.toplnum; | |
6849 if (wp->w_buffer->b_mod_bot < cur->pos.botlnum) | |
6850 wp->w_buffer->b_mod_bot = cur->pos.botlnum; | |
6851 } | |
6852 else | |
6853 { | |
6018 | 6854 wp->w_buffer->b_mod_set = TRUE; |
5979 | 6855 wp->w_buffer->b_mod_top = cur->pos.toplnum; |
6856 wp->w_buffer->b_mod_bot = cur->pos.botlnum; | |
6018 | 6857 wp->w_buffer->b_mod_xlines = 0; |
5979 | 6858 } |
6859 rtype = VALID; | |
6860 } | |
1326 | 6861 vim_free(cur); |
5979 | 6862 redraw_later(rtype); |
1326 | 6863 return 0; |
6864 } | |
6865 | |
6866 /* | |
6867 * Delete all matches in the match list of window 'wp'. | |
6868 */ | |
6869 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6870 clear_matches(win_T *wp) |
1326 | 6871 { |
6872 matchitem_T *m; | |
6873 | |
6874 while (wp->w_match_head != NULL) | |
6875 { | |
6876 m = wp->w_match_head->next; | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4442
diff
changeset
|
6877 vim_regfree(wp->w_match_head->match.regprog); |
1326 | 6878 vim_free(wp->w_match_head->pattern); |
6879 vim_free(wp->w_match_head); | |
6880 wp->w_match_head = m; | |
6881 } | |
6882 redraw_later(SOME_VALID); | |
6883 } | |
6884 | |
6885 /* | |
6886 * Get match from ID 'id' in window 'wp'. | |
6887 * Return NULL if match not found. | |
6888 */ | |
6889 matchitem_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6890 get_match(win_T *wp, int id) |
1326 | 6891 { |
6892 matchitem_T *cur = wp->w_match_head; | |
6893 | |
6894 while (cur != NULL && cur->id != id) | |
6895 cur = cur->next; | |
6896 return cur; | |
6897 } | |
6898 #endif | |
4379 | 6899 |
6900 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) | |
6901 int | |
4401 | 6902 get_win_number(win_T *wp, win_T *first_win) |
4379 | 6903 { |
6904 int i = 1; | |
6905 win_T *w; | |
6906 | |
4401 | 6907 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w)) |
4379 | 6908 ++i; |
6909 | |
6910 if (w == NULL) | |
6911 return 0; | |
6912 else | |
6913 return i; | |
6914 } | |
4401 | 6915 |
6916 int | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4918
diff
changeset
|
6917 get_tab_number(tabpage_T *tp UNUSED) |
4401 | 6918 { |
6919 int i = 1; | |
6920 tabpage_T *t; | |
6921 | |
6922 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next) | |
6923 ++i; | |
6924 | |
6925 if (t == NULL) | |
6926 return 0; | |
6927 else | |
6928 return i; | |
6929 } | |
6930 #endif | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6931 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6932 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6933 * Return TRUE if "topfrp" and its children are at the right height. |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6934 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6935 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6936 frame_check_height(frame_T *topfrp, int height) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6937 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6938 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6939 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6940 if (topfrp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6941 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6942 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6943 if (topfrp->fr_layout == FR_ROW) |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6944 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6945 if (frp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6946 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6947 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6948 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6949 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6950 |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6951 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6952 * Return TRUE if "topfrp" and its children are at the right width. |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6953 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6954 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6955 frame_check_width(frame_T *topfrp, int width) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6956 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6957 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6958 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6959 if (topfrp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6960 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6961 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6962 if (topfrp->fr_layout == FR_COL) |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6963 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6964 if (frp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6965 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6966 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6967 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6968 } |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6969 |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6970 #if defined(FEAT_EVAL) || defined(PROTO) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6971 int |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6972 win_getid(typval_T *argvars) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6973 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6974 int winnr; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6975 win_T *wp; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6976 |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6977 if (argvars[0].v_type == VAR_UNKNOWN) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6978 return curwin->w_id; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
6979 winnr = tv_get_number(&argvars[0]); |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6980 if (winnr > 0) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6981 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6982 if (argvars[1].v_type == VAR_UNKNOWN) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6983 wp = firstwin; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6984 else |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6985 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6986 tabpage_T *tp; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
6987 int tabnr = tv_get_number(&argvars[1]); |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6988 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6989 FOR_ALL_TABPAGES(tp) |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6990 if (--tabnr == 0) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6991 break; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6992 if (tp == NULL) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6993 return -1; |
10377
dd397210a2d3
commit https://github.com/vim/vim/commit/8e639052638a9bb8c7dd6e3e10776b1218cec1a3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
6994 if (tp == curtab) |
dd397210a2d3
commit https://github.com/vim/vim/commit/8e639052638a9bb8c7dd6e3e10776b1218cec1a3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
6995 wp = firstwin; |
dd397210a2d3
commit https://github.com/vim/vim/commit/8e639052638a9bb8c7dd6e3e10776b1218cec1a3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
6996 else |
dd397210a2d3
commit https://github.com/vim/vim/commit/8e639052638a9bb8c7dd6e3e10776b1218cec1a3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
6997 wp = tp->tp_firstwin; |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6998 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
6999 for ( ; wp != NULL; wp = wp->w_next) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7000 if (--winnr == 0) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7001 return wp->w_id; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7002 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7003 return 0; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7004 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7005 |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7006 int |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7007 win_gotoid(typval_T *argvars) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7008 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7009 win_T *wp; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7010 tabpage_T *tp; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
7011 int id = tv_get_number(&argvars[0]); |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7012 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
7013 FOR_ALL_TAB_WINDOWS(tp, wp) |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7014 if (wp->w_id == id) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7015 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7016 goto_tabpage_win(tp, wp); |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7017 return 1; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7018 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7019 return 0; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7020 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7021 |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7022 void |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7023 win_id2tabwin(typval_T *argvars, list_T *list) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7024 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7025 win_T *wp; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7026 tabpage_T *tp; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7027 int winnr = 1; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7028 int tabnr = 1; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
7029 int id = tv_get_number(&argvars[0]); |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7030 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
7031 FOR_ALL_TABPAGES(tp) |
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
7032 { |
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
7033 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7034 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7035 if (wp->w_id == id) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7036 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7037 list_append_number(list, tabnr); |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7038 list_append_number(list, winnr); |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7039 return; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7040 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7041 ++winnr; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7042 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7043 ++tabnr; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7044 winnr = 1; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7045 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7046 list_append_number(list, 0); |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7047 list_append_number(list, 0); |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7048 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7049 |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7050 win_T * |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
7051 win_id2wp(int id) |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7052 { |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7053 win_T *wp; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7054 tabpage_T *tp; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7055 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7056 FOR_ALL_TAB_WINDOWS(tp, wp) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7057 if (wp->w_id == id) |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7058 return wp; |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7059 #ifdef FEAT_TEXT_PROP |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7060 // popup windows are in a separate list |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7061 FOR_ALL_TABPAGES(tp) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7062 for (wp = tp->tp_first_popupwin; wp != NULL; wp = wp->w_next) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7063 if (wp->w_id == id) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7064 return wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7065 for (wp = first_popupwin; wp != NULL; wp = wp->w_next) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7066 if (wp->w_id == id) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7067 return wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
7068 #endif |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7069 |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7070 return NULL; |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7071 } |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
7072 |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7073 int |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7074 win_id2win(typval_T *argvars) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7075 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7076 win_T *wp; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7077 int nr = 1; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
7078 int id = tv_get_number(&argvars[0]); |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7079 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
7080 FOR_ALL_WINDOWS(wp) |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7081 { |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7082 if (wp->w_id == id) |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7083 return nr; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7084 ++nr; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7085 } |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7086 return 0; |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
7087 } |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7088 |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7089 void |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7090 win_findbuf(typval_T *argvars, list_T *list) |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7091 { |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7092 win_T *wp; |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7093 tabpage_T *tp; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
7094 int bufnr = tv_get_number(&argvars[0]); |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7095 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
7096 FOR_ALL_TAB_WINDOWS(tp, wp) |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7097 if (wp->w_buffer->b_fnum == bufnr) |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7098 list_append_number(list, wp->w_id); |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7099 } |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7100 |
14587
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7101 /* |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7102 * Get the layout of the given tab page for winlayout(). |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7103 */ |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7104 void |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7105 get_framelayout(frame_T *fr, list_T *l, int outer) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7106 { |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7107 frame_T *child; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7108 list_T *fr_list; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7109 list_T *win_list; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7110 |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7111 if (fr == NULL) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7112 return; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7113 |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7114 if (outer) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7115 // outermost call from f_winlayout() |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7116 fr_list = l; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7117 else |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7118 { |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7119 fr_list = list_alloc(); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7120 if (fr_list == NULL) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7121 return; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7122 list_append_list(l, fr_list); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7123 } |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7124 |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7125 if (fr->fr_layout == FR_LEAF) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7126 { |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7127 if (fr->fr_win != NULL) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7128 { |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7129 list_append_string(fr_list, (char_u *)"leaf", -1); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7130 list_append_number(fr_list, fr->fr_win->w_id); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7131 } |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7132 } |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7133 else |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7134 { |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7135 list_append_string(fr_list, |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7136 fr->fr_layout == FR_ROW ? (char_u *)"row" : (char_u *)"col", -1); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7137 |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7138 win_list = list_alloc(); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7139 if (win_list == NULL) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7140 return; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7141 list_append_list(fr_list, win_list); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7142 child = fr->fr_child; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7143 while (child != NULL) |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7144 { |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7145 get_framelayout(child, win_list, FALSE); |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7146 child = child->fr_next; |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7147 } |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7148 } |
d33220d3bc27
patch 8.1.0307: there is no good way to get the window layout
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
7149 } |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
7150 #endif |