Mercurial > vim
annotate src/window.c @ 25085:619137b90a04
Added tag v8.2.3079 for changeset beff72446e2e8f90cd16b0652fb8463df2d9b744
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 30 Jun 2021 21:00:06 +0200 |
parents | 8f2262c72178 |
children | 9a2e7184b604 |
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); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
42 static int may_open_tabpage(void); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
43 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
|
44 static void win_free(win_T *wp, tabpage_T *tp); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
45 static int win_unlisted(win_T *wp); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
46 static void win_append(win_T *after, win_T *wp); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
47 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
|
48 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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 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
|
54 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
55 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
|
56 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
|
57 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
|
58 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
|
59 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
|
60 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
61 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
|
62 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
|
63 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
64 static win_T *win_alloc(win_T *after, int hidden); |
7 | 65 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
66 #define NOWIN (win_T *)-1 // non-existing window |
7 | 67 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
68 #define ROWS_AVAIL (Rows - p_ch - tabline_height()) |
826 | 69 |
70 static char *m_onlyone = N_("Already only one window"); | |
71 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
72 // When non-zero splitting a window is forbidden. Used to avoid that nasty |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
73 // autocommands mess up the window structure. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
74 static int split_disallowed = 0; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
75 |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
76 // #define WIN_DEBUG |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
77 #ifdef WIN_DEBUG |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
78 /* |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
79 * Call this method to log the current window layout. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
80 */ |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
81 static void |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
82 log_frame_layout(frame_T *frame) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
83 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
84 ch_log(NULL, "layout %s, wi: %d, he: %d, wwi: %d, whe: %d, id: %d", |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
85 frame->fr_layout == FR_LEAF ? "LEAF" |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
86 : frame->fr_layout == FR_ROW ? "ROW" : "COL", |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
87 frame->fr_width, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
88 frame->fr_height, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
89 frame->fr_win == NULL ? -1 : frame->fr_win->w_width, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
90 frame->fr_win == NULL ? -1 : frame->fr_win->w_height, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
91 frame->fr_win == NULL ? -1 : frame->fr_win->w_id); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
92 if (frame->fr_child != NULL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
93 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
94 ch_log(NULL, "children"); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
95 log_frame_layout(frame->fr_child); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
96 if (frame->fr_next != NULL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
97 ch_log(NULL, "END of children"); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
98 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
99 if (frame->fr_next != NULL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
100 log_frame_layout(frame->fr_next); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
101 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
102 #endif |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
103 |
7 | 104 /* |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
105 * All CTRL-W window commands are handled here, called from normal_cmd(). |
7 | 106 */ |
107 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
108 do_window( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
109 int nchar, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
110 long Prenum, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
111 int xchar) // extra char from ":wincmd gx" or NUL |
7 | 112 { |
113 long Prenum1; | |
114 win_T *wp; | |
115 #if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID) | |
116 char_u *ptr; | |
681 | 117 linenr_T lnum = -1; |
7 | 118 #endif |
119 #ifdef FEAT_FIND_ID | |
120 int type = FIND_DEFINE; | |
121 int len; | |
122 #endif | |
123 char_u cbuf[40]; | |
124 | |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
125 if (ERROR_IF_ANY_POPUP_WINDOW) |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
126 return; |
7 | 127 |
128 #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
|
129 # define CHECK_CMDWIN \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
130 do { \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
131 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
|
132 { \ |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24216
diff
changeset
|
133 emsg(_(e_invalid_in_cmdline_window)); \ |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
134 return; \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
135 } \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
136 } while (0) |
7 | 137 #else |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
138 # define CHECK_CMDWIN do { /**/ } while (0) |
7 | 139 #endif |
140 | |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
141 Prenum1 = Prenum == 0 ? 1 : Prenum; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
142 |
7 | 143 switch (nchar) |
144 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
145 // split current window in two parts, horizontally |
7 | 146 case 'S': |
147 case Ctrl_S: | |
148 case 's': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
149 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
150 reset_VIsual_and_resel(); // stop Visual mode |
635 | 151 #ifdef FEAT_QUICKFIX |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
152 // When splitting the quickfix window open a new buffer in it, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
153 // don't replicate the quickfix buffer. |
635 | 154 if (bt_quickfix(curbuf)) |
155 goto newwindow; | |
156 #endif | |
7 | 157 #ifdef FEAT_GUI |
158 need_mouse_correct = TRUE; | |
159 #endif | |
7009 | 160 (void)win_split((int)Prenum, 0); |
7 | 161 break; |
162 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
163 // split current window in two parts, vertically |
7 | 164 case Ctrl_V: |
165 case 'v': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
166 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
167 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
|
168 #ifdef FEAT_QUICKFIX |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
169 // When splitting the quickfix window open a new buffer in it, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
170 // don't replicate the quickfix buffer. |
1664 | 171 if (bt_quickfix(curbuf)) |
172 goto newwindow; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
173 #endif |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
174 #ifdef FEAT_GUI |
7 | 175 need_mouse_correct = TRUE; |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
176 #endif |
7009 | 177 (void)win_split((int)Prenum, WSP_VERT); |
7 | 178 break; |
179 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
180 // split current window and edit alternate file |
7 | 181 case Ctrl_HAT: |
182 case '^': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
183 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
184 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
|
185 |
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
|
186 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
|
187 ? 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
|
188 { |
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
|
189 if (Prenum == 0) |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24216
diff
changeset
|
190 emsg(_(e_no_alternate_file)); |
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
|
191 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
192 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
|
193 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
|
194 } |
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
|
195 |
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
|
196 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
|
197 (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
|
198 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
|
199 (linenr_T)0, GETF_ALT, FALSE); |
7 | 200 break; |
201 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
202 // open new window |
7 | 203 case Ctrl_N: |
204 case 'n': | |
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; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
206 reset_VIsual_and_resel(); // stop Visual mode |
635 | 207 #ifdef FEAT_QUICKFIX |
208 newwindow: | |
209 #endif | |
7 | 210 if (Prenum) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
211 // window height |
1664 | 212 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum); |
7 | 213 else |
214 cbuf[0] = NUL; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
215 #if defined(FEAT_QUICKFIX) |
1664 | 216 if (nchar == 'v' || nchar == Ctrl_V) |
217 STRCAT(cbuf, "v"); | |
218 #endif | |
7 | 219 STRCAT(cbuf, "new"); |
220 do_cmdline_cmd(cbuf); | |
221 break; | |
222 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
223 // quit current window |
7 | 224 case Ctrl_Q: |
225 case 'q': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
226 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 227 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum); |
6398 | 228 do_cmdline_cmd(cbuf); |
7 | 229 break; |
230 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
231 // close current window |
7 | 232 case Ctrl_C: |
233 case 'c': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
234 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 235 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum); |
6398 | 236 do_cmdline_cmd(cbuf); |
7 | 237 break; |
238 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
239 #if defined(FEAT_QUICKFIX) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
240 // close preview window |
7 | 241 case Ctrl_Z: |
242 case 'z': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
243 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
244 reset_VIsual_and_resel(); // stop Visual mode |
7 | 245 do_cmdline_cmd((char_u *)"pclose"); |
246 break; | |
247 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
248 // cursor to preview window |
7 | 249 case 'P': |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
250 FOR_ALL_WINDOWS(wp) |
7 | 251 if (wp->w_p_pvw) |
252 break; | |
253 if (wp == NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
254 emsg(_("E441: There is no preview window")); |
7 | 255 else |
256 win_goto(wp); | |
257 break; | |
258 #endif | |
259 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
260 // close all but current window |
7 | 261 case Ctrl_O: |
262 case 'o': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
263 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
264 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 265 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum); |
6398 | 266 do_cmdline_cmd(cbuf); |
7 | 267 break; |
268 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
269 // cursor to next window with wrap around |
7 | 270 case Ctrl_W: |
271 case 'w': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
272 // cursor to previous window with wrap around |
7 | 273 case 'W': |
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; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
275 if (ONE_WINDOW && Prenum != 1) // just one window |
7 | 276 beep_flush(); |
277 else | |
278 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
279 if (Prenum) // go to specified window |
7 | 280 { |
281 for (wp = firstwin; --Prenum > 0; ) | |
282 { | |
283 if (wp->w_next == NULL) | |
284 break; | |
285 else | |
286 wp = wp->w_next; | |
287 } | |
288 } | |
289 else | |
290 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
291 if (nchar == 'W') // go to previous window |
7 | 292 { |
293 wp = curwin->w_prev; | |
294 if (wp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
295 wp = lastwin; // wrap around |
7 | 296 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
297 else // go to next window |
7 | 298 { |
299 wp = curwin->w_next; | |
300 if (wp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
301 wp = firstwin; // wrap around |
7 | 302 } |
303 } | |
304 win_goto(wp); | |
305 } | |
306 break; | |
307 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
308 // cursor to window below |
7 | 309 case 'j': |
310 case K_DOWN: | |
311 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
|
312 CHECK_CMDWIN; |
7 | 313 win_goto_ver(FALSE, Prenum1); |
314 break; | |
315 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
316 // cursor to window above |
7 | 317 case 'k': |
318 case K_UP: | |
319 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
|
320 CHECK_CMDWIN; |
7 | 321 win_goto_ver(TRUE, Prenum1); |
322 break; | |
323 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
324 // cursor to left window |
7 | 325 case 'h': |
326 case K_LEFT: | |
327 case Ctrl_H: | |
328 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
|
329 CHECK_CMDWIN; |
7 | 330 win_goto_hor(TRUE, Prenum1); |
331 break; | |
332 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
333 // cursor to right window |
7 | 334 case 'l': |
335 case K_RIGHT: | |
336 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
|
337 CHECK_CMDWIN; |
7 | 338 win_goto_hor(FALSE, Prenum1); |
339 break; | |
340 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
341 // move window to new tab page |
826 | 342 case 'T': |
20737
0b4a9642b39c
patch 8.2.0921: CTRL-W T in cmdline window causes trouble
Bram Moolenaar <Bram@vim.org>
parents:
20711
diff
changeset
|
343 CHECK_CMDWIN; |
1906 | 344 if (one_window()) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15490
diff
changeset
|
345 msg(_(m_onlyone)); |
826 | 346 else |
347 { | |
348 tabpage_T *oldtab = curtab; | |
349 tabpage_T *newtab; | |
350 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
351 // First create a new tab with the window, then go back to |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
352 // the old tab and close the window there. |
944 | 353 wp = curwin; |
826 | 354 if (win_new_tabpage((int)Prenum) == OK |
355 && valid_tabpage(oldtab)) | |
356 { | |
357 newtab = curtab; | |
4354 | 358 goto_tabpage_tp(oldtab, TRUE, TRUE); |
826 | 359 if (curwin == wp) |
360 win_close(curwin, FALSE); | |
361 if (valid_tabpage(newtab)) | |
4354 | 362 goto_tabpage_tp(newtab, TRUE, TRUE); |
826 | 363 } |
364 } | |
365 break; | |
366 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
367 // cursor to top-left window |
7 | 368 case 't': |
369 case Ctrl_T: | |
370 win_goto(firstwin); | |
371 break; | |
372 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
373 // cursor to bottom-right window |
7 | 374 case 'b': |
375 case Ctrl_B: | |
376 win_goto(lastwin); | |
377 break; | |
378 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
379 // cursor to last accessed (previous) window |
7 | 380 case 'p': |
381 case Ctrl_P: | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
382 if (!win_valid(prevwin)) |
7 | 383 beep_flush(); |
384 else | |
385 win_goto(prevwin); | |
386 break; | |
387 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
388 // exchange current and next window |
7 | 389 case 'x': |
390 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
|
391 CHECK_CMDWIN; |
7 | 392 win_exchange(Prenum); |
393 break; | |
394 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
395 // rotate windows downwards |
7 | 396 case Ctrl_R: |
397 case 'r': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
398 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
399 reset_VIsual_and_resel(); // stop Visual mode |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
400 win_rotate(FALSE, (int)Prenum1); // downwards |
7 | 401 break; |
402 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
403 // rotate windows upwards |
7 | 404 case 'R': |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
405 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
406 reset_VIsual_and_resel(); // stop Visual mode |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
407 win_rotate(TRUE, (int)Prenum1); // upwards |
7 | 408 break; |
409 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
410 // move window to the very top/bottom/left/right |
7 | 411 case 'K': |
412 case 'J': | |
413 case 'H': | |
414 case 'L': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
415 CHECK_CMDWIN; |
7 | 416 win_totop((int)Prenum, |
417 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0) | |
418 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT)); | |
419 break; | |
420 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
421 // make all windows the same height |
7 | 422 case '=': |
423 #ifdef FEAT_GUI | |
424 need_mouse_correct = TRUE; | |
425 #endif | |
426 win_equal(NULL, FALSE, 'b'); | |
427 break; | |
428 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
429 // increase current window height |
7 | 430 case '+': |
431 #ifdef FEAT_GUI | |
432 need_mouse_correct = TRUE; | |
433 #endif | |
434 win_setheight(curwin->w_height + (int)Prenum1); | |
435 break; | |
436 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
437 // decrease current window height |
7 | 438 case '-': |
439 #ifdef FEAT_GUI | |
440 need_mouse_correct = TRUE; | |
441 #endif | |
442 win_setheight(curwin->w_height - (int)Prenum1); | |
443 break; | |
444 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
445 // set current window height |
7 | 446 case Ctrl__: |
447 case '_': | |
448 #ifdef FEAT_GUI | |
449 need_mouse_correct = TRUE; | |
450 #endif | |
451 win_setheight(Prenum ? (int)Prenum : 9999); | |
452 break; | |
453 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
454 // increase current window width |
7 | 455 case '>': |
456 #ifdef FEAT_GUI | |
457 need_mouse_correct = TRUE; | |
458 #endif | |
459 win_setwidth(curwin->w_width + (int)Prenum1); | |
460 break; | |
461 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
462 // decrease current window width |
7 | 463 case '<': |
464 #ifdef FEAT_GUI | |
465 need_mouse_correct = TRUE; | |
466 #endif | |
467 win_setwidth(curwin->w_width - (int)Prenum1); | |
468 break; | |
469 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
470 // set current window width |
7 | 471 case '|': |
472 #ifdef FEAT_GUI | |
473 need_mouse_correct = TRUE; | |
474 #endif | |
475 win_setwidth(Prenum != 0 ? (int)Prenum : 9999); | |
476 break; | |
477 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
478 // jump to tag and split window if tag exists (in preview window) |
7 | 479 #if defined(FEAT_QUICKFIX) |
480 case '}': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
481 CHECK_CMDWIN; |
7 | 482 if (Prenum) |
483 g_do_tagpreview = Prenum; | |
484 else | |
485 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
|
486 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
487 // FALLTHROUGH |
7 | 488 case ']': |
489 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
|
490 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
491 // keep Visual mode, can select words to use as a tag |
7 | 492 if (Prenum) |
493 postponed_split = Prenum; | |
494 else | |
495 postponed_split = -1; | |
6251 | 496 #ifdef FEAT_QUICKFIX |
6264 | 497 if (nchar != '}') |
498 g_do_tagpreview = 0; | |
6251 | 499 #endif |
6239 | 500 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
501 // Execute the command right here, required when "wincmd ]" |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
502 // was used in a function. |
7 | 503 do_nv_ident(Ctrl_RSB, NUL); |
504 break; | |
505 | |
506 #ifdef FEAT_SEARCHPATH | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
507 // edit file name under cursor in a new window |
7 | 508 case 'f': |
681 | 509 case 'F': |
7 | 510 case Ctrl_F: |
820 | 511 wingotofile: |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
512 CHECK_CMDWIN; |
344 | 513 |
681 | 514 ptr = grab_file_name(Prenum1, &lnum); |
7 | 515 if (ptr != NULL) |
516 { | |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
517 tabpage_T *oldtab = curtab; |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
518 win_T *oldwin = curwin; |
820 | 519 # ifdef FEAT_GUI |
7 | 520 need_mouse_correct = TRUE; |
820 | 521 # endif |
7 | 522 setpcmark(); |
523 if (win_split(0, 0) == OK) | |
524 { | |
2583 | 525 RESET_BINDING(curwin); |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
526 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
|
527 ECMD_HIDE, NULL) == FAIL) |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
528 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
529 // Failed to open the file, close the window |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
530 // opened for it. |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
531 win_close(curwin, FALSE); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
532 goto_tabpage_win(oldtab, oldwin); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
533 } |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
534 else if (nchar == 'F' && lnum >= 0) |
681 | 535 { |
536 curwin->w_cursor.lnum = lnum; | |
537 check_cursor_lnum(); | |
538 beginline(BL_SOL | BL_FIX); | |
539 } | |
7 | 540 } |
541 vim_free(ptr); | |
542 } | |
543 break; | |
544 #endif | |
545 | |
546 #ifdef FEAT_FIND_ID | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
547 // Go to the first occurrence of the identifier under cursor along path in a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
548 // new window -- webb |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
549 case 'i': // Go to any match |
7 | 550 case Ctrl_I: |
551 type = FIND_ANY; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
552 // FALLTHROUGH |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
553 case 'd': // Go to definition, using 'define' |
7 | 554 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
|
555 CHECK_CMDWIN; |
7 | 556 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) |
557 break; | |
558 find_pattern_in_path(ptr, 0, len, TRUE, | |
559 Prenum == 0 ? TRUE : FALSE, type, | |
560 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM); | |
561 curwin->w_set_curswant = TRUE; | |
562 break; | |
563 #endif | |
564 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
565 // Quickfix window only: view the result under the cursor in a new split. |
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
|
566 #if defined(FEAT_QUICKFIX) |
170 | 567 case K_KENTER: |
568 case CAR: | |
569 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
|
570 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
|
571 break; |
170 | 572 #endif |
573 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
574 // CTRL-W g extended commands |
7 | 575 case 'g': |
576 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
|
577 CHECK_CMDWIN; |
7 | 578 #ifdef USE_ON_FLY_SCROLL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
579 dont_scroll = TRUE; // disallow scrolling here |
7 | 580 #endif |
581 ++no_mapping; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
582 ++allow_keys; // no mapping for xchar, but allow key codes |
7 | 583 if (xchar == NUL) |
1389 | 584 xchar = plain_vgetc(); |
7 | 585 LANGMAP_ADJUST(xchar, TRUE); |
586 --no_mapping; | |
587 --allow_keys; | |
588 #ifdef FEAT_CMDL_INFO | |
589 (void)add_to_showcmd(xchar); | |
590 #endif | |
591 switch (xchar) | |
592 { | |
593 #if defined(FEAT_QUICKFIX) | |
594 case '}': | |
595 xchar = Ctrl_RSB; | |
596 if (Prenum) | |
597 g_do_tagpreview = Prenum; | |
598 else | |
599 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
|
600 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
601 // FALLTHROUGH |
7 | 602 case ']': |
603 case Ctrl_RSB: | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
604 // keep Visual mode, can select words to use as a tag |
7 | 605 if (Prenum) |
606 postponed_split = Prenum; | |
607 else | |
608 postponed_split = -1; | |
609 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
610 // Execute the command right here, required when |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
611 // "wincmd g}" was used in a function. |
7 | 612 do_nv_ident('g', xchar); |
613 break; | |
614 | |
820 | 615 #ifdef FEAT_SEARCHPATH |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
616 case 'f': // CTRL-W gf: "gf" in a new tab page |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
617 case 'F': // CTRL-W gF: "gF" in a new tab page |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
618 cmdmod.cmod_tab = tabpage_index(curtab) + 1; |
839 | 619 nchar = xchar; |
820 | 620 goto wingotofile; |
621 #endif | |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
622 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
|
623 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
|
624 break; |
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
625 |
15937
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
626 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
|
627 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
|
628 break; |
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
629 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
630 case TAB: // CTRL-W g<Tab>: go to last used tab page |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
631 if (goto_tabpage_lastused() == FAIL) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
632 beep_flush(); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
633 break; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
634 |
7 | 635 default: |
636 beep_flush(); | |
637 break; | |
638 } | |
639 break; | |
640 | |
641 default: beep_flush(); | |
642 break; | |
643 } | |
644 } | |
645 | |
6489 | 646 /* |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
647 * Figure out the address type for ":wincmd". |
6489 | 648 */ |
649 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
650 get_wincmd_addr_type(char_u *arg, exarg_T *eap) |
6489 | 651 { |
652 switch (*arg) | |
653 { | |
654 case 'S': | |
655 case Ctrl_S: | |
656 case 's': | |
657 case Ctrl_N: | |
658 case 'n': | |
659 case 'j': | |
660 case Ctrl_J: | |
661 case 'k': | |
662 case Ctrl_K: | |
663 case 'T': | |
664 case Ctrl_R: | |
665 case 'r': | |
666 case 'R': | |
667 case 'K': | |
668 case 'J': | |
669 case '+': | |
670 case '-': | |
671 case Ctrl__: | |
672 case '_': | |
673 case '|': | |
674 case ']': | |
675 case Ctrl_RSB: | |
676 case 'g': | |
677 case Ctrl_G: | |
678 case Ctrl_V: | |
679 case 'v': | |
680 case 'h': | |
681 case Ctrl_H: | |
682 case 'l': | |
683 case Ctrl_L: | |
684 case 'H': | |
685 case 'L': | |
686 case '>': | |
687 case '<': | |
688 #if defined(FEAT_QUICKFIX) | |
689 case '}': | |
690 #endif | |
691 #ifdef FEAT_SEARCHPATH | |
692 case 'f': | |
693 case 'F': | |
694 case Ctrl_F: | |
695 #endif | |
696 #ifdef FEAT_FIND_ID | |
697 case 'i': | |
698 case Ctrl_I: | |
699 case 'd': | |
700 case Ctrl_D: | |
701 #endif | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
702 // 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
|
703 eap->addr_type = ADDR_OTHER; |
6489 | 704 break; |
705 | |
706 case Ctrl_HAT: | |
707 case '^': | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
708 // buffer number |
6489 | 709 eap->addr_type = ADDR_BUFFERS; |
710 break; | |
711 | |
712 case Ctrl_Q: | |
713 case 'q': | |
714 case Ctrl_C: | |
715 case 'c': | |
716 case Ctrl_O: | |
717 case 'o': | |
718 case Ctrl_W: | |
719 case 'w': | |
720 case 'W': | |
721 case 'x': | |
722 case Ctrl_X: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
723 // window number |
6489 | 724 eap->addr_type = ADDR_WINDOWS; |
725 break; | |
726 | |
727 #if defined(FEAT_QUICKFIX) | |
728 case Ctrl_Z: | |
729 case 'z': | |
730 case 'P': | |
731 #endif | |
732 case 't': | |
733 case Ctrl_T: | |
734 case 'b': | |
735 case Ctrl_B: | |
736 case 'p': | |
737 case Ctrl_P: | |
738 case '=': | |
739 case CAR: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
740 // no count |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
741 eap->addr_type = ADDR_NONE; |
6489 | 742 break; |
743 } | |
744 } | |
745 | |
6432 | 746 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
747 cmd_with_count( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
748 char *cmd, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
749 char_u *bufp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
750 size_t bufsize, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
751 long Prenum) |
6432 | 752 { |
753 if (Prenum > 0) | |
24216
77cb22562852
patch 8.2.2649: Vim9: some wincmd arguments cause a white space error
Bram Moolenaar <Bram@vim.org>
parents:
24108
diff
changeset
|
754 vim_snprintf((char *)bufp, bufsize, "%s %ld", cmd, Prenum); |
77cb22562852
patch 8.2.2649: Vim9: some wincmd arguments cause a white space error
Bram Moolenaar <Bram@vim.org>
parents:
24108
diff
changeset
|
755 else |
77cb22562852
patch 8.2.2649: Vim9: some wincmd arguments cause a white space error
Bram Moolenaar <Bram@vim.org>
parents:
24108
diff
changeset
|
756 STRCPY(bufp, cmd); |
6432 | 757 } |
758 | |
7 | 759 /* |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
760 * If "split_disallowed" is set given an error and return FAIL. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
761 * Otherwise return OK. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
762 */ |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
763 static int |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
764 check_split_disallowed() |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
765 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
766 if (split_disallowed > 0) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
767 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
768 emsg(_("E242: Can't split a window while closing another")); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
769 return FAIL; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
770 } |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
771 if (curwin->w_buffer->b_locked_split) |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
772 { |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
773 emsg(_(e_cannot_split_window_when_closing_buffer)); |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
774 return FAIL; |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
775 } |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
776 return OK; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
777 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
778 |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
779 /* |
7 | 780 * split the current window, implements CTRL-W s and :split |
781 * | |
782 * "size" is the height or width for the new window, 0 to use half of current | |
783 * height or width. | |
784 * | |
785 * "flags": | |
786 * WSP_ROOM: require enough room for new window | |
787 * WSP_VERT: vertical split. | |
788 * WSP_TOP: open window at the top-left of the shell (help window). | |
789 * WSP_BOT: open window at the bottom-right of the shell (quickfix window). | |
790 * WSP_HELP: creating the help window, keep layout snapshot | |
791 * | |
792 * return FAIL for failure, OK otherwise | |
793 */ | |
794 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
795 win_split(int size, int flags) |
7 | 796 { |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
797 if (ERROR_IF_ANY_POPUP_WINDOW) |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
798 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
799 |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
800 if (check_split_disallowed() == FAIL) |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
801 return FAIL; |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
802 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
803 // When the ":tab" modifier was used open a new tab page instead. |
682 | 804 if (may_open_tabpage() == OK) |
805 return OK; | |
806 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
807 // Add flags from ":vertical", ":topleft" and ":botright". |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
808 flags |= cmdmod.cmod_split; |
7 | 809 if ((flags & WSP_TOP) && (flags & WSP_BOT)) |
810 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
811 emsg(_("E442: Can't split topleft and botright at the same time")); |
7 | 812 return FAIL; |
813 } | |
814 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
815 // When creating the help window make a snapshot of the window layout. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
816 // Otherwise clear the snapshot, it's now invalid. |
7 | 817 if (flags & WSP_HELP) |
1906 | 818 make_snapshot(SNAP_HELP_IDX); |
7 | 819 else |
1906 | 820 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 821 |
822 return win_split_ins(size, flags, NULL, 0); | |
823 } | |
824 | |
825 /* | |
3263 | 826 * When "new_wp" is NULL: split the current window in two. |
827 * When "new_wp" is not NULL: insert this window at the far | |
7 | 828 * top/left/right/bottom. |
829 * return FAIL for failure, OK otherwise | |
830 */ | |
1906 | 831 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
832 win_split_ins( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
833 int size, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
834 int flags, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
835 win_T *new_wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
836 int dir) |
7 | 837 { |
3263 | 838 win_T *wp = new_wp; |
7 | 839 win_T *oldwin; |
840 int new_size = size; | |
841 int i; | |
842 int need_status = 0; | |
843 int do_equal = FALSE; | |
844 int needed; | |
845 int available; | |
846 int oldwin_height = 0; | |
847 int layout; | |
6077 | 848 frame_T *frp, *curfrp, *frp2, *prevfrp; |
7 | 849 int before; |
6052 | 850 int minheight; |
6066 | 851 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
|
852 int did_set_fraction = FALSE; |
7 | 853 |
854 if (flags & WSP_TOP) | |
855 oldwin = firstwin; | |
856 else if (flags & WSP_BOT) | |
857 oldwin = lastwin; | |
858 else | |
859 oldwin = curwin; | |
860 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
861 // 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
|
862 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0) |
7 | 863 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
864 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL) |
7 | 865 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
866 emsg(_(e_noroom)); |
7 | 867 return FAIL; |
868 } | |
869 need_status = STATUS_HEIGHT; | |
870 } | |
871 | |
1114 | 872 #ifdef FEAT_GUI |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
873 // May be needed for the scrollbars that are going to change. |
1114 | 874 if (gui.in_use) |
875 out_flush(); | |
876 #endif | |
877 | |
7 | 878 if (flags & WSP_VERT) |
879 { | |
6068 | 880 int wmw1; |
881 int minwidth; | |
882 | |
7 | 883 layout = FR_ROW; |
884 | |
885 /* | |
886 * Check if we are able to split the current window and compute its | |
887 * width. | |
888 */ | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
889 // Current window requires at least 1 space. |
6066 | 890 wmw1 = (p_wmw == 0 ? 1 : p_wmw); |
891 needed = wmw1 + 1; | |
7 | 892 if (flags & WSP_ROOM) |
6066 | 893 needed += p_wiw - wmw1; |
6077 | 894 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 895 { |
6066 | 896 minwidth = frame_minwidth(topframe, NOWIN); |
7 | 897 available = topframe->fr_width; |
6052 | 898 needed += minwidth; |
7 | 899 } |
6077 | 900 else if (p_ea) |
901 { | |
902 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); | |
903 prevfrp = oldwin->w_frame; | |
904 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
905 frp = frp->fr_parent) | |
906 { | |
907 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
|
908 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 909 if (frp2 != prevfrp) |
910 minwidth += frame_minwidth(frp2, NOWIN); | |
911 prevfrp = frp; | |
912 } | |
913 available = topframe->fr_width; | |
914 needed += minwidth; | |
915 } | |
7 | 916 else |
6052 | 917 { |
6066 | 918 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); |
919 available = oldwin->w_frame->fr_width; | |
920 needed += minwidth; | |
6052 | 921 } |
3263 | 922 if (available < needed && new_wp == NULL) |
7 | 923 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
924 emsg(_(e_noroom)); |
7 | 925 return FAIL; |
926 } | |
927 if (new_size == 0) | |
928 new_size = oldwin->w_width / 2; | |
6052 | 929 if (new_size > available - minwidth - 1) |
930 new_size = available - minwidth - 1; | |
6066 | 931 if (new_size < wmw1) |
932 new_size = wmw1; | |
7 | 933 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
934 // if it doesn't fit in the current window, need win_equal() |
7 | 935 if (oldwin->w_width - new_size - 1 < p_wmw) |
936 do_equal = TRUE; | |
779 | 937 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
938 // We don't like to take lines for the new window from a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
939 // 'winfixwidth' window. Take them from a window to the left or right |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
940 // instead, if possible. Add one for the separator. |
779 | 941 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
|
942 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin); |
1354 | 943 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
944 // Only make all windows the same width if one of them (except oldwin) |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
945 // is wider than one of the split windows. |
1354 | 946 if (!do_equal && p_ea && size == 0 && *p_ead != 'v' |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
947 && oldwin->w_frame->fr_parent != NULL) |
1354 | 948 { |
949 frp = oldwin->w_frame->fr_parent->fr_child; | |
950 while (frp != NULL) | |
951 { | |
952 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
953 && (frp->fr_win->w_width > new_size | |
954 || frp->fr_win->w_width > oldwin->w_width | |
6373 | 955 - new_size - 1)) |
1354 | 956 { |
957 do_equal = TRUE; | |
958 break; | |
959 } | |
960 frp = frp->fr_next; | |
961 } | |
962 } | |
7 | 963 } |
964 else | |
965 { | |
966 layout = FR_COL; | |
967 | |
968 /* | |
969 * Check if we are able to split the current window and compute its | |
970 * height. | |
971 */ | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
972 // 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
|
973 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin); |
6066 | 974 needed = wmh1 + STATUS_HEIGHT; |
7 | 975 if (flags & WSP_ROOM) |
6066 | 976 needed += p_wh - wmh1; |
6077 | 977 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 978 { |
6066 | 979 minheight = frame_minheight(topframe, NOWIN) + need_status; |
7 | 980 available = topframe->fr_height; |
6052 | 981 needed += minheight; |
7 | 982 } |
6077 | 983 else if (p_ea) |
984 { | |
985 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; | |
986 prevfrp = oldwin->w_frame; | |
987 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
988 frp = frp->fr_parent) | |
989 { | |
990 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
|
991 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 992 if (frp2 != prevfrp) |
993 minheight += frame_minheight(frp2, NOWIN); | |
994 prevfrp = frp; | |
995 } | |
996 available = topframe->fr_height; | |
997 needed += minheight; | |
998 } | |
7 | 999 else |
1000 { | |
6066 | 1001 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; |
1002 available = oldwin->w_frame->fr_height; | |
1003 needed += minheight; | |
7 | 1004 } |
3263 | 1005 if (available < needed && new_wp == NULL) |
7 | 1006 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
1007 emsg(_(e_noroom)); |
7 | 1008 return FAIL; |
1009 } | |
1010 oldwin_height = oldwin->w_height; | |
1011 if (need_status) | |
1012 { | |
1013 oldwin->w_status_height = STATUS_HEIGHT; | |
1014 oldwin_height -= STATUS_HEIGHT; | |
1015 } | |
1016 if (new_size == 0) | |
1017 new_size = oldwin_height / 2; | |
6052 | 1018 if (new_size > available - minheight - STATUS_HEIGHT) |
1019 new_size = available - minheight - STATUS_HEIGHT; | |
6066 | 1020 if (new_size < wmh1) |
1021 new_size = wmh1; | |
7 | 1022 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1023 // if it doesn't fit in the current window, need win_equal() |
7 | 1024 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh) |
1025 do_equal = TRUE; | |
1026 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1027 // We don't like to take lines for the new window from a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1028 // 'winfixheight' window. Take them from a window above or below |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1029 // instead, if possible. |
7 | 1030 if (oldwin->w_p_wfh) |
1031 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1032 // Set w_fraction now so that the cursor keeps the same relative |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1033 // vertical position using the old height. |
13670
3085d67d24c8
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1034 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
|
1035 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
|
1036 |
7 | 1037 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT, |
1038 oldwin); | |
1039 oldwin_height = oldwin->w_height; | |
1040 if (need_status) | |
1041 oldwin_height -= STATUS_HEIGHT; | |
1042 } | |
1354 | 1043 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1044 // Only make all windows the same height if one of them (except oldwin) |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1045 // 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
|
1046 if (!do_equal && p_ea && size == 0 && *p_ead != 'h' |
1354 | 1047 && oldwin->w_frame->fr_parent != NULL) |
1048 { | |
1049 frp = oldwin->w_frame->fr_parent->fr_child; | |
1050 while (frp != NULL) | |
1051 { | |
1052 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
1053 && (frp->fr_win->w_height > new_size | |
1054 || frp->fr_win->w_height > oldwin_height - new_size | |
1055 - STATUS_HEIGHT)) | |
1056 { | |
1057 do_equal = TRUE; | |
1058 break; | |
1059 } | |
1060 frp = frp->fr_next; | |
1061 } | |
1062 } | |
7 | 1063 } |
1064 | |
1065 /* | |
1066 * allocate new window structure and link it in the window list | |
1067 */ | |
1068 if ((flags & WSP_TOP) == 0 | |
1069 && ((flags & WSP_BOT) | |
1070 || (flags & WSP_BELOW) | |
1071 || (!(flags & WSP_ABOVE) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1072 && ( (flags & WSP_VERT) ? p_spr : p_sb)))) |
7 | 1073 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1074 // new window below/right of current one |
3263 | 1075 if (new_wp == NULL) |
1906 | 1076 wp = win_alloc(oldwin, FALSE); |
7 | 1077 else |
1078 win_append(oldwin, wp); | |
1079 } | |
1080 else | |
1081 { | |
3263 | 1082 if (new_wp == NULL) |
1906 | 1083 wp = win_alloc(oldwin->w_prev, FALSE); |
7 | 1084 else |
1085 win_append(oldwin->w_prev, wp); | |
1086 } | |
1087 | |
3263 | 1088 if (new_wp == NULL) |
7 | 1089 { |
1090 if (wp == NULL) | |
1091 return FAIL; | |
1092 | |
1906 | 1093 new_frame(wp); |
1094 if (wp->w_frame == NULL) | |
1095 { | |
1096 win_free(wp, NULL); | |
1097 return FAIL; | |
1098 } | |
1099 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1100 // make the contents of the new window the same as the current one |
1822 | 1101 win_init(wp, curwin, flags); |
7 | 1102 } |
1103 | |
1104 /* | |
1105 * Reorganise the tree of frames to insert the new window. | |
1106 */ | |
1107 if (flags & (WSP_TOP | WSP_BOT)) | |
1108 { | |
1109 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0) | |
1110 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0)) | |
1111 { | |
1112 curfrp = topframe->fr_child; | |
1113 if (flags & WSP_BOT) | |
1114 while (curfrp->fr_next != NULL) | |
1115 curfrp = curfrp->fr_next; | |
1116 } | |
1117 else | |
1118 curfrp = topframe; | |
1119 before = (flags & WSP_TOP); | |
1120 } | |
1121 else | |
1122 { | |
1123 curfrp = oldwin->w_frame; | |
1124 if (flags & WSP_BELOW) | |
1125 before = FALSE; | |
1126 else if (flags & WSP_ABOVE) | |
1127 before = TRUE; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1128 else if (flags & WSP_VERT) |
7 | 1129 before = !p_spr; |
1130 else | |
1131 before = !p_sb; | |
1132 } | |
1133 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout) | |
1134 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1135 // Need to create a new frame in the tree to make a branch. |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
1136 frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 1137 *frp = *curfrp; |
1138 curfrp->fr_layout = layout; | |
1139 frp->fr_parent = curfrp; | |
1140 frp->fr_next = NULL; | |
1141 frp->fr_prev = NULL; | |
1142 curfrp->fr_child = frp; | |
1143 curfrp->fr_win = NULL; | |
1144 curfrp = frp; | |
1145 if (frp->fr_win != NULL) | |
1146 oldwin->w_frame = frp; | |
1147 else | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1148 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 1149 frp->fr_parent = curfrp; |
1150 } | |
1151 | |
3263 | 1152 if (new_wp == NULL) |
1906 | 1153 frp = wp->w_frame; |
7 | 1154 else |
3263 | 1155 frp = new_wp->w_frame; |
7 | 1156 frp->fr_parent = curfrp->fr_parent; |
1157 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1158 // Insert the new frame at the right place in the frame list. |
7 | 1159 if (before) |
1160 frame_insert(curfrp, frp); | |
1161 else | |
1162 frame_append(curfrp, frp); | |
1163 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1164 // Set w_fraction now so that the cursor keeps the same relative |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1165 // 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
|
1166 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
|
1167 set_fraction(oldwin); |
2665 | 1168 wp->w_fraction = oldwin->w_fraction; |
1169 | |
7 | 1170 if (flags & WSP_VERT) |
1171 { | |
1172 wp->w_p_scr = curwin->w_p_scr; | |
2665 | 1173 |
7 | 1174 if (need_status) |
1175 { | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1176 win_new_height(oldwin, oldwin->w_height - 1); |
7 | 1177 oldwin->w_status_height = need_status; |
1178 } | |
1179 if (flags & (WSP_TOP | WSP_BOT)) | |
1180 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1181 // set height and row of new window to full height |
685 | 1182 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
|
1183 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
|
1184 - WINBAR_HEIGHT(wp)); |
7 | 1185 wp->w_status_height = (p_ls > 0); |
1186 } | |
1187 else | |
1188 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1189 // height and row of new window is same as current window |
7 | 1190 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
|
1191 win_new_height(wp, VISIBLE_HEIGHT(oldwin)); |
7 | 1192 wp->w_status_height = oldwin->w_status_height; |
1193 } | |
1194 frp->fr_height = curfrp->fr_height; | |
1195 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1196 // "new_size" of the current window goes to the new window, use |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1197 // one column for the vertical separator |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1198 win_new_width(wp, new_size); |
7 | 1199 if (before) |
1200 wp->w_vsep_width = 1; | |
1201 else | |
1202 { | |
1203 wp->w_vsep_width = oldwin->w_vsep_width; | |
1204 oldwin->w_vsep_width = 1; | |
1205 } | |
1206 if (flags & (WSP_TOP | WSP_BOT)) | |
1207 { | |
1208 if (flags & WSP_BOT) | |
1209 frame_add_vsep(curfrp); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1210 // Set width of neighbor frame |
7 | 1211 frame_new_width(curfrp, curfrp->fr_width |
779 | 1212 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP, |
1213 FALSE); | |
7 | 1214 } |
1215 else | |
779 | 1216 win_new_width(oldwin, oldwin->w_width - (new_size + 1)); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1217 if (before) // new window left of current one |
7 | 1218 { |
1219 wp->w_wincol = oldwin->w_wincol; | |
1220 oldwin->w_wincol += new_size + 1; | |
1221 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1222 else // new window right of current one |
7 | 1223 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1; |
1224 frame_fix_width(oldwin); | |
1225 frame_fix_width(wp); | |
1226 } | |
1227 else | |
1228 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1229 // width and column of new window is same as current window |
7 | 1230 if (flags & (WSP_TOP | WSP_BOT)) |
1231 { | |
1232 wp->w_wincol = 0; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1233 win_new_width(wp, Columns); |
7 | 1234 wp->w_vsep_width = 0; |
1235 } | |
1236 else | |
1237 { | |
1238 wp->w_wincol = oldwin->w_wincol; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1239 win_new_width(wp, oldwin->w_width); |
7 | 1240 wp->w_vsep_width = oldwin->w_vsep_width; |
1241 } | |
1242 frp->fr_width = curfrp->fr_width; | |
1243 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1244 // "new_size" of the current window goes to the new window, use |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1245 // one row for the status line |
7 | 1246 win_new_height(wp, new_size); |
1247 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
|
1248 { |
12491
7ab796b041bd
patch 8.0.1125: wrong window height when splitting window with window toolbar
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
1249 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
|
1250 + WINBAR_HEIGHT(wp) ; |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1251 |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1252 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
|
1253 new_fr_height -= STATUS_HEIGHT; |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1254 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
|
1255 } |
7 | 1256 else |
1257 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT)); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1258 if (before) // new window above current one |
7 | 1259 { |
1260 wp->w_winrow = oldwin->w_winrow; | |
1261 wp->w_status_height = STATUS_HEIGHT; | |
1262 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT; | |
1263 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1264 else // new window below current one |
7 | 1265 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1266 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
|
1267 + STATUS_HEIGHT; |
7 | 1268 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
|
1269 if (!(flags & WSP_BOT)) |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1270 oldwin->w_status_height = STATUS_HEIGHT; |
7 | 1271 } |
1272 if (flags & WSP_BOT) | |
1273 frame_add_statusline(curfrp); | |
1274 frame_fix_height(wp); | |
1275 frame_fix_height(oldwin); | |
1276 } | |
1277 | |
1278 if (flags & (WSP_TOP | WSP_BOT)) | |
1279 (void)win_comp_pos(); | |
1280 | |
22464
b74bdd85bb26
patch 8.2.1780: statusline not updated when splitting windows
Bram Moolenaar <Bram@vim.org>
parents:
22399
diff
changeset
|
1281 // Both windows need redrawing. Update all status lines, in case they |
b74bdd85bb26
patch 8.2.1780: statusline not updated when splitting windows
Bram Moolenaar <Bram@vim.org>
parents:
22399
diff
changeset
|
1282 // show something related to the window count or position. |
7 | 1283 redraw_win_later(wp, NOT_VALID); |
1284 redraw_win_later(oldwin, NOT_VALID); | |
22464
b74bdd85bb26
patch 8.2.1780: statusline not updated when splitting windows
Bram Moolenaar <Bram@vim.org>
parents:
22399
diff
changeset
|
1285 status_redraw_all(); |
7 | 1286 |
1287 if (need_status) | |
1288 { | |
1289 msg_row = Rows - 1; | |
1290 msg_col = sc_col; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1291 msg_clr_eos_force(); // Old command/ruler may still be there |
7 | 1292 comp_col(); |
1293 msg_row = Rows - 1; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1294 msg_col = 0; // put position back at start of line |
7 | 1295 } |
1296 | |
1297 /* | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1298 * equalize the window sizes. |
7 | 1299 */ |
1300 if (do_equal || dir != 0) | |
1301 win_equal(wp, TRUE, | |
1302 (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
|
1303 : dir == 'h' ? 'b' : 'v'); |
7 | 1304 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1305 // Don't change the window height/width to 'winheight' / 'winwidth' if a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1306 // size was given. |
7 | 1307 if (flags & WSP_VERT) |
1308 { | |
1309 i = p_wiw; | |
1310 if (size != 0) | |
1311 p_wiw = size; | |
1312 | |
1313 # ifdef FEAT_GUI | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1314 // When 'guioptions' includes 'L' or 'R' may have to add scrollbars. |
7 | 1315 if (gui.in_use) |
1316 gui_init_which_components(NULL); | |
1317 # endif | |
1318 } | |
1319 else | |
1320 { | |
1321 i = p_wh; | |
1322 if (size != 0) | |
1323 p_wh = size; | |
1324 } | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1325 |
6096 | 1326 #ifdef FEAT_JUMPLIST |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1327 // Keep same changelist position in new window. |
6096 | 1328 wp->w_changelistidx = oldwin->w_changelistidx; |
1329 #endif | |
1330 | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1331 /* |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1332 * make the new window the current window |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1333 */ |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1334 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE); |
7 | 1335 if (flags & WSP_VERT) |
1336 p_wiw = i; | |
1337 else | |
1338 p_wh = i; | |
1339 | |
1340 return OK; | |
1341 } | |
1342 | |
1906 | 1343 |
675 | 1344 /* |
1345 * Initialize window "newp" from window "oldp". | |
1346 * Used when splitting a window and when creating a new tab page. | |
1347 * The windows will both edit the same buffer. | |
1822 | 1348 * WSP_NEWLOC may be specified in flags to prevent the location list from |
1349 * being copied. | |
675 | 1350 */ |
1351 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1352 win_init(win_T *newp, win_T *oldp, int flags UNUSED) |
675 | 1353 { |
1354 int i; | |
1355 | |
1356 newp->w_buffer = oldp->w_buffer; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1357 #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
|
1358 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
|
1359 #endif |
675 | 1360 oldp->w_buffer->b_nwindows++; |
1361 newp->w_cursor = oldp->w_cursor; | |
1362 newp->w_valid = 0; | |
1363 newp->w_curswant = oldp->w_curswant; | |
1364 newp->w_set_curswant = oldp->w_set_curswant; | |
1365 newp->w_topline = oldp->w_topline; | |
1366 #ifdef FEAT_DIFF | |
1367 newp->w_topfill = oldp->w_topfill; | |
1368 #endif | |
1369 newp->w_leftcol = oldp->w_leftcol; | |
1370 newp->w_pcmark = oldp->w_pcmark; | |
1371 newp->w_prev_pcmark = oldp->w_prev_pcmark; | |
1372 newp->w_alt_fnum = oldp->w_alt_fnum; | |
826 | 1373 newp->w_wrow = oldp->w_wrow; |
675 | 1374 newp->w_fraction = oldp->w_fraction; |
1375 newp->w_prev_fraction_row = oldp->w_prev_fraction_row; | |
1376 #ifdef FEAT_JUMPLIST | |
1377 copy_jumplist(oldp, newp); | |
1378 #endif | |
1379 #ifdef FEAT_QUICKFIX | |
1822 | 1380 if (flags & WSP_NEWLOC) |
1381 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1382 // Don't copy the location list. |
1822 | 1383 newp->w_llist = NULL; |
1384 newp->w_llist_ref = NULL; | |
1385 } | |
1386 else | |
14844
a74786d0370c
patch 8.1.0434: copy_loclist() is too long
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
1387 copy_loclist_stack(oldp, newp); |
675 | 1388 #endif |
5584 | 1389 newp->w_localdir = (oldp->w_localdir == NULL) |
1390 ? NULL : vim_strsave(oldp->w_localdir); | |
21723
5b0796787cb2
patch 8.2.1411: when splitting a window localdir is copied but prevdir is not
Bram Moolenaar <Bram@vim.org>
parents:
21703
diff
changeset
|
1391 newp->w_prevdir = (oldp->w_prevdir == NULL) |
5b0796787cb2
patch 8.2.1411: when splitting a window localdir is copied but prevdir is not
Bram Moolenaar <Bram@vim.org>
parents:
21703
diff
changeset
|
1392 ? NULL : vim_strsave(oldp->w_prevdir); |
675 | 1393 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1394 // copy tagstack and folds |
675 | 1395 for (i = 0; i < oldp->w_tagstacklen; i++) |
1396 { | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1397 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
|
1398 *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
|
1399 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
|
1400 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
|
1401 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
|
1402 tag->user_data = vim_strsave(tag->user_data); |
675 | 1403 } |
1404 newp->w_tagstackidx = oldp->w_tagstackidx; | |
1405 newp->w_tagstacklen = oldp->w_tagstacklen; | |
3068 | 1406 #ifdef FEAT_FOLDING |
675 | 1407 copyFoldingState(oldp, newp); |
3068 | 1408 #endif |
1906 | 1409 |
1410 win_init_some(newp, oldp); | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1411 |
3068 | 1412 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1413 check_colorcolumn(newp); |
3068 | 1414 #endif |
1906 | 1415 } |
1416 | |
1417 /* | |
6222 | 1418 * Initialize window "newp" from window "old". |
1906 | 1419 * Only the essential things are copied. |
1420 */ | |
1421 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1422 win_init_some(win_T *newp, win_T *oldp) |
1906 | 1423 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1424 // Use the same argument list. |
1906 | 1425 newp->w_alist = oldp->w_alist; |
1426 ++newp->w_alist->al_refcount; | |
1427 newp->w_arg_idx = oldp->w_arg_idx; | |
1428 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1429 // copy options from existing window |
1906 | 1430 win_copy_options(oldp, newp); |
675 | 1431 } |
1432 | |
16902
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1433 /* |
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1434 * Return TRUE if "win" is a global popup or a popup in the current tab page. |
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1435 */ |
17051
221d4b82bc0b
patch 8.1.1525: cannot move a popup window with the mouse
Bram Moolenaar <Bram@vim.org>
parents:
17043
diff
changeset
|
1436 int |
16780
491c01280a5d
patch 8.1.1392: build failure in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1437 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
|
1438 { |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1439 #ifdef FEAT_PROP_POPUP |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1440 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1441 |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1442 FOR_ALL_POPUPWINS(wp) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1443 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1444 return TRUE; |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1445 FOR_ALL_POPUPWINS_IN_TAB(curtab, wp) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1446 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1447 return TRUE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1448 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1449 return FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1450 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
1451 |
7 | 1452 /* |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1453 * Check if "win" is a pointer to an existing window in the current tab page. |
7 | 1454 */ |
1455 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1456 win_valid(win_T *win) |
7 | 1457 { |
1458 win_T *wp; | |
1459 | |
1460 if (win == NULL) | |
1461 return FALSE; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1462 FOR_ALL_WINDOWS(wp) |
7 | 1463 if (wp == win) |
1464 return TRUE; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1465 return win_valid_popup(win); |
7 | 1466 } |
1467 | |
1468 /* | |
22838
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1469 * Find window "id" in the current tab page. |
22900
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1470 * Also find popup windows. |
22838
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1471 * Return NULL if not found. |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1472 */ |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1473 win_T * |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1474 win_find_by_id(int id) |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1475 { |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1476 win_T *wp; |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1477 |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1478 FOR_ALL_WINDOWS(wp) |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1479 if (wp->w_id == id) |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1480 return wp; |
22900
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1481 #ifdef FEAT_PROP_POPUP |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1482 FOR_ALL_POPUPWINS(wp) |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1483 if (wp->w_id == id) |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1484 return wp; |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1485 FOR_ALL_POPUPWINS_IN_TAB(curtab, wp) |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1486 if (wp->w_id == id) |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1487 return wp; |
2c1520981e63
patch 8.2.1997: window changes when using bufload() while in a terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22838
diff
changeset
|
1488 #endif |
22838
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1489 return NULL; |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1490 } |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1491 |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1492 /* |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1493 * 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
|
1494 */ |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1495 int |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1496 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
|
1497 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1498 win_T *wp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1499 tabpage_T *tp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1500 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1501 if (win == NULL) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1502 return FALSE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1503 FOR_ALL_TABPAGES(tp) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1504 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1505 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
|
1506 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1507 if (wp == win) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1508 return TRUE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1509 } |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1510 #ifdef FEAT_PROP_POPUP |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1511 FOR_ALL_POPUPWINS_IN_TAB(tp, wp) |
16902
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1512 if (wp == win) |
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1513 return TRUE; |
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1514 #endif |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1515 } |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1516 return win_valid_popup(win); |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1517 } |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1518 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1519 /* |
7 | 1520 * Return the number of windows. |
1521 */ | |
1522 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1523 win_count(void) |
7 | 1524 { |
1525 win_T *wp; | |
1526 int count = 0; | |
1527 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1528 FOR_ALL_WINDOWS(wp) |
7 | 1529 ++count; |
1530 return count; | |
1531 } | |
1532 | |
1533 /* | |
1534 * Make "count" windows on the screen. | |
1535 * Return actual number of windows on the screen. | |
1536 * Must be called when there is just one window, filling the whole screen | |
1537 * (excluding the command line). | |
1538 */ | |
1539 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1540 make_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1541 int count, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1542 int vertical UNUSED) // split windows vertically if TRUE |
7 | 1543 { |
1544 int maxcount; | |
1545 int todo; | |
1546 | |
1547 if (vertical) | |
1548 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1549 // Each windows needs at least 'winminwidth' lines and a separator |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1550 // column. |
7 | 1551 maxcount = (curwin->w_width + curwin->w_vsep_width |
1552 - (p_wiw - p_wmw)) / (p_wmw + 1); | |
1553 } | |
1554 else | |
1555 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1556 // 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
|
1557 maxcount = (VISIBLE_HEIGHT(curwin) + curwin->w_status_height |
7 | 1558 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT); |
1559 } | |
1560 | |
1561 if (maxcount < 2) | |
1562 maxcount = 2; | |
1563 if (count > maxcount) | |
1564 count = maxcount; | |
1565 | |
1566 /* | |
1567 * add status line now, otherwise first window will be too big | |
1568 */ | |
1569 if (count > 1) | |
1570 last_status(TRUE); | |
1571 | |
1572 /* | |
1573 * Don't execute autocommands while creating the windows. Must do that | |
1574 * when putting the buffers in the windows. | |
1575 */ | |
1410 | 1576 block_autocmds(); |
7 | 1577 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1578 // todo is number of windows left to create |
7 | 1579 for (todo = count - 1; todo > 0; --todo) |
1580 if (vertical) | |
1581 { | |
1582 if (win_split(curwin->w_width - (curwin->w_width - todo) | |
1583 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL) | |
1584 break; | |
1585 } | |
1586 else | |
1587 { | |
1588 if (win_split(curwin->w_height - (curwin->w_height - todo | |
1589 * STATUS_HEIGHT) / (todo + 1) | |
1590 - STATUS_HEIGHT, WSP_ABOVE) == FAIL) | |
1591 break; | |
1592 } | |
1593 | |
1410 | 1594 unblock_autocmds(); |
7 | 1595 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1596 // return actual number of windows |
7 | 1597 return (count - todo); |
1598 } | |
1599 | |
1600 /* | |
1601 * Exchange current and next window | |
1602 */ | |
1603 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1604 win_exchange(long Prenum) |
7 | 1605 { |
1606 frame_T *frp; | |
1607 frame_T *frp2; | |
1608 win_T *wp; | |
1609 win_T *wp2; | |
1610 int temp; | |
1611 | |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
1612 if (ERROR_IF_ANY_POPUP_WINDOW) |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
1613 return; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
1614 if (ONE_WINDOW) // just one window |
7 | 1615 { |
1616 beep_flush(); | |
1617 return; | |
1618 } | |
1619 | |
1620 #ifdef FEAT_GUI | |
1621 need_mouse_correct = TRUE; | |
1622 #endif | |
1623 | |
1624 /* | |
1625 * find window to exchange with | |
1626 */ | |
1627 if (Prenum) | |
1628 { | |
1629 frp = curwin->w_frame->fr_parent->fr_child; | |
1630 while (frp != NULL && --Prenum > 0) | |
1631 frp = frp->fr_next; | |
1632 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1633 else if (curwin->w_frame->fr_next != NULL) // Swap with next |
7 | 1634 frp = curwin->w_frame->fr_next; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1635 else // Swap last window in row/col with previous |
7 | 1636 frp = curwin->w_frame->fr_prev; |
1637 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1638 // We can only exchange a window with another window, not with a frame |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1639 // containing windows. |
7 | 1640 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin) |
1641 return; | |
1642 wp = frp->fr_win; | |
1643 | |
1644 /* | |
1645 * 1. remove curwin from the list. Remember after which window it was in wp2 | |
1646 * 2. insert curwin before wp in the list | |
1647 * if wp != wp2 | |
1648 * 3. remove wp from the list | |
1649 * 4. insert wp after wp2 | |
1650 * 5. exchange the status line height and vsep width. | |
1651 */ | |
1652 wp2 = curwin->w_prev; | |
1653 frp2 = curwin->w_frame->fr_prev; | |
1654 if (wp->w_prev != curwin) | |
1655 { | |
671 | 1656 win_remove(curwin, NULL); |
7 | 1657 frame_remove(curwin->w_frame); |
1658 win_append(wp->w_prev, curwin); | |
1659 frame_insert(frp, curwin->w_frame); | |
1660 } | |
1661 if (wp != wp2) | |
1662 { | |
671 | 1663 win_remove(wp, NULL); |
7 | 1664 frame_remove(wp->w_frame); |
1665 win_append(wp2, wp); | |
1666 if (frp2 == NULL) | |
1667 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame); | |
1668 else | |
1669 frame_append(frp2, wp->w_frame); | |
1670 } | |
1671 temp = curwin->w_status_height; | |
1672 curwin->w_status_height = wp->w_status_height; | |
1673 wp->w_status_height = temp; | |
1674 temp = curwin->w_vsep_width; | |
1675 curwin->w_vsep_width = wp->w_vsep_width; | |
1676 wp->w_vsep_width = temp; | |
1677 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1678 // If the windows are not in the same frame, exchange the sizes to avoid |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1679 // messing up the window layout. Otherwise fix the frame sizes. |
7 | 1680 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent) |
1681 { | |
1682 temp = curwin->w_height; | |
1683 curwin->w_height = wp->w_height; | |
1684 wp->w_height = temp; | |
1685 temp = curwin->w_width; | |
1686 curwin->w_width = wp->w_width; | |
1687 wp->w_width = temp; | |
1688 } | |
1689 else | |
1690 { | |
1691 frame_fix_height(curwin); | |
1692 frame_fix_height(wp); | |
1693 frame_fix_width(curwin); | |
1694 frame_fix_width(wp); | |
1695 } | |
1696 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1697 (void)win_comp_pos(); // recompute window positions |
7 | 1698 |
1699 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
|
1700 redraw_all_later(NOT_VALID); |
7 | 1701 } |
1702 | |
1703 /* | |
1704 * rotate windows: if upwards TRUE the second window becomes the first one | |
1705 * if upwards FALSE the first window becomes the second one | |
1706 */ | |
1707 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1708 win_rotate(int upwards, int count) |
7 | 1709 { |
1710 win_T *wp1; | |
1711 win_T *wp2; | |
1712 frame_T *frp; | |
1713 int n; | |
1714 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1715 if (ONE_WINDOW) // nothing to do |
7 | 1716 { |
1717 beep_flush(); | |
1718 return; | |
1719 } | |
1720 | |
1721 #ifdef FEAT_GUI | |
1722 need_mouse_correct = TRUE; | |
1723 #endif | |
1724 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1725 // 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
|
1726 FOR_ALL_FRAMES(frp, curwin->w_frame->fr_parent->fr_child) |
7 | 1727 if (frp->fr_win == NULL) |
1728 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
1729 emsg(_("E443: Cannot rotate when another window is split")); |
7 | 1730 return; |
1731 } | |
1732 | |
1733 while (count--) | |
1734 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1735 if (upwards) // first window becomes last window |
7 | 1736 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1737 // remove first window/frame from the list |
7 | 1738 frp = curwin->w_frame->fr_parent->fr_child; |
1739 wp1 = frp->fr_win; | |
671 | 1740 win_remove(wp1, NULL); |
7 | 1741 frame_remove(frp); |
1742 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1743 // find last frame and append removed window/frame after it |
7 | 1744 for ( ; frp->fr_next != NULL; frp = frp->fr_next) |
1745 ; | |
1746 win_append(frp->fr_win, wp1); | |
1747 frame_append(frp, wp1->w_frame); | |
1748 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1749 wp2 = frp->fr_win; // previously last window |
7 | 1750 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1751 else // last window becomes first window |
7 | 1752 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1753 // find last window/frame in the list and remove it |
7 | 1754 for (frp = curwin->w_frame; frp->fr_next != NULL; |
1755 frp = frp->fr_next) | |
1756 ; | |
1757 wp1 = frp->fr_win; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1758 wp2 = wp1->w_prev; // will become last window |
671 | 1759 win_remove(wp1, NULL); |
7 | 1760 frame_remove(frp); |
1761 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1762 // append the removed window/frame before the first in the list |
7 | 1763 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1); |
1764 frame_insert(frp->fr_parent->fr_child, frp); | |
1765 } | |
1766 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1767 // exchange status height and vsep width of old and new last window |
7 | 1768 n = wp2->w_status_height; |
1769 wp2->w_status_height = wp1->w_status_height; | |
1770 wp1->w_status_height = n; | |
1771 frame_fix_height(wp1); | |
1772 frame_fix_height(wp2); | |
1773 n = wp2->w_vsep_width; | |
1774 wp2->w_vsep_width = wp1->w_vsep_width; | |
1775 wp1->w_vsep_width = n; | |
1776 frame_fix_width(wp1); | |
1777 frame_fix_width(wp2); | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1778 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1779 // recompute w_winrow and w_wincol for all windows |
7 | 1780 (void)win_comp_pos(); |
1781 } | |
1782 | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1783 redraw_all_later(NOT_VALID); |
7 | 1784 } |
1785 | |
1786 /* | |
1787 * Move the current window to the very top/bottom/left/right of the screen. | |
1788 */ | |
1789 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1790 win_totop(int size, int flags) |
7 | 1791 { |
1792 int dir; | |
1793 int height = curwin->w_height; | |
1794 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1795 if (ONE_WINDOW) |
7 | 1796 { |
1797 beep_flush(); | |
1798 return; | |
1799 } | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1800 if (check_split_disallowed() == FAIL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1801 return; |
7 | 1802 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1803 // Remove the window and frame from the tree of frames. |
671 | 1804 (void)winframe_remove(curwin, &dir, NULL); |
1805 win_remove(curwin, NULL); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1806 last_status(FALSE); // may need to remove last status line |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1807 (void)win_comp_pos(); // recompute window positions |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1808 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1809 // Split a window on the desired side and put the window there. |
7 | 1810 (void)win_split_ins(size, flags, curwin, dir); |
1811 if (!(flags & WSP_VERT)) | |
1812 { | |
1813 win_setheight(height); | |
1814 if (p_ea) | |
1815 win_equal(curwin, TRUE, 'v'); | |
1816 } | |
1817 | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1818 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1819 // When 'guioptions' includes 'L' or 'R' may have to remove or add |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1820 // scrollbars. Have to update them anyway. |
1906 | 1821 gui_may_update_scrollbars(); |
1822 #endif | |
7 | 1823 } |
1824 | |
1825 /* | |
1826 * Move window "win1" to below/right of "win2" and make "win1" the current | |
1827 * window. Only works within the same frame! | |
1828 */ | |
1829 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1830 win_move_after(win_T *win1, win_T *win2) |
7 | 1831 { |
1832 int height; | |
1833 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1834 // check if the arguments are reasonable |
7 | 1835 if (win1 == win2) |
1836 return; | |
1837 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1838 // check if there is something to do |
7 | 1839 if (win2->w_next != win1) |
1840 { | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1841 if (win1->w_frame->fr_parent != win2->w_frame->fr_parent) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1842 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1843 iemsg("INTERNAL: trying to move a window into another frame"); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1844 return; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1845 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1846 |
21020
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
21016
diff
changeset
|
1847 // may need to move the status line/vertical separator of the last |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
21016
diff
changeset
|
1848 // window |
7 | 1849 if (win1 == lastwin) |
1850 { | |
1851 height = win1->w_prev->w_status_height; | |
1852 win1->w_prev->w_status_height = win1->w_status_height; | |
1853 win1->w_status_height = height; | |
1070 | 1854 if (win1->w_prev->w_vsep_width == 1) |
1855 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1856 // Remove the vertical separator from the last-but-one window, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1857 // add it to the last window. Adjust the frame widths. |
1070 | 1858 win1->w_prev->w_vsep_width = 0; |
1859 win1->w_prev->w_frame->fr_width -= 1; | |
1860 win1->w_vsep_width = 1; | |
1861 win1->w_frame->fr_width += 1; | |
1862 } | |
7 | 1863 } |
1864 else if (win2 == lastwin) | |
1865 { | |
1866 height = win1->w_status_height; | |
1867 win1->w_status_height = win2->w_status_height; | |
1868 win2->w_status_height = height; | |
1070 | 1869 if (win1->w_vsep_width == 1) |
1870 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1871 // Remove the vertical separator from win1, add it to the last |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1872 // window, win2. Adjust the frame widths. |
1070 | 1873 win2->w_vsep_width = 1; |
1874 win2->w_frame->fr_width += 1; | |
1875 win1->w_vsep_width = 0; | |
1876 win1->w_frame->fr_width -= 1; | |
1877 } | |
7 | 1878 } |
671 | 1879 win_remove(win1, NULL); |
7 | 1880 frame_remove(win1->w_frame); |
1881 win_append(win2, win1); | |
1882 frame_append(win2->w_frame, win1->w_frame); | |
1883 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1884 (void)win_comp_pos(); // recompute w_winrow for all windows |
7 | 1885 redraw_later(NOT_VALID); |
1886 } | |
1887 win_enter(win1, FALSE); | |
1888 } | |
1889 | |
1890 /* | |
1891 * Make all windows the same height. | |
1892 * 'next_curwin' will soon be the current window, make sure it has enough | |
1893 * rows. | |
1894 */ | |
1895 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1896 win_equal( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1897 win_T *next_curwin, // pointer to current window to be or NULL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1898 int current, // do only frame with current window |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1899 int dir) // 'v' for vertically, 'h' for horizontally, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1900 // 'b' for both, 0 for using p_ead |
7 | 1901 { |
1902 if (dir == 0) | |
1903 dir = *p_ead; | |
1904 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current, | |
685 | 1905 topframe, dir, 0, tabline_height(), |
667 | 1906 (int)Columns, topframe->fr_height); |
7 | 1907 } |
1908 | |
1909 /* | |
1910 * Set a frame to a new position and height, spreading the available room | |
1911 * equally over contained frames. | |
1912 * The window "next_curwin" (if not NULL) should at least get the size from | |
1913 * 'winheight' and 'winwidth' if possible. | |
1914 */ | |
1915 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1916 win_equal_rec( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1917 win_T *next_curwin, // pointer to current window to be or NULL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1918 int current, // do only frame with current window |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1919 frame_T *topfr, // frame to set size off |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1920 int dir, // 'v', 'h' or 'b', see win_equal() |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1921 int col, // horizontal position for frame |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1922 int row, // vertical position for frame |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1923 int width, // new width of frame |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1924 int height) // new height of frame |
7 | 1925 { |
1926 int n, m; | |
1927 int extra_sep = 0; | |
1928 int wincount, totwincount = 0; | |
1929 frame_T *fr; | |
1930 int next_curwin_size = 0; | |
1931 int room = 0; | |
1932 int new_size; | |
1933 int has_next_curwin = 0; | |
1934 int hnc; | |
1935 | |
1936 if (topfr->fr_layout == FR_LEAF) | |
1937 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1938 // Set the width/height of this frame. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1939 // Redraw when size or position changes |
7 | 1940 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row |
1941 || topfr->fr_width != width || topfr->fr_win->w_wincol != col | |
1942 ) | |
1943 { | |
1944 topfr->fr_win->w_winrow = row; | |
1945 frame_new_height(topfr, height, FALSE, FALSE); | |
1946 topfr->fr_win->w_wincol = col; | |
779 | 1947 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
|
1948 redraw_all_later(NOT_VALID); |
7 | 1949 } |
1950 } | |
1951 else if (topfr->fr_layout == FR_ROW) | |
1952 { | |
1953 topfr->fr_width = width; | |
1954 topfr->fr_height = height; | |
1955 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1956 if (dir != 'v') // equalize frame widths |
7 | 1957 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1958 // Compute the maximum number of windows horizontally in this |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1959 // frame. |
7 | 1960 n = frame_minwidth(topfr, NOWIN); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1961 // add one for the rightmost window, it doesn't have a separator |
7 | 1962 if (col + width == Columns) |
1963 extra_sep = 1; | |
1964 else | |
1965 extra_sep = 0; | |
1966 totwincount = (n + extra_sep) / (p_wmw + 1); | |
779 | 1967 has_next_curwin = frame_has_win(topfr, next_curwin); |
1968 | |
1969 /* | |
1970 * Compute width for "next_curwin" window and room available for | |
1971 * other windows. | |
1972 * "m" is the minimal width when counting p_wiw for "next_curwin". | |
1973 */ | |
7 | 1974 m = frame_minwidth(topfr, next_curwin); |
1975 room = width - m; | |
1976 if (room < 0) | |
1977 { | |
1978 next_curwin_size = p_wiw + room; | |
1979 room = 0; | |
1980 } | |
1981 else | |
1982 { | |
779 | 1983 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
|
1984 FOR_ALL_FRAMES(fr, topfr->fr_child) |
779 | 1985 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1986 // If 'winfixwidth' set keep the window width if |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1987 // possible. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1988 // Watch out for this window being the next_curwin. |
779 | 1989 if (frame_fixed_width(fr)) |
1990 { | |
1991 n = frame_minwidth(fr, NOWIN); | |
1992 new_size = fr->fr_width; | |
1993 if (frame_has_win(fr, next_curwin)) | |
1994 { | |
1995 room += p_wiw - p_wmw; | |
1996 next_curwin_size = 0; | |
1997 if (new_size < p_wiw) | |
1998 new_size = p_wiw; | |
1999 } | |
2000 else | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2001 // These windows don't use up room. |
779 | 2002 totwincount -= (n + (fr->fr_next == NULL |
2003 ? extra_sep : 0)) / (p_wmw + 1); | |
2004 room -= new_size - n; | |
2005 if (room < 0) | |
2006 { | |
2007 new_size += room; | |
2008 room = 0; | |
2009 } | |
2010 fr->fr_newwidth = new_size; | |
2011 } | |
2012 } | |
2013 if (next_curwin_size == -1) | |
2014 { | |
2015 if (!has_next_curwin) | |
2016 next_curwin_size = 0; | |
2017 else if (totwincount > 1 | |
2018 && (room + (totwincount - 2)) | |
2019 / (totwincount - 1) > p_wiw) | |
2020 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2021 // Can make all windows wider than 'winwidth', spread |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2022 // the room equally. |
834 | 2023 next_curwin_size = (room + p_wiw |
2024 + (totwincount - 1) * p_wmw | |
2025 + (totwincount - 1)) / totwincount; | |
779 | 2026 room -= next_curwin_size - p_wiw; |
2027 } | |
2028 else | |
2029 next_curwin_size = p_wiw; | |
2030 } | |
7 | 2031 } |
779 | 2032 |
2033 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2034 --totwincount; // don't count curwin |
7 | 2035 } |
2036 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2037 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2038 { |
2039 wincount = 1; | |
2040 if (fr->fr_next == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2041 // last frame gets all that remains (avoid roundoff error) |
7 | 2042 new_size = width; |
2043 else if (dir == 'v') | |
2044 new_size = fr->fr_width; | |
779 | 2045 else if (frame_fixed_width(fr)) |
2046 { | |
2047 new_size = fr->fr_newwidth; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2048 wincount = 0; // doesn't count as a sizeable window |
779 | 2049 } |
7 | 2050 else |
2051 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2052 // Compute the maximum number of windows horiz. in "fr". |
7 | 2053 n = frame_minwidth(fr, NOWIN); |
2054 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2055 / (p_wmw + 1); | |
2056 m = frame_minwidth(fr, next_curwin); | |
779 | 2057 if (has_next_curwin) |
2058 hnc = frame_has_win(fr, next_curwin); | |
2059 else | |
2060 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2061 if (hnc) // don't count next_curwin |
7 | 2062 --wincount; |
779 | 2063 if (totwincount == 0) |
2064 new_size = room; | |
2065 else | |
2066 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
7 | 2067 / totwincount; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2068 if (hnc) // add next_curwin size |
7 | 2069 { |
2070 next_curwin_size -= p_wiw - (m - n); | |
2071 new_size += next_curwin_size; | |
779 | 2072 room -= new_size - next_curwin_size; |
7 | 2073 } |
779 | 2074 else |
2075 room -= new_size; | |
2076 new_size += n; | |
7 | 2077 } |
2078 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2079 // Skip frame that is full width when splitting or closing a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2080 // window, unless equalizing all frames. |
7 | 2081 if (!current || dir != 'v' || topfr->fr_parent != NULL |
2082 || (new_size != fr->fr_width) | |
2083 || frame_has_win(fr, next_curwin)) | |
2084 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
779 | 2085 new_size, height); |
2086 col += new_size; | |
2087 width -= new_size; | |
7 | 2088 totwincount -= wincount; |
2089 } | |
2090 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2091 else // topfr->fr_layout == FR_COL |
7 | 2092 { |
2093 topfr->fr_width = width; | |
2094 topfr->fr_height = height; | |
2095 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2096 if (dir != 'h') // equalize frame heights |
7 | 2097 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2098 // Compute maximum number of windows vertically in this frame. |
7 | 2099 n = frame_minheight(topfr, NOWIN); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2100 // add one for the bottom window if it doesn't have a statusline |
7 | 2101 if (row + height == cmdline_row && p_ls == 0) |
2102 extra_sep = 1; | |
2103 else | |
2104 extra_sep = 0; | |
2105 totwincount = (n + extra_sep) / (p_wmh + 1); | |
2106 has_next_curwin = frame_has_win(topfr, next_curwin); | |
2107 | |
2108 /* | |
2109 * Compute height for "next_curwin" window and room available for | |
2110 * other windows. | |
2111 * "m" is the minimal height when counting p_wh for "next_curwin". | |
2112 */ | |
2113 m = frame_minheight(topfr, next_curwin); | |
2114 room = height - m; | |
2115 if (room < 0) | |
2116 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2117 // The room is less then 'winheight', use all space for the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2118 // current window. |
7 | 2119 next_curwin_size = p_wh + room; |
2120 room = 0; | |
2121 } | |
2122 else | |
2123 { | |
2124 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
|
2125 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2126 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2127 // If 'winfixheight' set keep the window height if |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2128 // possible. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2129 // Watch out for this window being the next_curwin. |
7 | 2130 if (frame_fixed_height(fr)) |
2131 { | |
2132 n = frame_minheight(fr, NOWIN); | |
2133 new_size = fr->fr_height; | |
2134 if (frame_has_win(fr, next_curwin)) | |
2135 { | |
2136 room += p_wh - p_wmh; | |
2137 next_curwin_size = 0; | |
2138 if (new_size < p_wh) | |
2139 new_size = p_wh; | |
2140 } | |
2141 else | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2142 // These windows don't use up room. |
7 | 2143 totwincount -= (n + (fr->fr_next == NULL |
2144 ? extra_sep : 0)) / (p_wmh + 1); | |
2145 room -= new_size - n; | |
2146 if (room < 0) | |
2147 { | |
2148 new_size += room; | |
2149 room = 0; | |
2150 } | |
2151 fr->fr_newheight = new_size; | |
2152 } | |
2153 } | |
2154 if (next_curwin_size == -1) | |
2155 { | |
2156 if (!has_next_curwin) | |
2157 next_curwin_size = 0; | |
2158 else if (totwincount > 1 | |
2159 && (room + (totwincount - 2)) | |
2160 / (totwincount - 1) > p_wh) | |
2161 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2162 // can make all windows higher than 'winheight', |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2163 // spread the room equally. |
834 | 2164 next_curwin_size = (room + p_wh |
2165 + (totwincount - 1) * p_wmh | |
7 | 2166 + (totwincount - 1)) / totwincount; |
2167 room -= next_curwin_size - p_wh; | |
2168 } | |
2169 else | |
2170 next_curwin_size = p_wh; | |
2171 } | |
2172 } | |
2173 | |
2174 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2175 --totwincount; // don't count curwin |
7 | 2176 } |
2177 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2178 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2179 { |
2180 wincount = 1; | |
2181 if (fr->fr_next == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2182 // last frame gets all that remains (avoid roundoff error) |
7 | 2183 new_size = height; |
2184 else if (dir == 'h') | |
2185 new_size = fr->fr_height; | |
2186 else if (frame_fixed_height(fr)) | |
2187 { | |
2188 new_size = fr->fr_newheight; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2189 wincount = 0; // doesn't count as a sizeable window |
7 | 2190 } |
2191 else | |
2192 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2193 // Compute the maximum number of windows vert. in "fr". |
7 | 2194 n = frame_minheight(fr, NOWIN); |
2195 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2196 / (p_wmh + 1); | |
2197 m = frame_minheight(fr, next_curwin); | |
2198 if (has_next_curwin) | |
2199 hnc = frame_has_win(fr, next_curwin); | |
2200 else | |
2201 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2202 if (hnc) // don't count next_curwin |
7 | 2203 --wincount; |
2204 if (totwincount == 0) | |
2205 new_size = room; | |
2206 else | |
2207 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
2208 / totwincount; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2209 if (hnc) // add next_curwin size |
7 | 2210 { |
2211 next_curwin_size -= p_wh - (m - n); | |
2212 new_size += next_curwin_size; | |
2213 room -= new_size - next_curwin_size; | |
2214 } | |
2215 else | |
2216 room -= new_size; | |
2217 new_size += n; | |
2218 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2219 // Skip frame that is full width when splitting or closing a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2220 // window, unless equalizing all frames. |
7 | 2221 if (!current || dir != 'h' || topfr->fr_parent != NULL |
2222 || (new_size != fr->fr_height) | |
2223 || frame_has_win(fr, next_curwin)) | |
2224 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
2225 width, new_size); | |
2226 row += new_size; | |
2227 height -= new_size; | |
2228 totwincount -= wincount; | |
2229 } | |
2230 } | |
2231 } | |
2232 | |
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
|
2233 #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
|
2234 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
|
2235 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
|
2236 { |
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
|
2237 // 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
|
2238 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
|
2239 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
|
2240 |
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
|
2241 // 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
|
2242 // 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
|
2243 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
|
2244 if (restart_edit != 0 && mode_displayed) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2245 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
|
2246 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
|
2247 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2248 // 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
|
2249 // 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
|
2250 // 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
|
2251 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
|
2252 { |
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
|
2253 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
|
2254 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
|
2255 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
|
2256 } |
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
|
2257 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2258 |
22470
f7471450243c
patch 8.2.1783: try-catch test fails
Bram Moolenaar <Bram@vim.org>
parents:
22464
diff
changeset
|
2259 void |
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
|
2260 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
|
2261 { |
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
|
2262 // 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
|
2263 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
|
2264 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
|
2265 |
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
|
2266 // 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
|
2267 // 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
|
2268 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
|
2269 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
|
2270 |
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
|
2271 // 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
|
2272 // 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
|
2273 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
|
2274 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2275 #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
|
2276 |
7 | 2277 /* |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2278 * Close all windows for buffer "buf". |
7 | 2279 */ |
2280 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2281 close_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2282 buf_T *buf, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2283 int keep_curwin) // don't close "curwin" |
7 | 2284 { |
671 | 2285 win_T *wp; |
2286 tabpage_T *tp, *nexttp; | |
685 | 2287 int h = tabline_height(); |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2288 int count = tabpage_index(NULL); |
7 | 2289 |
2290 ++RedrawingDisabled; | |
671 | 2291 |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
2292 for (wp = firstwin; wp != NULL && !ONE_WINDOW; ) |
7 | 2293 { |
3570 | 2294 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
|
2295 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
7 | 2296 { |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2297 if (win_close(wp, FALSE) == FAIL) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2298 // If closing the window fails give up, to avoid looping |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2299 // forever. |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2300 break; |
671 | 2301 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2302 // Start all over, autocommands may change the window layout. |
671 | 2303 wp = firstwin; |
7 | 2304 } |
2305 else | |
671 | 2306 wp = wp->w_next; |
7 | 2307 } |
671 | 2308 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2309 // Also check windows in other tab pages. |
671 | 2310 for (tp = first_tabpage; tp != NULL; tp = nexttp) |
2311 { | |
2312 nexttp = tp->tp_next; | |
672 | 2313 if (tp != curtab) |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
2314 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
3570 | 2315 if (wp->w_buffer == buf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2316 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
671 | 2317 { |
2318 win_close_othertab(wp, FALSE, tp); | |
2319 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2320 // Start all over, the tab page may be closed and |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2321 // autocommands may change the window layout. |
671 | 2322 nexttp = first_tabpage; |
2323 break; | |
2324 } | |
2325 } | |
2326 | |
7 | 2327 --RedrawingDisabled; |
671 | 2328 |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2329 if (count != tabpage_index(NULL)) |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2330 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
|
2331 |
4305 | 2332 redraw_tabline = TRUE; |
685 | 2333 if (h != tabline_height()) |
671 | 2334 shell_new_rows(); |
7 | 2335 } |
2336 | |
2337 /* | |
1906 | 2338 * Return TRUE if the current window is the only window that exists (ignoring |
2339 * "aucmd_win"). | |
672 | 2340 * Returns FALSE if there is a window, possibly in another tab page. |
667 | 2341 */ |
672 | 2342 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2343 last_window(void) |
667 | 2344 { |
1906 | 2345 return (one_window() && first_tabpage->tp_next == NULL); |
2346 } | |
2347 | |
2348 /* | |
2349 * Return TRUE if there is only one window other than "aucmd_win" in the | |
2350 * current tab page. | |
2351 */ | |
3365 | 2352 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2353 one_window(void) |
1906 | 2354 { |
2355 win_T *wp; | |
2356 int seen_one = FALSE; | |
2357 | |
2358 FOR_ALL_WINDOWS(wp) | |
2359 { | |
2360 if (wp != aucmd_win) | |
2361 { | |
2362 if (seen_one) | |
2363 return FALSE; | |
2364 seen_one = TRUE; | |
2365 } | |
2366 } | |
2367 return TRUE; | |
667 | 2368 } |
2369 | |
2370 /* | |
3535 | 2371 * Close the possibly last window in a tab page. |
2372 * Returns TRUE when the window was closed already. | |
2373 */ | |
2374 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2375 close_last_window_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2376 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2377 int free_buf, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2378 tabpage_T *prev_curtab) |
3535 | 2379 { |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2380 if (ONE_WINDOW) |
3535 | 2381 { |
4354 | 2382 buf_T *old_curbuf = curbuf; |
2383 | |
3535 | 2384 /* |
2385 * Closing the last window in a tab page. First go to another tab | |
2386 * page and then close the window and the tab page. This avoids that | |
2387 * curwin and curtab are invalid while we are freeing memory, they may | |
2388 * be used in GUI events. | |
3582 | 2389 * Don't trigger autocommands yet, they may use wrong values, so do |
2390 * that below. | |
3535 | 2391 */ |
4354 | 2392 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE); |
3535 | 2393 redraw_tabline = TRUE; |
2394 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2395 // Safety check: Autocommands may have closed the window when jumping |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2396 // to the other tab page. |
3535 | 2397 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win) |
2398 { | |
2399 int h = tabline_height(); | |
2400 | |
2401 win_close_othertab(win, free_buf, prev_curtab); | |
2402 if (h != tabline_height()) | |
2403 shell_new_rows(); | |
2404 } | |
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
|
2405 #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
|
2406 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
|
2407 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2408 // Since goto_tabpage_tp above did not trigger *Enter autocommands, do |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2409 // that now. |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2410 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
4354 | 2411 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
3582 | 2412 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
4354 | 2413 if (old_curbuf != curbuf) |
2414 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3535 | 2415 return TRUE; |
2416 } | |
2417 return FALSE; | |
2418 } | |
2419 | |
2420 /* | |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2421 * Close the buffer of "win" and unload it if "action" is DOBUF_UNLOAD. |
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2422 * "action" can also be zero (do nothing) or DOBUF_WIPE. |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2423 * "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
|
2424 * windows are closed. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2425 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2426 static void |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2427 win_close_buffer(win_T *win, int action, int abort_if_last) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2428 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2429 #ifdef FEAT_SYN_HL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2430 // 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
|
2431 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2432 reset_synblock(win); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2433 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2434 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2435 #ifdef FEAT_QUICKFIX |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2436 // 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
|
2437 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
|
2438 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
|
2439 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2440 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2441 // Close the link to the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2442 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2443 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2444 bufref_T bufref; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2445 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2446 set_bufref(&bufref, curbuf); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2447 win->w_closing = TRUE; |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
2448 close_buffer(win, win->w_buffer, action, abort_if_last, FALSE); |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2449 if (win_valid_any_tab(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2450 win->w_closing = FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2451 // 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
|
2452 // "wipe". |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2453 if (!bufref_valid(&bufref)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2454 curbuf = firstbuf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2455 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2456 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2457 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2458 /* |
819 | 2459 * Close window "win". Only works for the current tab page. |
7 | 2460 * If "free_buf" is TRUE related buffer may be unloaded. |
2461 * | |
3365 | 2462 * Called by :quit, :close, :xit, :wq and findtag(). |
5302 | 2463 * Returns FAIL when the window was not closed. |
7 | 2464 */ |
5302 | 2465 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2466 win_close(win_T *win, int free_buf) |
7 | 2467 { |
2468 win_T *wp; | |
2469 int other_buffer = FALSE; | |
2470 int close_curwin = FALSE; | |
2471 int dir; | |
2472 int help_window = FALSE; | |
847 | 2473 tabpage_T *prev_curtab = curtab; |
11593
c4e7fe672a72
patch 8.0.0679: using freed memory
Christian Brabandt <cb@256bit.org>
parents:
11591
diff
changeset
|
2474 frame_T *win_frame = win->w_frame->fr_parent; |
18590
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2475 #ifdef FEAT_DIFF |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2476 int had_diffmode = win->w_p_diff; |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2477 #endif |
7 | 2478 |
19275
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
2479 #if defined(FEAT_TERMINAL) && defined(FEAT_PROP_POPUP) |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
2480 // Can close a popup window with a terminal if the job has finished. |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
2481 if (may_close_term_popup() == OK) |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
2482 return OK; |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
2483 #endif |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
2484 if (ERROR_IF_ANY_POPUP_WINDOW) |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
2485 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
2486 |
667 | 2487 if (last_window()) |
7 | 2488 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
2489 emsg(_("E444: Cannot close last window")); |
5302 | 2490 return FAIL; |
7 | 2491 } |
2492 | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2493 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
|
2494 && win->w_buffer->b_locked > 0)) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2495 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
|
2496 if (win_unlisted(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2497 { |
21016
0738c44504cb
patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
20737
diff
changeset
|
2498 emsg(_(e_autocmd_close)); |
5302 | 2499 return FAIL; |
1906 | 2500 } |
2501 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) | |
2502 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
2503 emsg(_("E814: Cannot close window, only autocmd window would remain")); |
5302 | 2504 return FAIL; |
1906 | 2505 } |
2506 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2507 // When closing the last window in a tab page first go to another tab page |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2508 // and then close the window and the tab page to avoid that curwin and |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2509 // curtab are invalid while we are freeing memory. |
3535 | 2510 if (close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2511 return FAIL; |
856 | 2512 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2513 // When closing the help window, try restoring a snapshot after closing |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2514 // 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
|
2515 if (bt_help(win->w_buffer)) |
7 | 2516 help_window = TRUE; |
2517 else | |
1906 | 2518 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 2519 |
2520 if (win == curwin) | |
2521 { | |
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
|
2522 #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
|
2523 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
|
2524 #endif |
7 | 2525 /* |
2526 * Guess which window is going to be the new current window. | |
2527 * This may change because of the autocommands (sigh). | |
2528 */ | |
671 | 2529 wp = frame2win(win_altframe(win, NULL)); |
7 | 2530 |
2531 /* | |
3570 | 2532 * Be careful: If autocommands delete the window or cause this window |
2533 * to be the last one left, return now. | |
7 | 2534 */ |
2535 if (wp->w_buffer != curbuf) | |
2536 { | |
2537 other_buffer = TRUE; | |
3570 | 2538 win->w_closing = TRUE; |
7 | 2539 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2540 if (!win_valid(win)) |
5302 | 2541 return FAIL; |
3570 | 2542 win->w_closing = FALSE; |
2543 if (last_window()) | |
5302 | 2544 return FAIL; |
7 | 2545 } |
3570 | 2546 win->w_closing = TRUE; |
7 | 2547 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2548 if (!win_valid(win)) |
5302 | 2549 return FAIL; |
3570 | 2550 win->w_closing = FALSE; |
2551 if (last_window()) | |
5302 | 2552 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2553 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2554 // autocmds may abort script processing |
7 | 2555 if (aborting()) |
5302 | 2556 return FAIL; |
7 | 2557 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2558 } |
7 | 2559 |
1101 | 2560 #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
|
2561 // 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
|
2562 // win_free(). |
1101 | 2563 if (gui.in_use) |
2564 out_flush(); | |
2565 #endif | |
2566 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
2567 #ifdef FEAT_PROP_POPUP |
17863
08f1dd29550e
patch 8.1.1928: popup windows don't move with the text when making changes
Bram Moolenaar <Bram@vim.org>
parents:
17823
diff
changeset
|
2568 if (popup_win_closed(win) && !win_valid(win)) |
08f1dd29550e
patch 8.1.1928: popup windows don't move with the text when making changes
Bram Moolenaar <Bram@vim.org>
parents:
17823
diff
changeset
|
2569 return FAIL; |
08f1dd29550e
patch 8.1.1928: popup windows don't move with the text when making changes
Bram Moolenaar <Bram@vim.org>
parents:
17823
diff
changeset
|
2570 #endif |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2571 win_close_buffer(win, free_buf ? DOBUF_UNLOAD : 0, TRUE); |
847 | 2572 |
4021 | 2573 if (only_one_window() && win_valid(win) && win->w_buffer == NULL |
2574 && (last_window() || curtab != prev_curtab | |
2575 || 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
|
2576 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2577 // Autocommands have closed all windows, quit now. Restore |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2578 // curwin->w_buffer, otherwise writing viminfo may fail. |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2579 if (curwin->w_buffer == NULL) |
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2580 curwin->w_buffer = curbuf; |
4021 | 2581 getout(0); |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2582 } |
4021 | 2583 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2584 // Autocommands may have moved to another tab page. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2585 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
|
2586 && win->w_buffer == NULL) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2587 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2588 // Need to close the window anyway, since the buffer is NULL. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2589 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
|
2590 return FAIL; |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2591 } |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2592 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2593 // Autocommands may have closed the window already or closed the only |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2594 // other window. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2595 if (!win_valid(win) || last_window() |
3535 | 2596 || close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2597 return FAIL; |
7 | 2598 |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2599 // Now we are really going to close the window. Disallow any autocommand |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2600 // to split a window to avoid trouble. |
22800
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2601 // Also bail out of parse_queued_messages() to avoid it tries to update the |
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2602 // screen. |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2603 ++split_disallowed; |
22800
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2604 #ifdef MESSAGE_QUEUE |
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2605 ++dont_parse_messages; |
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2606 #endif |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2607 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2608 // Free the memory used for the window and get the window that received |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2609 // the screen space. |
847 | 2610 wp = win_free_mem(win, &dir, NULL); |
2611 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2612 // Make sure curwin isn't invalid. It can cause severe trouble when |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2613 // printing an error message. For win_equal() curbuf needs to be valid |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2614 // too. |
847 | 2615 if (win == curwin) |
7 | 2616 { |
2617 curwin = wp; | |
2618 #ifdef FEAT_QUICKFIX | |
2619 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer)) | |
2620 { | |
2621 /* | |
1346 | 2622 * If the cursor goes to the preview or the quickfix window, try |
7 | 2623 * finding another window to go to. |
2624 */ | |
2625 for (;;) | |
2626 { | |
2627 if (wp->w_next == NULL) | |
2628 wp = firstwin; | |
2629 else | |
2630 wp = wp->w_next; | |
2631 if (wp == curwin) | |
2632 break; | |
2633 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer)) | |
2634 { | |
2635 curwin = wp; | |
2636 break; | |
2637 } | |
2638 } | |
2639 } | |
2640 #endif | |
2641 curbuf = curwin->w_buffer; | |
2642 close_curwin = TRUE; | |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2643 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2644 // The cursor position may be invalid if the buffer changed after last |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2645 // using the window. |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2646 check_cursor(); |
7 | 2647 } |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2648 if (p_ea && (*p_ead == 'b' || *p_ead == dir)) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2649 // If the frame of the closed window contains the new current window, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2650 // 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
|
2651 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir); |
7 | 2652 else |
2653 win_comp_pos(); | |
2654 if (close_curwin) | |
2655 { | |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2656 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE); |
7 | 2657 if (other_buffer) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2658 // careful: after this wp and win may be invalid! |
7 | 2659 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
2660 } | |
2661 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2662 --split_disallowed; |
22800
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2663 #ifdef MESSAGE_QUEUE |
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2664 --dont_parse_messages; |
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2665 #endif |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2666 |
7 | 2667 /* |
667 | 2668 * If last window has a status line now and we don't want one, |
2669 * remove the status line. | |
7 | 2670 */ |
2671 last_status(FALSE); | |
2672 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2673 // After closing the help window, try restoring the window layout from |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2674 // before it was opened. |
7 | 2675 if (help_window) |
1906 | 2676 restore_snapshot(SNAP_HELP_IDX, close_curwin); |
7 | 2677 |
18590
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2678 #ifdef FEAT_DIFF |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2679 // If the window had 'diff' set and now there is only one window left in |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2680 // the tab page with 'diff' set, and "closeoff" is in 'diffopt', then |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2681 // execute ":diffoff!". |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2682 if (diffopt_closeoff() && had_diffmode && curtab == prev_curtab) |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2683 { |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2684 int diffcount = 0; |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2685 win_T *dwin; |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2686 |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2687 FOR_ALL_WINDOWS(dwin) |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2688 if (dwin->w_p_diff) |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2689 ++diffcount; |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2690 if (diffcount == 1) |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2691 do_cmdline_cmd((char_u *)"diffoff!"); |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2692 } |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2693 #endif |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2694 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2695 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2696 // When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. |
7 | 2697 if (gui.in_use && !win_hasvertsplit()) |
2698 gui_init_which_components(NULL); | |
2699 #endif | |
2700 | |
2701 redraw_all_later(NOT_VALID); | |
5302 | 2702 return OK; |
7 | 2703 } |
2704 | |
2705 /* | |
671 | 2706 * Close window "win" in tab page "tp", which is not the current tab page. |
3535 | 2707 * This may be the last window in that tab page and result in closing the tab, |
671 | 2708 * thus "tp" may become invalid! |
856 | 2709 * Caller must check if buffer is hidden and whether the tabline needs to be |
2710 * updated. | |
671 | 2711 */ |
2712 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2713 win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) |
671 | 2714 { |
2715 win_T *wp; | |
2716 int dir; | |
2717 tabpage_T *ptp = NULL; | |
2191 | 2718 int free_tp = FALSE; |
671 | 2719 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2720 // Get here with win->w_buffer == NULL when win_close() detects the tab |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2721 // page changed. |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2722 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
|
2723 && win->w_buffer->b_locked > 0)) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2724 return; // window is already being closed |
3570 | 2725 |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2726 if (win->w_buffer != NULL) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2727 // Close the link to the buffer. |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
2728 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
2729 FALSE, FALSE); |
671 | 2730 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2731 // Careful: Autocommands may have closed the tab page or made it the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2732 // current tab page. |
671 | 2733 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) |
2734 ; | |
672 | 2735 if (ptp == NULL || tp == curtab) |
671 | 2736 return; |
2737 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2738 // Autocommands may have closed the window already. |
671 | 2739 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next) |
2740 ; | |
2741 if (wp == NULL) | |
2742 return; | |
2743 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2744 // When closing the last window in a tab page remove the tab page. |
7009 | 2745 if (tp->tp_firstwin == tp->tp_lastwin) |
671 | 2746 { |
2747 if (tp == first_tabpage) | |
2748 first_tabpage = tp->tp_next; | |
2749 else | |
2750 { | |
2751 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; | |
2752 ptp = ptp->tp_next) | |
2753 ; | |
2754 if (ptp == NULL) | |
2755 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2756 internal_error("win_close_othertab()"); |
671 | 2757 return; |
2758 } | |
2759 ptp->tp_next = tp->tp_next; | |
2760 } | |
2191 | 2761 free_tp = TRUE; |
2762 } | |
2763 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2764 // Free the memory used for the window. |
2191 | 2765 win_free_mem(win, &dir, tp); |
2766 | |
2767 if (free_tp) | |
847 | 2768 free_tabpage(tp); |
671 | 2769 } |
2770 | |
2771 /* | |
355 | 2772 * Free the memory used for a window. |
2773 * Returns a pointer to the window that got the freed up space. | |
2774 */ | |
2775 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2776 win_free_mem( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2777 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2778 int *dirp, // set to 'v' or 'h' for direction if 'ea' |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2779 tabpage_T *tp) // tab page "win" is in, NULL for current |
355 | 2780 { |
2781 frame_T *frp; | |
2782 win_T *wp; | |
22399
75513701ddd2
patch 8.2.1748: closing split window in other tab may cause a crash
Bram Moolenaar <Bram@vim.org>
parents:
21727
diff
changeset
|
2783 tabpage_T *win_tp = tp == NULL ? curtab : tp; |
355 | 2784 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2785 // Remove the window and its frame from the tree of frames. |
355 | 2786 frp = win->w_frame; |
671 | 2787 wp = winframe_remove(win, dirp, tp); |
355 | 2788 vim_free(frp); |
671 | 2789 win_free(win, tp); |
355 | 2790 |
22399
75513701ddd2
patch 8.2.1748: closing split window in other tab may cause a crash
Bram Moolenaar <Bram@vim.org>
parents:
21727
diff
changeset
|
2791 // When deleting the current window in the tab, select a new current |
75513701ddd2
patch 8.2.1748: closing split window in other tab may cause a crash
Bram Moolenaar <Bram@vim.org>
parents:
21727
diff
changeset
|
2792 // window. |
75513701ddd2
patch 8.2.1748: closing split window in other tab may cause a crash
Bram Moolenaar <Bram@vim.org>
parents:
21727
diff
changeset
|
2793 if (win == win_tp->tp_curwin) |
75513701ddd2
patch 8.2.1748: closing split window in other tab may cause a crash
Bram Moolenaar <Bram@vim.org>
parents:
21727
diff
changeset
|
2794 win_tp->tp_curwin = wp; |
819 | 2795 |
355 | 2796 return wp; |
2797 } | |
2798 | |
2799 #if defined(EXITFREE) || defined(PROTO) | |
2800 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2801 win_free_all(void) |
355 | 2802 { |
2803 int dummy; | |
2804 | |
671 | 2805 while (first_tabpage->tp_next != NULL) |
2806 tabpage_close(TRUE); | |
2807 | |
1906 | 2808 if (aucmd_win != NULL) |
2809 { | |
2810 (void)win_free_mem(aucmd_win, &dummy, NULL); | |
2811 aucmd_win = NULL; | |
2812 } | |
1918 | 2813 |
2814 while (firstwin != NULL) | |
2815 (void)win_free_mem(firstwin, &dummy, NULL); | |
6060 | 2816 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2817 // No window should be used after this. Set curwin to NULL to crash |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2818 // instead of using freed memory. |
6060 | 2819 curwin = NULL; |
355 | 2820 } |
2821 #endif | |
2822 | |
2823 /* | |
7 | 2824 * Remove a window and its frame from the tree of frames. |
2825 * Returns a pointer to the window that got the freed up space. | |
2826 */ | |
1906 | 2827 win_T * |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2828 winframe_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2829 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2830 int *dirp UNUSED, // set to 'v' or 'h' for direction if 'ea' |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2831 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 2832 { |
2833 frame_T *frp, *frp2, *frp3; | |
2834 frame_T *frp_close = win->w_frame; | |
2835 win_T *wp; | |
2836 | |
2837 /* | |
671 | 2838 * If there is only one window there is nothing to remove. |
2839 */ | |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2840 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
671 | 2841 return NULL; |
2842 | |
2843 /* | |
7 | 2844 * Remove the window from its frame. |
2845 */ | |
671 | 2846 frp2 = win_altframe(win, tp); |
7 | 2847 wp = frame2win(frp2); |
2848 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2849 // Remove this frame from the list of frames. |
7 | 2850 frame_remove(frp_close); |
2851 | |
2852 if (frp_close->fr_parent->fr_layout == FR_COL) | |
2853 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2854 // When 'winfixheight' is set, try to find another frame in the column |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2855 // (as close to the closed frame as possible) to distribute the height |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2856 // to. |
1346 | 2857 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh) |
2858 { | |
2859 frp = frp_close->fr_prev; | |
2860 frp3 = frp_close->fr_next; | |
2861 while (frp != NULL || frp3 != NULL) | |
2862 { | |
2863 if (frp != NULL) | |
2864 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2865 if (!frame_fixed_height(frp)) |
1346 | 2866 { |
2867 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
|
2868 wp = frame2win(frp2); |
1346 | 2869 break; |
2870 } | |
2871 frp = frp->fr_prev; | |
2872 } | |
2873 if (frp3 != NULL) | |
2874 { | |
2875 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh) | |
2876 { | |
2877 frp2 = frp3; | |
2878 wp = frp3->fr_win; | |
2879 break; | |
2880 } | |
2881 frp3 = frp3->fr_next; | |
2882 } | |
2883 } | |
2884 } | |
7 | 2885 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height, |
2886 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); | |
2887 *dirp = 'v'; | |
2888 } | |
2889 else | |
2890 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2891 // When 'winfixwidth' is set, try to find another frame in the column |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2892 // (as close to the closed frame as possible) to distribute the width |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2893 // to. |
1346 | 2894 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw) |
2895 { | |
2896 frp = frp_close->fr_prev; | |
2897 frp3 = frp_close->fr_next; | |
2898 while (frp != NULL || frp3 != NULL) | |
2899 { | |
2900 if (frp != NULL) | |
2901 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2902 if (!frame_fixed_width(frp)) |
1346 | 2903 { |
2904 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
|
2905 wp = frame2win(frp2); |
1346 | 2906 break; |
2907 } | |
2908 frp = frp->fr_prev; | |
2909 } | |
2910 if (frp3 != NULL) | |
2911 { | |
2912 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw) | |
2913 { | |
2914 frp2 = frp3; | |
2915 wp = frp3->fr_win; | |
2916 break; | |
2917 } | |
2918 frp3 = frp3->fr_next; | |
2919 } | |
2920 } | |
2921 } | |
7 | 2922 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width, |
779 | 2923 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); |
7 | 2924 *dirp = 'h'; |
2925 } | |
2926 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2927 // If rows/columns go to a window below/right its positions need to be |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2928 // updated. Can only be done after the sizes have been updated. |
7 | 2929 if (frp2 == frp_close->fr_next) |
2930 { | |
2931 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
|
2932 int col = win->w_wincol; |
7 | 2933 |
2934 frame_comp_pos(frp2, &row, &col); | |
2935 } | |
2936 | |
2937 if (frp2->fr_next == NULL && frp2->fr_prev == NULL) | |
2938 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2939 // There is no other frame in this list, move its info to the parent |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2940 // and remove it. |
7 | 2941 frp2->fr_parent->fr_layout = frp2->fr_layout; |
2942 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
|
2943 FOR_ALL_FRAMES(frp, frp2->fr_child) |
7 | 2944 frp->fr_parent = frp2->fr_parent; |
2945 frp2->fr_parent->fr_win = frp2->fr_win; | |
2946 if (frp2->fr_win != NULL) | |
2947 frp2->fr_win->w_frame = frp2->fr_parent; | |
2948 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
|
2949 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
|
2950 topframe->fr_child = frp; |
7 | 2951 vim_free(frp2); |
2952 | |
2953 frp2 = frp->fr_parent; | |
2954 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout) | |
2955 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2956 // The frame above the parent has the same layout, have to merge |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2957 // the frames into this list. |
7 | 2958 if (frp2->fr_child == frp) |
2959 frp2->fr_child = frp->fr_child; | |
2960 frp->fr_child->fr_prev = frp->fr_prev; | |
2961 if (frp->fr_prev != NULL) | |
2962 frp->fr_prev->fr_next = frp->fr_child; | |
2963 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next) | |
2964 { | |
2965 frp3->fr_parent = frp2; | |
2966 if (frp3->fr_next == NULL) | |
2967 { | |
2968 frp3->fr_next = frp->fr_next; | |
2969 if (frp->fr_next != NULL) | |
2970 frp->fr_next->fr_prev = frp3; | |
2971 break; | |
2972 } | |
2973 } | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
2974 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
|
2975 topframe->fr_child = frp2; |
7 | 2976 vim_free(frp); |
2977 } | |
2978 } | |
2979 | |
2980 return wp; | |
2981 } | |
2982 | |
2983 /* | |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2984 * 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
|
2985 * 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
|
2986 * |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2987 * 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
|
2988 * 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
|
2989 * 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
|
2990 * 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
|
2991 * respected when possible. |
7 | 2992 */ |
2993 static frame_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2994 win_altframe( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2995 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2996 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 2997 { |
2998 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
|
2999 frame_T *other_fr, *target_fr; |
7 | 3000 |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
3001 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
667 | 3002 return alt_tabpage()->tp_curwin->w_frame; |
3003 | |
7 | 3004 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
|
3005 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3006 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
|
3007 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
|
3008 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
|
3009 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
|
3010 |
20049
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3011 // By default the next window will get the space that was abandoned by this |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3012 // window |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3013 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
|
3014 other_fr = frp->fr_prev; |
20049
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3015 |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3016 // If this is part of a column of windows and 'splitbelow' is true then the |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3017 // previous window will get the space. |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3018 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_COL && p_sb) |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3019 { |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3020 target_fr = frp->fr_prev; |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3021 other_fr = frp->fr_next; |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3022 } |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3023 |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3024 // If this is part of a row of windows, and 'splitright' is true then the |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3025 // previous window will get the space. |
8c401bc7f32b
patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is on
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
3026 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW && p_spr) |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3027 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3028 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
|
3029 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
|
3030 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3031 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3032 // If 'wfh' or 'wfw' is set for the target and not for the alternate |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3033 // window, reverse the selection. |
355 | 3034 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
|
3035 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3036 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
|
3037 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
|
3038 } |
7 | 3039 else |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3040 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3041 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
|
3042 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
|
3043 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3044 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3045 return target_fr; |
7 | 3046 } |
3047 | |
3048 /* | |
667 | 3049 * Return the tabpage that will be used if the current one is closed. |
3050 */ | |
3051 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3052 alt_tabpage(void) |
667 | 3053 { |
672 | 3054 tabpage_T *tp; |
3055 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3056 // Use the next tab page if possible. |
682 | 3057 if (curtab->tp_next != NULL) |
672 | 3058 return curtab->tp_next; |
3059 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3060 // Find the last but one tab page. |
682 | 3061 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next) |
3062 ; | |
674 | 3063 return tp; |
667 | 3064 } |
3065 | |
3066 /* | |
7 | 3067 * Find the left-upper window in frame "frp". |
3068 */ | |
3069 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3070 frame2win(frame_T *frp) |
7 | 3071 { |
3072 while (frp->fr_win == NULL) | |
3073 frp = frp->fr_child; | |
3074 return frp->fr_win; | |
3075 } | |
3076 | |
3077 /* | |
3078 * Return TRUE if frame "frp" contains window "wp". | |
3079 */ | |
3080 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3081 frame_has_win(frame_T *frp, win_T *wp) |
7 | 3082 { |
3083 frame_T *p; | |
3084 | |
3085 if (frp->fr_layout == FR_LEAF) | |
3086 return frp->fr_win == wp; | |
3087 | |
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(p, frp->fr_child) |
7 | 3089 if (frame_has_win(p, wp)) |
3090 return TRUE; | |
3091 return FALSE; | |
3092 } | |
3093 | |
3094 /* | |
3095 * Set a new height for a frame. Recursively sets the height for contained | |
3096 * frames and windows. Caller must take care of positions. | |
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_new_height( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3100 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3101 int height, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3102 int topfirst, // resize topmost contained frame first |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3103 int wfh) // obey 'winfixheight' when there is a choice; |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3104 // may cause the height not to be set |
7 | 3105 { |
3106 frame_T *frp; | |
3107 int extra_lines; | |
3108 int h; | |
3109 | |
3110 if (topfrp->fr_win != NULL) | |
3111 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3112 // Simple case: just one window. |
7 | 3113 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
|
3114 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
|
3115 - WINBAR_HEIGHT(topfrp->fr_win)); |
7 | 3116 } |
3117 else if (topfrp->fr_layout == FR_ROW) | |
3118 { | |
3119 do | |
3120 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3121 // 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
|
3122 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3123 { |
3124 frame_new_height(frp, height, topfirst, wfh); | |
3125 if (frp->fr_height > height) | |
3126 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3127 // Could not fit the windows, make the whole row higher. |
7 | 3128 height = frp->fr_height; |
3129 break; | |
3130 } | |
3131 } | |
3132 } | |
3133 while (frp != NULL); | |
3134 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3135 else // fr_layout == FR_COL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3136 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3137 // Complicated case: Resize a column of frames. Resize the bottom |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3138 // frame first, frames above that when needed. |
7 | 3139 |
3140 frp = topfrp->fr_child; | |
3141 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3142 // Advance past frames with one window with 'wfh' set. |
7 | 3143 while (frame_fixed_height(frp)) |
3144 { | |
3145 frp = frp->fr_next; | |
3146 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3147 return; // no frame without 'wfh', give up |
7 | 3148 } |
3149 if (!topfirst) | |
3150 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3151 // Find the bottom frame of this column |
7 | 3152 while (frp->fr_next != NULL) |
3153 frp = frp->fr_next; | |
3154 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3155 // Advance back for frames with one window with 'wfh' set. |
7 | 3156 while (frame_fixed_height(frp)) |
3157 frp = frp->fr_prev; | |
3158 } | |
3159 | |
3160 extra_lines = height - topfrp->fr_height; | |
3161 if (extra_lines < 0) | |
3162 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3163 // reduce height of contained frames, bottom or top frame first |
7 | 3164 while (frp != NULL) |
3165 { | |
3166 h = frame_minheight(frp, NULL); | |
3167 if (frp->fr_height + extra_lines < h) | |
3168 { | |
3169 extra_lines += frp->fr_height - h; | |
3170 frame_new_height(frp, h, topfirst, wfh); | |
3171 } | |
3172 else | |
3173 { | |
3174 frame_new_height(frp, frp->fr_height + extra_lines, | |
3175 topfirst, wfh); | |
3176 break; | |
3177 } | |
3178 if (topfirst) | |
3179 { | |
3180 do | |
3181 frp = frp->fr_next; | |
3182 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3183 } | |
3184 else | |
3185 { | |
3186 do | |
3187 frp = frp->fr_prev; | |
3188 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3189 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3190 // Increase "height" if we could not reduce enough frames. |
7 | 3191 if (frp == NULL) |
3192 height -= extra_lines; | |
3193 } | |
3194 } | |
3195 else if (extra_lines > 0) | |
3196 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3197 // increase height of bottom or top frame |
7 | 3198 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh); |
3199 } | |
3200 } | |
3201 topfrp->fr_height = height; | |
3202 } | |
3203 | |
3204 /* | |
3205 * Return TRUE if height of frame "frp" should not be changed because of | |
3206 * the 'winfixheight' option. | |
3207 */ | |
3208 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3209 frame_fixed_height(frame_T *frp) |
7 | 3210 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3211 // frame with one window: fixed height if 'winfixheight' set. |
7 | 3212 if (frp->fr_win != NULL) |
3213 return frp->fr_win->w_p_wfh; | |
3214 | |
3215 if (frp->fr_layout == FR_ROW) | |
3216 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3217 // The frame is fixed height if one of the frames in the row is fixed |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3218 // height. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3219 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3220 if (frame_fixed_height(frp)) |
3221 return TRUE; | |
3222 return FALSE; | |
3223 } | |
3224 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3225 // frp->fr_layout == FR_COL: The frame is fixed height if all of the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3226 // 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
|
3227 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3228 if (!frame_fixed_height(frp)) |
3229 return FALSE; | |
3230 return TRUE; | |
3231 } | |
3232 | |
3233 /* | |
779 | 3234 * Return TRUE if width of frame "frp" should not be changed because of |
3235 * the 'winfixwidth' option. | |
3236 */ | |
3237 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3238 frame_fixed_width(frame_T *frp) |
779 | 3239 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3240 // frame with one window: fixed width if 'winfixwidth' set. |
779 | 3241 if (frp->fr_win != NULL) |
3242 return frp->fr_win->w_p_wfw; | |
3243 | |
3244 if (frp->fr_layout == FR_COL) | |
3245 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3246 // The frame is fixed width if one of the frames in the row is fixed |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3247 // width. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3248 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3249 if (frame_fixed_width(frp)) |
3250 return TRUE; | |
3251 return FALSE; | |
3252 } | |
3253 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3254 // frp->fr_layout == FR_ROW: The frame is fixed width if all of the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3255 // 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
|
3256 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3257 if (!frame_fixed_width(frp)) |
3258 return FALSE; | |
3259 return TRUE; | |
3260 } | |
3261 | |
3262 /* | |
7 | 3263 * Add a status line to windows at the bottom of "frp". |
3264 * Note: Does not check if there is room! | |
3265 */ | |
3266 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3267 frame_add_statusline(frame_T *frp) |
7 | 3268 { |
3269 win_T *wp; | |
3270 | |
3271 if (frp->fr_layout == FR_LEAF) | |
3272 { | |
3273 wp = frp->fr_win; | |
3274 if (wp->w_status_height == 0) | |
3275 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3276 if (wp->w_height > 0) // don't make it negative |
7 | 3277 --wp->w_height; |
3278 wp->w_status_height = STATUS_HEIGHT; | |
3279 } | |
3280 } | |
3281 else if (frp->fr_layout == FR_ROW) | |
3282 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3283 // 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
|
3284 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3285 frame_add_statusline(frp); |
3286 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3287 else // frp->fr_layout == FR_COL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3288 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3289 // Only need to handle the last frame in the column. |
7 | 3290 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next) |
3291 ; | |
3292 frame_add_statusline(frp); | |
3293 } | |
3294 } | |
3295 | |
3296 /* | |
3297 * Set width of a frame. Handles recursively going through contained frames. | |
3298 * May remove separator line for windows at the right side (for win_close()). | |
3299 */ | |
3300 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3301 frame_new_width( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3302 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3303 int width, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3304 int leftfirst, // resize leftmost contained frame first |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3305 int wfw) // obey 'winfixwidth' when there is a choice; |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3306 // may cause the width not to be set |
7 | 3307 { |
3308 frame_T *frp; | |
3309 int extra_cols; | |
3310 int w; | |
3311 win_T *wp; | |
3312 | |
3313 if (topfrp->fr_layout == FR_LEAF) | |
3314 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3315 // Simple case: just one window. |
7 | 3316 wp = topfrp->fr_win; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3317 // Find out if there are any windows right of this one. |
7 | 3318 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent) |
3319 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL) | |
3320 break; | |
3321 if (frp->fr_parent == NULL) | |
3322 wp->w_vsep_width = 0; | |
3323 win_new_width(wp, width - wp->w_vsep_width); | |
3324 } | |
3325 else if (topfrp->fr_layout == FR_COL) | |
3326 { | |
779 | 3327 do |
3328 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3329 // 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
|
3330 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
779 | 3331 { |
3332 frame_new_width(frp, width, leftfirst, wfw); | |
3333 if (frp->fr_width > width) | |
3334 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3335 // Could not fit the windows, make whole column wider. |
779 | 3336 width = frp->fr_width; |
3337 break; | |
3338 } | |
3339 } | |
3340 } while (frp != NULL); | |
7 | 3341 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3342 else // fr_layout == FR_ROW |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3343 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3344 // Complicated case: Resize a row of frames. Resize the rightmost |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3345 // frame first, frames left of it when needed. |
7 | 3346 |
3347 frp = topfrp->fr_child; | |
779 | 3348 if (wfw) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3349 // Advance past frames with one window with 'wfw' set. |
779 | 3350 while (frame_fixed_width(frp)) |
3351 { | |
3352 frp = frp->fr_next; | |
3353 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3354 return; // no frame without 'wfw', give up |
779 | 3355 } |
7 | 3356 if (!leftfirst) |
779 | 3357 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3358 // Find the rightmost frame of this row |
7 | 3359 while (frp->fr_next != NULL) |
3360 frp = frp->fr_next; | |
779 | 3361 if (wfw) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3362 // Advance back for frames with one window with 'wfw' set. |
779 | 3363 while (frame_fixed_width(frp)) |
3364 frp = frp->fr_prev; | |
3365 } | |
7 | 3366 |
3367 extra_cols = width - topfrp->fr_width; | |
3368 if (extra_cols < 0) | |
3369 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3370 // reduce frame width, rightmost frame first |
7 | 3371 while (frp != NULL) |
3372 { | |
3373 w = frame_minwidth(frp, NULL); | |
3374 if (frp->fr_width + extra_cols < w) | |
3375 { | |
3376 extra_cols += frp->fr_width - w; | |
779 | 3377 frame_new_width(frp, w, leftfirst, wfw); |
7 | 3378 } |
3379 else | |
3380 { | |
779 | 3381 frame_new_width(frp, frp->fr_width + extra_cols, |
3382 leftfirst, wfw); | |
7 | 3383 break; |
3384 } | |
3385 if (leftfirst) | |
779 | 3386 { |
3387 do | |
3388 frp = frp->fr_next; | |
3389 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3390 } | |
7 | 3391 else |
779 | 3392 { |
3393 do | |
3394 frp = frp->fr_prev; | |
3395 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3396 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3397 // Increase "width" if we could not reduce enough frames. |
779 | 3398 if (frp == NULL) |
3399 width -= extra_cols; | |
7 | 3400 } |
3401 } | |
3402 else if (extra_cols > 0) | |
3403 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3404 // increase width of rightmost frame |
779 | 3405 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw); |
7 | 3406 } |
3407 } | |
3408 topfrp->fr_width = width; | |
3409 } | |
3410 | |
3411 /* | |
3412 * Add the vertical separator to windows at the right side of "frp". | |
3413 * Note: Does not check if there is room! | |
3414 */ | |
3415 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3416 frame_add_vsep(frame_T *frp) |
7 | 3417 { |
3418 win_T *wp; | |
3419 | |
3420 if (frp->fr_layout == FR_LEAF) | |
3421 { | |
3422 wp = frp->fr_win; | |
3423 if (wp->w_vsep_width == 0) | |
3424 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3425 if (wp->w_width > 0) // don't make it negative |
7 | 3426 --wp->w_width; |
3427 wp->w_vsep_width = 1; | |
3428 } | |
3429 } | |
3430 else if (frp->fr_layout == FR_COL) | |
3431 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3432 // 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
|
3433 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3434 frame_add_vsep(frp); |
3435 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3436 else // frp->fr_layout == FR_ROW |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3437 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3438 // Only need to handle the last frame in the row. |
7 | 3439 frp = frp->fr_child; |
3440 while (frp->fr_next != NULL) | |
3441 frp = frp->fr_next; | |
3442 frame_add_vsep(frp); | |
3443 } | |
3444 } | |
3445 | |
3446 /* | |
3447 * Set frame width from the window it contains. | |
3448 */ | |
3449 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3450 frame_fix_width(win_T *wp) |
7 | 3451 { |
3452 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width; | |
3453 } | |
3454 | |
3455 /* | |
3456 * Set frame height from the window it contains. | |
3457 */ | |
3458 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3459 frame_fix_height(win_T *wp) |
7 | 3460 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3461 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height; |
7 | 3462 } |
3463 | |
3464 /* | |
3465 * Compute the minimal height for frame "topfrp". | |
3466 * Uses the 'winminheight' option. | |
3467 * When "next_curwin" isn't NULL, use p_wh for this window. | |
3468 * When "next_curwin" is NOWIN, don't use at least one line for the current | |
3469 * window. | |
3470 */ | |
3471 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3472 frame_minheight(frame_T *topfrp, win_T *next_curwin) |
7 | 3473 { |
3474 frame_T *frp; | |
3475 int m; | |
3476 int n; | |
3477 | |
3478 if (topfrp->fr_win != NULL) | |
3479 { | |
3480 if (topfrp->fr_win == next_curwin) | |
3481 m = p_wh + topfrp->fr_win->w_status_height; | |
3482 else | |
3483 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3484 // window: minimal height of the window plus status line |
7 | 3485 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
|
3486 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
|
3487 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3488 // Current window is minimal one line high and WinBar is |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3489 // visible. |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3490 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
|
3491 ++m; |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3492 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
|
3493 } |
7 | 3494 } |
3495 } | |
3496 else if (topfrp->fr_layout == FR_ROW) | |
3497 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3498 // get the minimal height from each frame in this row |
7 | 3499 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3500 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3501 { |
3502 n = frame_minheight(frp, next_curwin); | |
3503 if (n > m) | |
3504 m = n; | |
3505 } | |
3506 } | |
3507 else | |
3508 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3509 // Add up the minimal heights for all frames in this column. |
7 | 3510 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3511 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3512 m += frame_minheight(frp, next_curwin); |
3513 } | |
3514 | |
3515 return m; | |
3516 } | |
3517 | |
3518 /* | |
3519 * Compute the minimal width for frame "topfrp". | |
3520 * When "next_curwin" isn't NULL, use p_wiw for this window. | |
3521 * When "next_curwin" is NOWIN, don't use at least one column for the current | |
3522 * window. | |
3523 */ | |
3524 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3525 frame_minwidth( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3526 frame_T *topfrp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3527 win_T *next_curwin) // use p_wh and p_wiw for next_curwin |
7 | 3528 { |
3529 frame_T *frp; | |
3530 int m, n; | |
3531 | |
3532 if (topfrp->fr_win != NULL) | |
3533 { | |
3534 if (topfrp->fr_win == next_curwin) | |
3535 m = p_wiw + topfrp->fr_win->w_vsep_width; | |
3536 else | |
3537 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3538 // window: minimal width of the window plus separator column |
7 | 3539 m = p_wmw + topfrp->fr_win->w_vsep_width; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3540 // Current window is minimal one column wide |
7 | 3541 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL) |
3542 ++m; | |
3543 } | |
3544 } | |
3545 else if (topfrp->fr_layout == FR_COL) | |
3546 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3547 // get the minimal width from each frame in this column |
7 | 3548 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3549 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3550 { |
3551 n = frame_minwidth(frp, next_curwin); | |
3552 if (n > m) | |
3553 m = n; | |
3554 } | |
3555 } | |
3556 else | |
3557 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3558 // Add up the minimal widths for all frames in this row. |
7 | 3559 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3560 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3561 m += frame_minwidth(frp, next_curwin); |
3562 } | |
3563 | |
3564 return m; | |
3565 } | |
3566 | |
3567 | |
3568 /* | |
3569 * Try to close all windows except current one. | |
3570 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is | |
3571 * used and the buffer was modified. | |
3572 * | |
3573 * Used by ":bdel" and ":only". | |
3574 */ | |
3575 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3576 close_others( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3577 int message, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3578 int forceit) // always hide all other windows |
7 | 3579 { |
3580 win_T *wp; | |
3581 win_T *nextwp; | |
3582 int r; | |
3583 | |
1906 | 3584 if (one_window()) |
7 | 3585 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
3586 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
|
3587 msg(_(m_onlyone)); |
7 | 3588 return; |
3589 } | |
3590 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3591 // Be very careful here: autocommands may change the window layout. |
7 | 3592 for (wp = firstwin; win_valid(wp); wp = nextwp) |
3593 { | |
3594 nextwp = wp->w_next; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3595 if (wp != curwin) // don't close current window |
7 | 3596 { |
3597 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3598 // Check if it's allowed to abandon this window |
7 | 3599 r = can_abandon(wp->w_buffer, forceit); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3600 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3601 { |
3602 nextwp = firstwin; | |
3603 continue; | |
3604 } | |
3605 if (!r) | |
3606 { | |
3607 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
3608 if (message && (p_confirm |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
3609 || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 3610 { |
3611 dialog_changed(wp->w_buffer, FALSE); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3612 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3613 { |
3614 nextwp = firstwin; | |
3615 continue; | |
3616 } | |
3617 } | |
3618 if (bufIsChanged(wp->w_buffer)) | |
3619 #endif | |
3620 continue; | |
3621 } | |
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
|
3622 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
|
3623 && !bufIsChanged(wp->w_buffer)); |
7 | 3624 } |
3625 } | |
3626 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
3627 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
|
3628 emsg(_("E445: Other window contains changes")); |
7 | 3629 } |
3630 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3631 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3632 win_init_empty(win_T *wp) |
1918 | 3633 { |
3634 redraw_win_later(wp, NOT_VALID); | |
3635 wp->w_lines_valid = 0; | |
3636 wp->w_cursor.lnum = 1; | |
3637 wp->w_curswant = wp->w_cursor.col = 0; | |
3638 wp->w_cursor.coladd = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3639 wp->w_pcmark.lnum = 1; // pcmark not cleared but set to line 1 |
1918 | 3640 wp->w_pcmark.col = 0; |
3641 wp->w_prev_pcmark.lnum = 0; | |
3642 wp->w_prev_pcmark.col = 0; | |
3643 wp->w_topline = 1; | |
7 | 3644 #ifdef FEAT_DIFF |
1918 | 3645 wp->w_topfill = 0; |
3646 #endif | |
3647 wp->w_botline = 2; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3648 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) |
3068 | 3649 wp->w_s = &wp->w_buffer->b_s; |
3650 #endif | |
7 | 3651 } |
3652 | |
3653 /* | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3654 * Init the current window "curwin". |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3655 * Called when a new file is being edited. |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3656 */ |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3657 void |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3658 curwin_init(void) |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3659 { |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3660 win_init_empty(curwin); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3661 } |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3662 |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3663 /* |
7 | 3664 * Allocate the first window and put an empty buffer in it. |
3665 * Called from main(). | |
667 | 3666 * Return FAIL when something goes wrong (out of memory). |
7 | 3667 */ |
667 | 3668 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3669 win_alloc_first(void) |
7 | 3670 { |
675 | 3671 if (win_alloc_firstwin(NULL) == FAIL) |
667 | 3672 return FAIL; |
3673 | |
672 | 3674 first_tabpage = alloc_tabpage(); |
667 | 3675 if (first_tabpage == NULL) |
3676 return FAIL; | |
3677 first_tabpage->tp_topframe = topframe; | |
672 | 3678 curtab = first_tabpage; |
19155
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
3679 curtab->tp_firstwin = firstwin; |
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
3680 curtab->tp_lastwin = lastwin; |
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
3681 curtab->tp_curwin = curwin; |
1906 | 3682 |
667 | 3683 return OK; |
3684 } | |
3685 | |
1906 | 3686 /* |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3687 * 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
|
3688 * 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
|
3689 * 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
|
3690 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3691 win_T * |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3692 win_alloc_popup_win(void) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3693 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3694 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3695 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3696 wp = win_alloc(NULL, TRUE); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3697 if (wp != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3698 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3699 // 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
|
3700 // window makes most sense. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3701 win_init_some(wp, curwin); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3702 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3703 RESET_BINDING(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3704 new_frame(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3705 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3706 return wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3707 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3708 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3709 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3710 * Initialize window "wp" to display buffer "buf". |
1906 | 3711 */ |
3712 void | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3713 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
|
3714 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3715 wp->w_buffer = buf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3716 ++buf->b_nwindows; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3717 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
|
3718 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3719 // 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
|
3720 // win_enter_ext(). |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3721 VIM_CLEAR(wp->w_localdir); |
1906 | 3722 } |
3723 | |
667 | 3724 /* |
675 | 3725 * Allocate the first window or the first window in a new tab page. |
3726 * 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
|
3727 * When "oldwin" is not NULL copy info from it to the new window. |
667 | 3728 * Return FAIL when something goes wrong (out of memory). |
3729 */ | |
3730 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3731 win_alloc_firstwin(win_T *oldwin) |
667 | 3732 { |
1906 | 3733 curwin = win_alloc(NULL, FALSE); |
675 | 3734 if (oldwin == NULL) |
3735 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3736 // Very first window, need to create an empty buffer for it and |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3737 // initialize from scratch. |
675 | 3738 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); |
3739 if (curwin == NULL || curbuf == NULL) | |
3740 return FAIL; | |
3741 curwin->w_buffer = curbuf; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3742 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3743 curwin->w_s = &(curbuf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3744 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3745 curbuf->b_nwindows = 1; // there is one window |
675 | 3746 curwin->w_alist = &global_alist; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3747 curwin_init(); // init current window |
675 | 3748 } |
3749 else | |
3750 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3751 // First window in new tab page, initialize it from "oldwin". |
1822 | 3752 win_init(curwin, oldwin, 0); |
675 | 3753 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3754 // We don't want cursor- and scroll-binding in the first window. |
2583 | 3755 RESET_BINDING(curwin); |
675 | 3756 } |
7 | 3757 |
1906 | 3758 new_frame(curwin); |
3759 if (curwin->w_frame == NULL) | |
667 | 3760 return FAIL; |
1906 | 3761 topframe = curwin->w_frame; |
7 | 3762 topframe->fr_width = Columns; |
3763 topframe->fr_height = Rows - p_ch; | |
667 | 3764 |
3765 return OK; | |
3766 } | |
3767 | |
3768 /* | |
1906 | 3769 * Create a frame for window "wp". |
3770 */ | |
3771 static void | |
3772 new_frame(win_T *wp) | |
3773 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
3774 frame_T *frp = ALLOC_CLEAR_ONE(frame_T); |
1906 | 3775 |
3776 wp->w_frame = frp; | |
3777 if (frp != NULL) | |
3778 { | |
3779 frp->fr_layout = FR_LEAF; | |
3780 frp->fr_win = wp; | |
3781 } | |
3782 } | |
3783 | |
3784 /* | |
667 | 3785 * Initialize the window and frame size to the maximum. |
3786 */ | |
3787 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3788 win_init_size(void) |
667 | 3789 { |
3790 firstwin->w_height = ROWS_AVAIL; | |
3791 topframe->fr_height = ROWS_AVAIL; | |
3792 firstwin->w_width = Columns; | |
3793 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
|
3794 } |
672 | 3795 |
3796 /* | |
3797 * Allocate a new tabpage_T and init the values. | |
3798 * Returns NULL when out of memory. | |
3799 */ | |
3800 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3801 alloc_tabpage(void) |
672 | 3802 { |
3803 tabpage_T *tp; | |
4287 | 3804 # ifdef FEAT_GUI |
3805 int i; | |
3806 # endif | |
3807 | |
672 | 3808 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
3809 tp = ALLOC_CLEAR_ONE(tabpage_T); |
4287 | 3810 if (tp == NULL) |
3811 return NULL; | |
3812 | |
3813 # ifdef FEAT_EVAL | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3814 // init t: variables |
4287 | 3815 tp->tp_vars = dict_alloc(); |
3816 if (tp->tp_vars == NULL) | |
3817 { | |
3818 vim_free(tp); | |
3819 return NULL; | |
3820 } | |
3821 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); | |
3822 # endif | |
3823 | |
788 | 3824 # ifdef FEAT_GUI |
4287 | 3825 for (i = 0; i < 3; i++) |
3826 tp->tp_prev_which_scrollbars[i] = -1; | |
788 | 3827 # endif |
672 | 3828 # ifdef FEAT_DIFF |
4287 | 3829 tp->tp_diff_invalid = TRUE; |
672 | 3830 # endif |
4287 | 3831 tp->tp_ch_used = p_ch; |
3832 | |
672 | 3833 return tp; |
3834 } | |
3835 | |
852 | 3836 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3837 free_tabpage(tabpage_T *tp) |
672 | 3838 { |
1906 | 3839 int idx; |
3840 | |
672 | 3841 # ifdef FEAT_DIFF |
3842 diff_clear(tp); | |
3843 # endif | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
3844 # ifdef FEAT_PROP_POPUP |
16800
12e3a3afdb6a
patch 8.1.1402: "timer" option of popup windows not supported
Bram Moolenaar <Bram@vim.org>
parents:
16796
diff
changeset
|
3845 while (tp->tp_first_popupwin != NULL) |
20384
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
3846 popup_close_tabpage(tp, tp->tp_first_popupwin->w_id, TRUE); |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3847 #endif |
1906 | 3848 for (idx = 0; idx < SNAP_COUNT; ++idx) |
3849 clear_snapshot(tp, idx); | |
819 | 3850 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3851 vars_clear(&tp->tp_vars->dv_hashtab); // free all t: variables |
4287 | 3852 hash_init(&tp->tp_vars->dv_hashtab); |
3853 unref_var_dict(tp->tp_vars); | |
819 | 3854 #endif |
4401 | 3855 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3856 if (tp == lastused_tabpage) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3857 lastused_tabpage = NULL; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3858 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3859 vim_free(tp->tp_localdir); |
20711
d91b8d1e5198
patch 8.2.0909: cannot go back to the previous local directory
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
3860 vim_free(tp->tp_prevdir); |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3861 |
4401 | 3862 #ifdef FEAT_PYTHON |
3863 python_tabpage_free(tp); | |
3864 #endif | |
3865 | |
3866 #ifdef FEAT_PYTHON3 | |
3867 python3_tabpage_free(tp); | |
3868 #endif | |
3869 | |
672 | 3870 vim_free(tp); |
3871 } | |
3872 | |
667 | 3873 /* |
675 | 3874 * Create a new Tab page with one window. |
3875 * It will edit the current buffer, like after ":split". | |
682 | 3876 * When "after" is 0 put it just after the current Tab page. |
3877 * Otherwise put it just before tab page "after". | |
667 | 3878 * Return FAIL or OK. |
3879 */ | |
3880 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3881 win_new_tabpage(int after) |
667 | 3882 { |
672 | 3883 tabpage_T *tp = curtab; |
21727
860cad58f557
patch 8.2.1413: previous tab page not usable from an Ex command
Bram Moolenaar <Bram@vim.org>
parents:
21723
diff
changeset
|
3884 tabpage_T *prev_tp = curtab; |
667 | 3885 tabpage_T *newtp; |
682 | 3886 int n; |
667 | 3887 |
672 | 3888 newtp = alloc_tabpage(); |
667 | 3889 if (newtp == NULL) |
3890 return FAIL; | |
3891 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3892 // Remember the current windows in this Tab page. |
4354 | 3893 if (leave_tabpage(curbuf, TRUE) == FAIL) |
674 | 3894 { |
3895 vim_free(newtp); | |
3896 return FAIL; | |
3897 } | |
672 | 3898 curtab = newtp; |
667 | 3899 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3900 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
|
3901 ? NULL : vim_strsave(tp->tp_localdir); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3902 // Create a new empty window. |
675 | 3903 if (win_alloc_firstwin(tp->tp_curwin) == OK) |
667 | 3904 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3905 // Make the new Tab page the new topframe. |
682 | 3906 if (after == 1) |
3907 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3908 // New tab page becomes the first one. |
682 | 3909 newtp->tp_next = first_tabpage; |
3910 first_tabpage = newtp; | |
3911 } | |
3912 else | |
3913 { | |
3914 if (after > 0) | |
3915 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3916 // Put new tab page before tab page "after". |
682 | 3917 n = 2; |
3918 for (tp = first_tabpage; tp->tp_next != NULL | |
3919 && n < after; tp = tp->tp_next) | |
3920 ++n; | |
3921 } | |
3922 newtp->tp_next = tp->tp_next; | |
3923 tp->tp_next = newtp; | |
3924 } | |
19155
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
3925 newtp->tp_firstwin = newtp->tp_lastwin = newtp->tp_curwin = curwin; |
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
3926 |
667 | 3927 win_init_size(); |
685 | 3928 firstwin->w_winrow = tabline_height(); |
819 | 3929 win_comp_scroll(curwin); |
667 | 3930 |
3931 newtp->tp_topframe = topframe; | |
671 | 3932 last_status(FALSE); |
815 | 3933 |
21727
860cad58f557
patch 8.2.1413: previous tab page not usable from an Ex command
Bram Moolenaar <Bram@vim.org>
parents:
21723
diff
changeset
|
3934 lastused_tabpage = prev_tp; |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3935 |
815 | 3936 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3937 // When 'guioptions' includes 'L' or 'R' may have to remove or add |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3938 // scrollbars. Have to update them anyway. |
1906 | 3939 gui_may_update_scrollbars(); |
815 | 3940 #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
|
3941 #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
|
3942 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
|
3943 #endif |
815 | 3944 |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
3945 redraw_all_later(NOT_VALID); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3946 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 3947 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
|
3948 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf); |
675 | 3949 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
667 | 3950 return OK; |
3951 } | |
3952 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3953 // Failed, get back the previous Tab page |
4354 | 3954 enter_tabpage(curtab, curbuf, TRUE, TRUE); |
667 | 3955 return FAIL; |
3956 } | |
3957 | |
3958 /* | |
682 | 3959 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer, |
3960 * like with ":split". | |
3961 * Returns OK if a new tab page was created, FAIL otherwise. | |
3962 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3963 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3964 may_open_tabpage(void) |
682 | 3965 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
3966 int n = (cmdmod.cmod_tab == 0) |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
3967 ? postponed_split_tab : cmdmod.cmod_tab; |
1090 | 3968 |
3969 if (n != 0) | |
682 | 3970 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
3971 cmdmod.cmod_tab = 0; // reset it to avoid doing it twice |
1090 | 3972 postponed_split_tab = 0; |
682 | 3973 return win_new_tabpage(n); |
3974 } | |
3975 return FAIL; | |
3976 } | |
3977 | |
3978 /* | |
672 | 3979 * Create up to "maxcount" tabpages with empty windows. |
3980 * Returns the number of resulting tab pages. | |
667 | 3981 */ |
672 | 3982 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3983 make_tabpages(int maxcount) |
667 | 3984 { |
672 | 3985 int count = maxcount; |
3986 int todo; | |
3987 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3988 // Limit to 'tabpagemax' tabs. |
698 | 3989 if (count > p_tpm) |
3990 count = p_tpm; | |
672 | 3991 |
3992 /* | |
3993 * Don't execute autocommands while creating the tab pages. Must do that | |
3994 * when putting the buffers in the windows. | |
3995 */ | |
1410 | 3996 block_autocmds(); |
672 | 3997 |
3998 for (todo = count - 1; todo > 0; --todo) | |
682 | 3999 if (win_new_tabpage(0) == FAIL) |
667 | 4000 break; |
672 | 4001 |
1410 | 4002 unblock_autocmds(); |
672 | 4003 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4004 // return actual number of tab pages |
672 | 4005 return (count - todo); |
667 | 4006 } |
4007 | |
4008 /* | |
671 | 4009 * Return TRUE when "tpc" points to a valid tab page. |
4010 */ | |
4011 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4012 valid_tabpage(tabpage_T *tpc) |
671 | 4013 { |
4014 tabpage_T *tp; | |
4015 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4016 FOR_ALL_TABPAGES(tp) |
671 | 4017 if (tp == tpc) |
4018 return TRUE; | |
4019 return FALSE; | |
4020 } | |
4021 | |
4022 /* | |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4023 * 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
|
4024 * valid. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4025 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4026 int |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4027 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
|
4028 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4029 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
|
4030 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
|
4031 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4032 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
|
4033 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4034 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
|
4035 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4036 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
|
4037 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4038 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
|
4039 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
|
4040 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4041 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
|
4042 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4043 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4044 // shouldn't happen |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4045 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
|
4046 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4047 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4048 /* |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4049 * 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
|
4050 * 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
|
4051 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4052 void |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4053 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
|
4054 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4055 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
|
4056 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4057 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
|
4058 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4059 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
|
4060 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
|
4061 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4062 else |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4063 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4064 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
|
4065 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
|
4066 ; |
11232
a14090a30a3f
patch 8.0.0502: Coverity complains about possible NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11207
diff
changeset
|
4067 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
|
4068 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
|
4069 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4070 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4071 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
|
4072 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
|
4073 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4074 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4075 /* |
671 | 4076 * Find tab page "n" (first one is 1). Returns NULL when not found. |
4077 */ | |
4078 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4079 find_tabpage(int n) |
671 | 4080 { |
4081 tabpage_T *tp; | |
4082 int i = 1; | |
4083 | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4084 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
|
4085 return curtab; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4086 |
671 | 4087 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next) |
4088 ++i; | |
4089 return tp; | |
4090 } | |
4091 | |
4092 /* | |
685 | 4093 * Get index of tab page "tp". First one has index 1. |
686 | 4094 * When not found returns number of tab pages plus one. |
685 | 4095 */ |
4096 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4097 tabpage_index(tabpage_T *ftp) |
685 | 4098 { |
4099 int i = 1; | |
4100 tabpage_T *tp; | |
4101 | |
4102 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next) | |
4103 ++i; | |
4104 return i; | |
4105 } | |
4106 | |
4107 /* | |
674 | 4108 * Prepare for leaving the current tab page. |
4352 | 4109 * When autocommands change "curtab" we don't leave the tab page and return |
674 | 4110 * FAIL. |
4111 * Careful: When OK is returned need to get a new tab page very very soon! | |
667 | 4112 */ |
674 | 4113 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4114 leave_tabpage( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4115 buf_T *new_curbuf UNUSED, // what is going to be the new curbuf, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4116 // NULL if unknown |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4117 int trigger_leave_autocmds UNUSED) |
667 | 4118 { |
674 | 4119 tabpage_T *tp = curtab; |
4120 | |
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
|
4121 #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
|
4122 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
|
4123 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4124 reset_VIsual_and_resel(); // stop Visual mode |
4354 | 4125 if (trigger_leave_autocmds) |
4126 { | |
4127 if (new_curbuf != curbuf) | |
4128 { | |
4129 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4130 if (curtab != tp) | |
4131 return FAIL; | |
4132 } | |
4133 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
674 | 4134 if (curtab != tp) |
4135 return FAIL; | |
4354 | 4136 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); |
4137 if (curtab != tp) | |
4138 return FAIL; | |
4139 } | |
668 | 4140 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4141 // Remove the scrollbars. They may be added back later. |
668 | 4142 if (gui.in_use) |
4143 gui_remove_scrollbars(); | |
4144 #endif | |
667 | 4145 tp->tp_curwin = curwin; |
671 | 4146 tp->tp_prevwin = prevwin; |
667 | 4147 tp->tp_firstwin = firstwin; |
4148 tp->tp_lastwin = lastwin; | |
668 | 4149 tp->tp_old_Rows = Rows; |
4150 tp->tp_old_Columns = Columns; | |
667 | 4151 firstwin = NULL; |
4152 lastwin = NULL; | |
674 | 4153 return OK; |
667 | 4154 } |
4155 | |
4156 /* | |
4157 * Start using tab page "tp". | |
675 | 4158 * Only to be used after leave_tabpage() or freeing the current tab page. |
4354 | 4159 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4160 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
667 | 4161 */ |
4162 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4163 enter_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4164 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4165 buf_T *old_curbuf UNUSED, |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4166 int trigger_enter_autocmds, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4167 int trigger_leave_autocmds) |
667 | 4168 { |
19143
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4169 int row; |
668 | 4170 int old_off = tp->tp_firstwin->w_winrow; |
870 | 4171 win_T *next_prevwin = tp->tp_prevwin; |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4172 tabpage_T *last_tab = curtab; |
668 | 4173 |
672 | 4174 curtab = tp; |
667 | 4175 firstwin = tp->tp_firstwin; |
4176 lastwin = tp->tp_lastwin; | |
4177 topframe = tp->tp_topframe; | |
870 | 4178 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4179 // We would like doing the TabEnter event first, but we don't have a |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4180 // valid current window yet, which may break some commands. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4181 // 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
|
4182 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
|
4183 trigger_enter_autocmds, trigger_leave_autocmds); |
870 | 4184 prevwin = next_prevwin; |
4185 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4186 last_status(FALSE); // status line may appear or disappear |
19143
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4187 row = win_comp_pos(); // recompute w_winrow for all windows |
672 | 4188 #ifdef FEAT_DIFF |
4189 diff_need_scrollbind = TRUE; | |
4190 #endif | |
668 | 4191 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4192 // The tabpage line may have appeared or disappeared, may need to resize |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4193 // the frames for that. When the Vim window was resized need to update |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4194 // frame sizes too. Use the stored value of p_ch, so that it can be |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4195 // 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
|
4196 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
|
4197 clear_cmdline = TRUE; |
824 | 4198 p_ch = curtab->tp_ch_used; |
19143
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4199 |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4200 // When cmdheight is changed in a tab page with '<C-w>-', cmdline_row is |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4201 // changed but p_ch and tp_ch_used are not changed. Thus we also need to |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4202 // check cmdline_row. |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4203 if ((row < cmdline_row) && (cmdline_row <= Rows - p_ch)) |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4204 clear_cmdline = TRUE; |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4205 |
685 | 4206 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow |
4207 #ifdef FEAT_GUI_TABLINE | |
4208 && !gui_use_tabline() | |
4209 #endif | |
4210 )) | |
668 | 4211 shell_new_rows(); |
674 | 4212 if (curtab->tp_old_Columns != Columns && starting == 0) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4213 shell_new_columns(); // update window widths |
668 | 4214 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4215 lastused_tabpage = last_tab; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4216 |
668 | 4217 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4218 // When 'guioptions' includes 'L' or 'R' may have to remove or add |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4219 // scrollbars. Have to update them anyway. |
1906 | 4220 gui_may_update_scrollbars(); |
667 | 4221 #endif |
4222 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4223 // Apply autocommands after updating the display, when 'rows' and |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4224 // 'columns' have been set correctly. |
4354 | 4225 if (trigger_enter_autocmds) |
3582 | 4226 { |
4227 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); | |
4228 if (old_curbuf != curbuf) | |
4229 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4230 } | |
3413 | 4231 |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
4232 redraw_all_later(NOT_VALID); |
667 | 4233 } |
4234 | |
4235 /* | |
4236 * Go to tab page "n". For ":tab N" and "Ngt". | |
685 | 4237 * When "n" is 9999 go to the last tab page. |
667 | 4238 */ |
4239 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4240 goto_tabpage(int n) |
667 | 4241 { |
16405
840fa633ad64
patch 8.1.1207: some compilers give warning messages
Bram Moolenaar <Bram@vim.org>
parents:
16401
diff
changeset
|
4242 tabpage_T *tp = NULL; // shut up compiler |
682 | 4243 tabpage_T *ttp; |
667 | 4244 int i; |
4245 | |
857 | 4246 if (text_locked()) |
4247 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4248 // 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
|
4249 text_locked_msg(); |
857 | 4250 return; |
4251 } | |
4252 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4253 // If there is only one it can't work. |
675 | 4254 if (first_tabpage->tp_next == NULL) |
4255 { | |
4256 if (n > 1) | |
4257 beep_flush(); | |
4258 return; | |
4259 } | |
4260 | |
667 | 4261 if (n == 0) |
4262 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4263 // No count, go to next tab page, wrap around end. |
674 | 4264 if (curtab->tp_next == NULL) |
667 | 4265 tp = first_tabpage; |
4266 else | |
674 | 4267 tp = curtab->tp_next; |
667 | 4268 } |
682 | 4269 else if (n < 0) |
4270 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4271 // "gT": go to previous tab page, wrap around end. "N gT" repeats |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4272 // this N times. |
682 | 4273 ttp = curtab; |
4274 for (i = n; i < 0; ++i) | |
4275 { | |
4276 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL; | |
4277 tp = tp->tp_next) | |
4278 ; | |
4279 ttp = tp; | |
4280 } | |
4281 } | |
685 | 4282 else if (n == 9999) |
4283 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4284 // Go to last tab page. |
685 | 4285 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next) |
4286 ; | |
4287 } | |
667 | 4288 else |
4289 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4290 // Go to tab page "n". |
685 | 4291 tp = find_tabpage(n); |
671 | 4292 if (tp == NULL) |
4293 { | |
4294 beep_flush(); | |
4295 return; | |
4296 } | |
667 | 4297 } |
4298 | |
4354 | 4299 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 4300 |
4301 #ifdef FEAT_GUI_TABLINE | |
4302 if (gui_use_tabline()) | |
690 | 4303 gui_mch_set_curtab(tabpage_index(curtab)); |
685 | 4304 #endif |
4305 } | |
4306 | |
4307 /* | |
4308 * Go to tabpage "tp". | |
4354 | 4309 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4310 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
685 | 4311 * Note: doesn't update the GUI tab. |
4312 */ | |
4313 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4314 goto_tabpage_tp( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4315 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4316 int trigger_enter_autocmds, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4317 int trigger_leave_autocmds) |
685 | 4318 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4319 // Don't repeat a message in another tab page. |
2201
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4320 set_keep_msg(NULL, 0); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4321 |
4354 | 4322 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer, |
4323 trigger_leave_autocmds) == OK) | |
674 | 4324 { |
4325 if (valid_tabpage(tp)) | |
4354 | 4326 enter_tabpage(tp, curbuf, trigger_enter_autocmds, |
4327 trigger_leave_autocmds); | |
674 | 4328 else |
4354 | 4329 enter_tabpage(curtab, curbuf, trigger_enter_autocmds, |
4330 trigger_leave_autocmds); | |
674 | 4331 } |
667 | 4332 } |
7 | 4333 |
4334 /* | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4335 * Go to the last accessed tab page, if there is one. |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4336 * Return OK or FAIL |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4337 */ |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4338 int |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4339 goto_tabpage_lastused(void) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4340 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4341 if (valid_tabpage(lastused_tabpage)) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4342 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4343 goto_tabpage_tp(lastused_tabpage, TRUE, TRUE); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4344 return OK; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4345 } |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4346 return FAIL; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4347 } |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4348 |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4349 /* |
825 | 4350 * Enter window "wp" in tab page "tp". |
4351 * Also updates the GUI tab. | |
4352 */ | |
4353 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4354 goto_tabpage_win(tabpage_T *tp, win_T *wp) |
825 | 4355 { |
4354 | 4356 goto_tabpage_tp(tp, TRUE, TRUE); |
825 | 4357 if (curtab == tp && win_valid(wp)) |
4358 { | |
4359 win_enter(wp, TRUE); | |
4360 # ifdef FEAT_GUI_TABLINE | |
4361 if (gui_use_tabline()) | |
4362 gui_mch_set_curtab(tabpage_index(curtab)); | |
4363 # endif | |
4364 } | |
4365 } | |
4366 | |
4367 /* | |
6775 | 4368 * Move the current tab page to after tab page "nr". |
682 | 4369 */ |
4370 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4371 tabpage_move(int nr) |
682 | 4372 { |
6775 | 4373 int n = 1; |
4374 tabpage_T *tp, *tp_dst; | |
682 | 4375 |
4376 if (first_tabpage->tp_next == NULL) | |
4377 return; | |
4378 | |
6775 | 4379 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next) |
4380 ++n; | |
4381 | |
4382 if (tp == curtab || (nr > 0 && tp->tp_next != NULL | |
4383 && tp->tp_next == curtab)) | |
4384 return; | |
4385 | |
4386 tp_dst = tp; | |
4387 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4388 // Remove the current tab page from the list of tab pages. |
682 | 4389 if (curtab == first_tabpage) |
4390 first_tabpage = curtab->tp_next; | |
4391 else | |
4392 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4393 FOR_ALL_TABPAGES(tp) |
682 | 4394 if (tp->tp_next == curtab) |
4395 break; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4396 if (tp == NULL) // "cannot happen" |
682 | 4397 return; |
4398 tp->tp_next = curtab->tp_next; | |
4399 } | |
4400 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4401 // Re-insert it at the specified position. |
6775 | 4402 if (nr <= 0) |
682 | 4403 { |
4404 curtab->tp_next = first_tabpage; | |
4405 first_tabpage = curtab; | |
4406 } | |
4407 else | |
4408 { | |
6775 | 4409 curtab->tp_next = tp_dst->tp_next; |
4410 tp_dst->tp_next = curtab; | |
682 | 4411 } |
4412 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4413 // Need to redraw the tabline. Tab page contents doesn't change. |
682 | 4414 redraw_tabline = TRUE; |
4415 } | |
4416 | |
4417 | |
4418 /* | |
7 | 4419 * Go to another window. |
4420 * When jumping to another buffer, stop Visual mode. Do this before | |
4421 * changing windows so we can yank the selection into the '*' register. | |
4422 * When jumping to another window on the same buffer, adjust its cursor | |
4423 * position to keep the same Visual area. | |
4424 */ | |
4425 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4426 win_goto(win_T *wp) |
7 | 4427 { |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4428 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4429 win_T *owp = curwin; |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4430 #endif |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4431 |
19166
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4432 #ifdef FEAT_PROP_POPUP |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
4433 if (ERROR_IF_ANY_POPUP_WINDOW) |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
4434 return; |
19166
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4435 if (popup_is_popup(wp)) |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4436 { |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4437 emsg(_("E366: Not allowed to enter a popup window")); |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4438 return; |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4439 } |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4440 #endif |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20049
diff
changeset
|
4441 if (text_and_win_locked()) |
7 | 4442 { |
4443 beep_flush(); | |
633 | 4444 text_locked_msg(); |
7 | 4445 return; |
4446 } | |
819 | 4447 if (curbuf_locked()) |
4448 return; | |
631 | 4449 |
7 | 4450 if (wp->w_buffer != curbuf) |
4451 reset_VIsual_and_resel(); | |
4452 else if (VIsual_active) | |
4453 wp->w_cursor = curwin->w_cursor; | |
4454 | |
4455 #ifdef FEAT_GUI | |
4456 need_mouse_correct = TRUE; | |
4457 #endif | |
4458 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
|
4459 |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4460 #ifdef FEAT_CONCEAL |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15380
diff
changeset
|
4461 // Conceal cursor line in previous window, unconceal in current window. |
4094 | 4462 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
|
4463 redrawWinline(owp, owp->w_cursor.lnum); |
4094 | 4464 if (curwin->w_p_cole > 0 && !msg_scrolled) |
4465 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
|
4466 #endif |
7 | 4467 } |
4468 | |
4469 #if defined(FEAT_PERL) || defined(PROTO) | |
4470 /* | |
4471 * Find window number "winnr" (counting top to bottom). | |
4472 */ | |
4473 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4474 win_find_nr(int winnr) |
7 | 4475 { |
4476 win_T *wp; | |
4477 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4478 FOR_ALL_WINDOWS(wp) |
7 | 4479 if (--winnr == 0) |
4480 break; | |
4481 return wp; | |
4482 } | |
4483 #endif | |
4484 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4485 #if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO) |
4429 | 4486 /* |
4487 * Find the tabpage for window "win". | |
4488 */ | |
4489 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4490 win_find_tabpage(win_T *win) |
4429 | 4491 { |
4492 win_T *wp; | |
4493 tabpage_T *tp; | |
4494 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4495 FOR_ALL_TAB_WINDOWS(tp, wp) |
4429 | 4496 if (wp == win) |
4497 return tp; | |
4498 return NULL; | |
4499 } | |
4500 #endif | |
4501 | |
7 | 4502 /* |
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
|
4503 * 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
|
4504 * 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
|
4505 * 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
|
4506 * Returns the specified window if the neighbor is not found. |
7 | 4507 */ |
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
|
4508 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
|
4509 win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count) |
7 | 4510 { |
4511 frame_T *fr; | |
4512 frame_T *nfr; | |
4513 frame_T *foundfr; | |
4514 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4515 #ifdef FEAT_PROP_POPUP |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4516 if (popup_is_popup(wp)) |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4517 // popups don't have neighbors. |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4518 return NULL; |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4519 #endif |
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
|
4520 foundfr = wp->w_frame; |
7 | 4521 while (count--) |
4522 { | |
4523 /* | |
4524 * First go upwards in the tree of frames until we find a upwards or | |
4525 * downwards neighbor. | |
4526 */ | |
4527 fr = foundfr; | |
4528 for (;;) | |
4529 { | |
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
|
4530 if (fr == tp->tp_topframe) |
7 | 4531 goto end; |
4532 if (up) | |
4533 nfr = fr->fr_prev; | |
4534 else | |
4535 nfr = fr->fr_next; | |
4536 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL) | |
4537 break; | |
4538 fr = fr->fr_parent; | |
4539 } | |
4540 | |
4541 /* | |
4542 * Now go downwards to find the bottom or top frame in it. | |
4543 */ | |
4544 for (;;) | |
4545 { | |
4546 if (nfr->fr_layout == FR_LEAF) | |
4547 { | |
4548 foundfr = nfr; | |
4549 break; | |
4550 } | |
4551 fr = nfr->fr_child; | |
4552 if (nfr->fr_layout == FR_ROW) | |
4553 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4554 // Find the frame at the cursor row. |
7 | 4555 while (fr->fr_next != NULL |
4556 && 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
|
4557 <= wp->w_wincol + wp->w_wcol) |
7 | 4558 fr = fr->fr_next; |
4559 } | |
4560 if (nfr->fr_layout == FR_COL && up) | |
4561 while (fr->fr_next != NULL) | |
4562 fr = fr->fr_next; | |
4563 nfr = fr; | |
4564 } | |
4565 } | |
4566 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
|
4567 return foundfr != NULL ? foundfr->fr_win : NULL; |
7 | 4568 } |
4569 | |
4570 /* | |
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
|
4571 * Move to window above or below "count" times. |
7 | 4572 */ |
4573 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
|
4574 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
|
4575 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
|
4576 long count) |
7 | 4577 { |
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
|
4578 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
|
4579 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4580 #ifdef FEAT_PROP_POPUP |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4581 if (ERROR_IF_TERM_POPUP_WINDOW) |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4582 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4583 #endif |
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
|
4584 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
|
4585 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
|
4586 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
|
4587 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4588 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4589 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4590 * 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
|
4591 * 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
|
4592 * 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
|
4593 * 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
|
4594 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4595 win_T * |
16354
b3bc3ba07bef
patch 8.1.1182: some function prototypes are outdated
Bram Moolenaar <Bram@vim.org>
parents:
16271
diff
changeset
|
4596 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
|
4597 { |
7 | 4598 frame_T *fr; |
4599 frame_T *nfr; | |
4600 frame_T *foundfr; | |
4601 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4602 #ifdef FEAT_PROP_POPUP |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4603 if (popup_is_popup(wp)) |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4604 // popups don't have neighbors. |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4605 return NULL; |
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4606 #endif |
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
|
4607 foundfr = wp->w_frame; |
7 | 4608 while (count--) |
4609 { | |
4610 /* | |
4611 * First go upwards in the tree of frames until we find a left or | |
4612 * right neighbor. | |
4613 */ | |
4614 fr = foundfr; | |
4615 for (;;) | |
4616 { | |
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
|
4617 if (fr == tp->tp_topframe) |
7 | 4618 goto end; |
4619 if (left) | |
4620 nfr = fr->fr_prev; | |
4621 else | |
4622 nfr = fr->fr_next; | |
4623 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL) | |
4624 break; | |
4625 fr = fr->fr_parent; | |
4626 } | |
4627 | |
4628 /* | |
4629 * Now go downwards to find the leftmost or rightmost frame in it. | |
4630 */ | |
4631 for (;;) | |
4632 { | |
4633 if (nfr->fr_layout == FR_LEAF) | |
4634 { | |
4635 foundfr = nfr; | |
4636 break; | |
4637 } | |
4638 fr = nfr->fr_child; | |
4639 if (nfr->fr_layout == FR_COL) | |
4640 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4641 // Find the frame at the cursor row. |
7 | 4642 while (fr->fr_next != NULL |
4643 && 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
|
4644 <= wp->w_winrow + wp->w_wrow) |
7 | 4645 fr = fr->fr_next; |
4646 } | |
4647 if (nfr->fr_layout == FR_ROW && left) | |
4648 while (fr->fr_next != NULL) | |
4649 fr = fr->fr_next; | |
4650 nfr = fr; | |
4651 } | |
4652 } | |
4653 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
|
4654 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
|
4655 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4656 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4657 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4658 * 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
|
4659 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4660 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
|
4661 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
|
4662 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
|
4663 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
|
4664 { |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4665 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
|
4666 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4667 #ifdef FEAT_PROP_POPUP |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4668 if (ERROR_IF_TERM_POPUP_WINDOW) |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4669 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4670 #endif |
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
|
4671 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
|
4672 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
|
4673 win_goto(win); |
7 | 4674 } |
4675 | |
4676 /* | |
4677 * Make window "wp" the current window. | |
4678 */ | |
4679 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4680 win_enter(win_T *wp, int undo_sync) |
7 | 4681 { |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4682 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE); |
7 | 4683 } |
4684 | |
4685 /* | |
4686 * Make window wp the current window. | |
4687 * Can be called with "curwin_invalid" TRUE, which means that curwin has just | |
4688 * been closed and isn't valid. | |
4689 */ | |
4690 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4691 win_enter_ext( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4692 win_T *wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4693 int undo_sync, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4694 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
|
4695 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
|
4696 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
|
4697 int trigger_leave_autocmds) |
7 | 4698 { |
4699 int other_buffer = FALSE; | |
4700 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4701 if (wp == curwin && !curwin_invalid) // nothing to do |
7 | 4702 return; |
4703 | |
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
|
4704 #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
|
4705 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
|
4706 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
|
4707 #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
|
4708 |
4354 | 4709 if (!curwin_invalid && trigger_leave_autocmds) |
7 | 4710 { |
4711 /* | |
4712 * Be careful: If autocommands delete the window, return now. | |
4713 */ | |
4714 if (wp->w_buffer != curbuf) | |
4715 { | |
4716 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4717 other_buffer = TRUE; | |
4718 if (!win_valid(wp)) | |
4719 return; | |
4720 } | |
4721 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
4722 if (!win_valid(wp)) | |
4723 return; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4724 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4725 // autocmds may abort script processing |
7 | 4726 if (aborting()) |
4727 return; | |
4728 #endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4729 } |
7 | 4730 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4731 // sync undo before leaving the current buffer |
7 | 4732 if (undo_sync && curbuf != wp->w_buffer) |
825 | 4733 u_sync(FALSE); |
5977 | 4734 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4735 // Might need to scroll the old window before switching, e.g., when the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4736 // cursor was moved. |
5977 | 4737 update_topline(); |
4738 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4739 // may have to copy the buffer options when 'cpo' contains 'S' |
7 | 4740 if (wp->w_buffer != curbuf) |
4741 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP); | |
4742 if (!curwin_invalid) | |
4743 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4744 prevwin = curwin; // remember for CTRL-W p |
7 | 4745 curwin->w_redr_status = TRUE; |
4746 } | |
4747 curwin = wp; | |
4748 curbuf = wp->w_buffer; | |
4749 check_cursor(); | |
4750 if (!virtual_active()) | |
4751 curwin->w_cursor.coladd = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4752 changed_line_abv_curs(); // assume cursor position needs updating |
7 | 4753 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4754 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
|
4755 { |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4756 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
|
4757 |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4758 // 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
|
4759 // 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
|
4760 // local directory. |
7 | 4761 if (globaldir == NULL) |
4762 { | |
4763 char_u cwd[MAXPATHL]; | |
4764 | |
4765 if (mch_dirname(cwd, MAXPATHL) == OK) | |
4766 globaldir = vim_strsave(cwd); | |
4767 } | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4768 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
|
4769 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
|
4770 else |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4771 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
|
4772 |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4773 if (mch_chdir((char *)dirname) == 0) |
1757 | 4774 shorten_fnames(TRUE); |
7 | 4775 } |
4776 else if (globaldir != NULL) | |
4777 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4778 // Window doesn't have a local directory and we are not in the global |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4779 // 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
|
4780 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
|
4781 VIM_CLEAR(globaldir); |
7 | 4782 shorten_fnames(TRUE); |
4783 } | |
4784 | |
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
|
4785 #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
|
4786 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
|
4787 #endif |
18283
0cb608fc9c60
patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents:
18255
diff
changeset
|
4788 // Careful: autocommands may close the window and make "wp" invalid |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4789 if (trigger_new_autocmds) |
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4790 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 4791 if (trigger_enter_autocmds) |
4792 { | |
4793 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); | |
4794 if (other_buffer) | |
4795 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4796 } | |
7 | 4797 |
4798 #ifdef FEAT_TITLE | |
4799 maketitle(); | |
4800 #endif | |
4801 curwin->w_redr_status = TRUE; | |
18255
3f51e026de28
patch 8.1.2122: cannot build without terminal feature
Bram Moolenaar <Bram@vim.org>
parents:
18253
diff
changeset
|
4802 #ifdef FEAT_TERMINAL |
18283
0cb608fc9c60
patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents:
18255
diff
changeset
|
4803 if (bt_terminal(curwin->w_buffer)) |
18253
783f796a1426
patch 8.1.2121: mode is not updated when switching to terminal
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4804 // terminal is likely in another mode |
783f796a1426
patch 8.1.2121: mode is not updated when switching to terminal
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4805 redraw_mode = TRUE; |
18255
3f51e026de28
patch 8.1.2122: cannot build without terminal feature
Bram Moolenaar <Bram@vim.org>
parents:
18253
diff
changeset
|
4806 #endif |
672 | 4807 redraw_tabline = TRUE; |
7 | 4808 if (restart_edit) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4809 redraw_later(VALID); // causes status line redraw |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4810 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4811 // set window height to desired minimal value |
17472
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4812 if (curwin->w_height < p_wh && !curwin->w_p_wfh |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
4813 #ifdef FEAT_PROP_POPUP |
17472
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4814 && !popup_is_popup(curwin) |
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4815 #endif |
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4816 ) |
7 | 4817 win_setheight((int)p_wh); |
4818 else if (curwin->w_height == 0) | |
4819 win_setheight(1); | |
4820 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4821 // set window width to desired minimal value |
779 | 4822 if (curwin->w_width < p_wiw && !curwin->w_p_wfw) |
7 | 4823 win_setwidth((int)p_wiw); |
4824 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
4825 setmouse(); // in case jumped to/from help buffer |
7 | 4826 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4827 // 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
|
4828 DO_AUTOCHDIR; |
7 | 4829 } |
4830 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4831 |
7 | 4832 /* |
825 | 4833 * Jump to the first open window that contains buffer "buf", if one exists. |
4834 * Returns a pointer to the window found, otherwise NULL. | |
7 | 4835 */ |
4836 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4837 buf_jump_open_win(buf_T *buf) |
7 | 4838 { |
6307 | 4839 win_T *wp = NULL; |
4840 | |
4841 if (curwin->w_buffer == buf) | |
4842 wp = curwin; | |
4843 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4844 FOR_ALL_WINDOWS(wp) |
6307 | 4845 if (wp->w_buffer == buf) |
4846 break; | |
7 | 4847 if (wp != NULL) |
4848 win_enter(wp, FALSE); | |
4849 return wp; | |
4850 } | |
825 | 4851 |
4852 /* | |
4853 * Jump to the first open window in any tab page that contains buffer "buf", | |
4854 * if one exists. | |
4855 * Returns a pointer to the window found, otherwise NULL. | |
4856 */ | |
4857 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4858 buf_jump_open_tab(buf_T *buf) |
825 | 4859 { |
6307 | 4860 win_T *wp = buf_jump_open_win(buf); |
825 | 4861 tabpage_T *tp; |
4862 | |
4863 if (wp != NULL) | |
4864 return wp; | |
4865 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4866 FOR_ALL_TABPAGES(tp) |
825 | 4867 if (tp != curtab) |
4868 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
4869 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
825 | 4870 if (wp->w_buffer == buf) |
4871 break; | |
4872 if (wp != NULL) | |
4873 { | |
4874 goto_tabpage_win(tp, wp); | |
4875 if (curwin != wp) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4876 wp = NULL; // something went wrong |
825 | 4877 break; |
4878 } | |
4879 } | |
4880 return wp; | |
4881 } | |
7 | 4882 |
9223
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
4883 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
|
4884 |
7 | 4885 /* |
1906 | 4886 * Allocate a window structure and link it in the window list when "hidden" is |
4887 * FALSE. | |
7 | 4888 */ |
4889 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4890 win_alloc(win_T *after UNUSED, int hidden UNUSED) |
7 | 4891 { |
3263 | 4892 win_T *new_wp; |
7 | 4893 |
4894 /* | |
4895 * allocate window structure and linesizes arrays | |
4896 */ | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
4897 new_wp = ALLOC_CLEAR_ONE(win_T); |
4287 | 4898 if (new_wp == NULL) |
4899 return NULL; | |
4900 | |
4901 if (win_alloc_lines(new_wp) == FAIL) | |
3263 | 4902 { |
4903 vim_free(new_wp); | |
4287 | 4904 return NULL; |
4905 } | |
4906 | |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
4907 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
|
4908 |
4287 | 4909 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4910 // init w: variables |
4287 | 4911 new_wp->w_vars = dict_alloc(); |
4912 if (new_wp->w_vars == NULL) | |
4913 { | |
4914 win_free_lsize(new_wp); | |
4915 vim_free(new_wp); | |
4916 return NULL; | |
4917 } | |
4918 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE); | |
4919 #endif | |
4920 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4921 // Don't execute autocommands while the window is not properly |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4922 // initialized yet. gui_create_scrollbar() may trigger a FocusGained |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4923 // event. |
4287 | 4924 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4925 |
4287 | 4926 /* |
4927 * link the window in the window list | |
4928 */ | |
4929 if (!hidden) | |
4930 win_append(after, new_wp); | |
4931 new_wp->w_wincol = 0; | |
4932 new_wp->w_width = Columns; | |
4933 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4934 // position the display and the cursor at the top of the file. |
4287 | 4935 new_wp->w_topline = 1; |
7 | 4936 #ifdef FEAT_DIFF |
4287 | 4937 new_wp->w_topfill = 0; |
4938 #endif | |
4939 new_wp->w_botline = 2; | |
4940 new_wp->w_cursor.lnum = 1; | |
4941 new_wp->w_scbind_pos = 1; | |
4942 | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4943 // 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
|
4944 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
|
4945 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
|
4946 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4947 // We won't calculate w_fraction until resizing the window |
4287 | 4948 new_wp->w_fraction = 0; |
4949 new_wp->w_prev_fraction_row = -1; | |
7 | 4950 |
4951 #ifdef FEAT_GUI | |
4287 | 4952 if (gui.in_use) |
4953 { | |
4954 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT], | |
4955 SBAR_LEFT, new_wp); | |
4956 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT], | |
4957 SBAR_RIGHT, new_wp); | |
4958 } | |
7 | 4959 #endif |
4960 #ifdef FEAT_FOLDING | |
4287 | 4961 foldInitWin(new_wp); |
7 | 4962 #endif |
4287 | 4963 unblock_autocmds(); |
1326 | 4964 #ifdef FEAT_SEARCH_EXTRA |
4287 | 4965 new_wp->w_match_head = NULL; |
4966 new_wp->w_next_match_id = 4; | |
4967 #endif | |
3263 | 4968 return new_wp; |
7 | 4969 } |
4970 | |
4971 /* | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4972 * Remove window 'wp' from the window list and free the structure. |
7 | 4973 */ |
4974 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4975 win_free( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4976 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4977 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 4978 { |
4979 int i; | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4980 buf_T *buf; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4981 wininfo_T *wip; |
7 | 4982 |
1918 | 4983 #ifdef FEAT_FOLDING |
4984 clearFolding(wp); | |
4985 #endif | |
4986 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4987 // reduce the reference count to the argument list. |
1918 | 4988 alist_unlink(wp->w_alist); |
4989 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4990 // Don't execute autocommands while the window is halfway being deleted. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4991 // gui_mch_destroy_scrollbar() may trigger a FocusGained event. |
1410 | 4992 block_autocmds(); |
1114 | 4993 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4994 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4995 lua_window_free(wp); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4996 #endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4997 |
14 | 4998 #ifdef FEAT_MZSCHEME |
4999 mzscheme_window_free(wp); | |
5000 #endif | |
5001 | |
7 | 5002 #ifdef FEAT_PERL |
5003 perl_win_free(wp); | |
5004 #endif | |
5005 | |
5006 #ifdef FEAT_PYTHON | |
5007 python_window_free(wp); | |
5008 #endif | |
5009 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5010 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5011 python3_window_free(wp); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5012 #endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5013 |
7 | 5014 #ifdef FEAT_TCL |
5015 tcl_window_free(wp); | |
5016 #endif | |
5017 | |
5018 #ifdef FEAT_RUBY | |
5019 ruby_window_free(wp); | |
5020 #endif | |
5021 | |
5022 clear_winopt(&wp->w_onebuf_opt); | |
5023 clear_winopt(&wp->w_allbuf_opt); | |
5024 | |
5025 #ifdef FEAT_EVAL | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5026 vars_clear(&wp->w_vars->dv_hashtab); // free all w: variables |
4287 | 5027 hash_init(&wp->w_vars->dv_hashtab); |
5028 unref_var_dict(wp->w_vars); | |
7 | 5029 #endif |
5030 | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5031 { |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5032 tabpage_T *ttp; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5033 |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5034 if (prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5035 prevwin = NULL; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5036 FOR_ALL_TABPAGES(ttp) |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5037 if (ttp->tp_prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5038 ttp->tp_prevwin = NULL; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5039 } |
7 | 5040 win_free_lsize(wp); |
5041 | |
5042 for (i = 0; i < wp->w_tagstacklen; ++i) | |
17932
70ed823bdbb6
patch 8.1.1962: leaking memory when using tagfunc()
Bram Moolenaar <Bram@vim.org>
parents:
17893
diff
changeset
|
5043 { |
7 | 5044 vim_free(wp->w_tagstack[i].tagname); |
17932
70ed823bdbb6
patch 8.1.1962: leaking memory when using tagfunc()
Bram Moolenaar <Bram@vim.org>
parents:
17893
diff
changeset
|
5045 vim_free(wp->w_tagstack[i].user_data); |
70ed823bdbb6
patch 8.1.1962: leaking memory when using tagfunc()
Bram Moolenaar <Bram@vim.org>
parents:
17893
diff
changeset
|
5046 } |
7 | 5047 vim_free(wp->w_localdir); |
20711
d91b8d1e5198
patch 8.2.0909: cannot go back to the previous local directory
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
5048 vim_free(wp->w_prevdir); |
1326 | 5049 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5050 // Remove the window from the b_wininfo lists, it may happen that the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5051 // 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
|
5052 FOR_ALL_BUFFERS(buf) |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
5053 FOR_ALL_BUF_WININFO(buf, wip) |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5054 if (wip->wi_win == wp) |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5055 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5056 wininfo_T *wip2; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5057 |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5058 // If there already is an entry with "wi_win" set to NULL it |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5059 // must be removed, it would never be used. |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5060 for (wip2 = buf->b_wininfo; wip2 != NULL; wip2 = wip2->wi_next) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5061 if (wip2->wi_win == NULL) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5062 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5063 if (wip2->wi_next != NULL) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5064 wip2->wi_next->wi_prev = wip2->wi_prev; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5065 if (wip2->wi_prev == NULL) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5066 buf->b_wininfo = wip2->wi_next; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5067 else |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5068 wip2->wi_prev->wi_next = wip2->wi_next; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5069 free_wininfo(wip2); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5070 break; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5071 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5072 |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5073 wip->wi_win = NULL; |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5074 } |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5075 |
7 | 5076 #ifdef FEAT_SEARCH_EXTRA |
1326 | 5077 clear_matches(wp); |
5078 #endif | |
5079 | |
7 | 5080 #ifdef FEAT_JUMPLIST |
5081 free_jumplist(wp); | |
5082 #endif | |
5083 | |
643 | 5084 #ifdef FEAT_QUICKFIX |
5085 qf_free_all(wp); | |
5086 #endif | |
5087 | |
7 | 5088 #ifdef FEAT_GUI |
5089 if (gui.in_use) | |
5090 { | |
5091 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]); | |
5092 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]); | |
5093 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5094 #endif // FEAT_GUI |
7 | 5095 |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5096 #ifdef FEAT_MENU |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5097 remove_winbar(wp); |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5098 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5099 #ifdef FEAT_PROP_POPUP |
16890
5131023c5728
patch 8.1.1446: popup window callback not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16888
diff
changeset
|
5100 free_callback(&wp->w_close_cb); |
16880
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16874
diff
changeset
|
5101 free_callback(&wp->w_filter_cb); |
16888
ec61b6b79865
patch 8.1.1445: popup window border highlight not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
5102 for (i = 0; i < 4; ++i) |
ec61b6b79865
patch 8.1.1445: popup window border highlight not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
5103 VIM_CLEAR(wp->w_border_highlight[i]); |
17202
4b40e8821f56
patch 8.1.1600: cannot specify highlighting for popup window scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
17162
diff
changeset
|
5104 vim_free(wp->w_scrollbar_highlight); |
4b40e8821f56
patch 8.1.1600: cannot specify highlighting for popup window scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
17162
diff
changeset
|
5105 vim_free(wp->w_thumb_highlight); |
17119
b439e096a011
patch 8.1.1559: popup window title property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
17111
diff
changeset
|
5106 vim_free(wp->w_popup_title); |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17119
diff
changeset
|
5107 list_unref(wp->w_popup_mask); |
17514
984cc7258468
patch 8.1.1755: leaking memory when using a popup window mask
Bram Moolenaar <Bram@vim.org>
parents:
17472
diff
changeset
|
5108 vim_free(wp->w_popup_mask_cells); |
16880
998603a243d7
patch 8.1.1441: popup window filter not yet implemented
Bram Moolenaar <Bram@vim.org>
parents:
16874
diff
changeset
|
5109 #endif |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5110 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5111 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
5112 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
|
5113 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5114 |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5115 if (win_valid_any_tab(wp)) |
1918 | 5116 win_remove(wp, tp); |
5958 | 5117 if (autocmd_busy) |
5118 { | |
5119 wp->w_next = au_pending_free_win; | |
5120 au_pending_free_win = wp; | |
5121 } | |
5122 else | |
5123 vim_free(wp); | |
1114 | 5124 |
1410 | 5125 unblock_autocmds(); |
7 | 5126 } |
5127 | |
5128 /* | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5129 * 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
|
5130 * popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5131 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
5132 static int |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5133 win_unlisted(win_T *wp) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5134 { |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5135 return wp == aucmd_win || WIN_IS_POPUP(wp); |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5136 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5137 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5138 #if defined(FEAT_PROP_POPUP) || defined(PROTO) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5139 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5140 * 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
|
5141 * 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
|
5142 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5143 void |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5144 win_free_popup(win_T *win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5145 { |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5146 if (bt_popup(win->w_buffer)) |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
5147 win_close_buffer(win, DOBUF_WIPE_REUSE, FALSE); |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5148 else |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
5149 close_buffer(win, win->w_buffer, 0, FALSE, FALSE); |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5150 # 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
|
5151 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
|
5152 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
|
5153 # endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5154 vim_free(win->w_frame); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5155 win_free(win, NULL); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5156 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5157 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5158 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5159 /* |
7 | 5160 * Append window "wp" in the window list after window "after". |
5161 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
5162 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5163 win_append(win_T *after, win_T *wp) |
7 | 5164 { |
5165 win_T *before; | |
5166 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5167 if (after == NULL) // after NULL is in front of the first |
7 | 5168 before = firstwin; |
5169 else | |
5170 before = after->w_next; | |
5171 | |
5172 wp->w_next = before; | |
5173 wp->w_prev = after; | |
5174 if (after == NULL) | |
5175 firstwin = wp; | |
5176 else | |
5177 after->w_next = wp; | |
5178 if (before == NULL) | |
5179 lastwin = wp; | |
5180 else | |
5181 before->w_prev = wp; | |
5182 } | |
5183 | |
5184 /* | |
5185 * Remove a window from the window list. | |
5186 */ | |
1906 | 5187 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5188 win_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5189 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5190 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 5191 { |
5192 if (wp->w_prev != NULL) | |
5193 wp->w_prev->w_next = wp->w_next; | |
671 | 5194 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
|
5195 firstwin = curtab->tp_firstwin = wp->w_next; |
7 | 5196 else |
671 | 5197 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
|
5198 |
7 | 5199 if (wp->w_next != NULL) |
5200 wp->w_next->w_prev = wp->w_prev; | |
671 | 5201 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
|
5202 lastwin = curtab->tp_lastwin = wp->w_prev; |
7 | 5203 else |
671 | 5204 tp->tp_lastwin = wp->w_prev; |
7 | 5205 } |
5206 | |
5207 /* | |
5208 * Append frame "frp" in a frame list after frame "after". | |
5209 */ | |
5210 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5211 frame_append(frame_T *after, frame_T *frp) |
7 | 5212 { |
5213 frp->fr_next = after->fr_next; | |
5214 after->fr_next = frp; | |
5215 if (frp->fr_next != NULL) | |
5216 frp->fr_next->fr_prev = frp; | |
5217 frp->fr_prev = after; | |
5218 } | |
5219 | |
5220 /* | |
5221 * Insert frame "frp" in a frame list before frame "before". | |
5222 */ | |
5223 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5224 frame_insert(frame_T *before, frame_T *frp) |
7 | 5225 { |
5226 frp->fr_next = before; | |
5227 frp->fr_prev = before->fr_prev; | |
5228 before->fr_prev = frp; | |
5229 if (frp->fr_prev != NULL) | |
5230 frp->fr_prev->fr_next = frp; | |
5231 else | |
5232 frp->fr_parent->fr_child = frp; | |
5233 } | |
5234 | |
5235 /* | |
5236 * Remove a frame from a frame list. | |
5237 */ | |
5238 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5239 frame_remove(frame_T *frp) |
7 | 5240 { |
5241 if (frp->fr_prev != NULL) | |
5242 frp->fr_prev->fr_next = frp->fr_next; | |
5243 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
|
5244 { |
7 | 5245 frp->fr_parent->fr_child = frp->fr_next; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5246 // special case: topframe->fr_child == frp |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
5247 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
|
5248 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
|
5249 } |
7 | 5250 if (frp->fr_next != NULL) |
5251 frp->fr_next->fr_prev = frp->fr_prev; | |
5252 } | |
5253 | |
5254 /* | |
5255 * Allocate w_lines[] for window "wp". | |
5256 * Return FAIL for failure, OK for success. | |
5257 */ | |
5258 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5259 win_alloc_lines(win_T *wp) |
7 | 5260 { |
5261 wp->w_lines_valid = 0; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
5262 wp->w_lines = ALLOC_CLEAR_MULT(wline_T, Rows ); |
7 | 5263 if (wp->w_lines == NULL) |
5264 return FAIL; | |
5265 return OK; | |
5266 } | |
5267 | |
5268 /* | |
5269 * free lsize arrays for a window | |
5270 */ | |
5271 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5272 win_free_lsize(win_T *wp) |
7 | 5273 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5274 // TODO: why would wp be NULL here? |
5952 | 5275 if (wp != NULL) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
5276 VIM_CLEAR(wp->w_lines); |
7 | 5277 } |
5278 | |
5279 /* | |
5280 * Called from win_new_shellsize() after Rows changed. | |
671 | 5281 * This only does the current tab page, others must be done when made active. |
7 | 5282 */ |
5283 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5284 shell_new_rows(void) |
7 | 5285 { |
667 | 5286 int h = (int)ROWS_AVAIL; |
7 | 5287 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5288 if (firstwin == NULL) // not initialized yet |
7 | 5289 return; |
5290 if (h < frame_minheight(topframe, NULL)) | |
5291 h = frame_minheight(topframe, NULL); | |
779 | 5292 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5293 // First try setting the heights of windows with 'winfixheight'. If |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5294 // that doesn't result in the right height, forget about that option. |
7 | 5295 frame_new_height(topframe, h, FALSE, TRUE); |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5296 if (!frame_check_height(topframe, h)) |
7 | 5297 frame_new_height(topframe, h, FALSE, FALSE); |
5298 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5299 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5300 compute_cmdrow(); |
824 | 5301 curtab->tp_ch_used = p_ch; |
170 | 5302 |
7 | 5303 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5304 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5305 if (p_ea) |
5306 win_equal(curwin, FALSE, 'v'); | |
5307 #endif | |
5308 } | |
5309 | |
5310 /* | |
5311 * Called from win_new_shellsize() after Columns changed. | |
5312 */ | |
5313 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5314 shell_new_columns(void) |
7 | 5315 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5316 if (firstwin == NULL) // not initialized yet |
7 | 5317 return; |
779 | 5318 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5319 // First try setting the widths of windows with 'winfixwidth'. If that |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5320 // doesn't result in the right width, forget about that option. |
779 | 5321 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
|
5322 if (!frame_check_width(topframe, Columns)) |
779 | 5323 frame_new_width(topframe, (int)Columns, FALSE, FALSE); |
5324 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5325 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5326 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5327 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5328 if (p_ea) |
5329 win_equal(curwin, FALSE, 'h'); | |
5330 #endif | |
5331 } | |
5332 | |
5333 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
5334 /* | |
5335 * Save the size of all windows in "gap". | |
5336 */ | |
5337 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5338 win_size_save(garray_T *gap) |
7 | 5339 |
5340 { | |
5341 win_T *wp; | |
5342 | |
5343 ga_init2(gap, (int)sizeof(int), 1); | |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5344 if (ga_grow(gap, win_count() * 2 + 1) == OK) |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5345 { |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5346 // first entry is value of 'lines' |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5347 ((int *)gap->ga_data)[gap->ga_len++] = Rows; |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5348 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5349 FOR_ALL_WINDOWS(wp) |
7 | 5350 { |
5351 ((int *)gap->ga_data)[gap->ga_len++] = | |
5352 wp->w_width + wp->w_vsep_width; | |
5353 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height; | |
5354 } | |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5355 } |
7 | 5356 } |
5357 | |
5358 /* | |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5359 * Restore window sizes, but only if the number of windows is still the same |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5360 * and 'lines' didn't change. |
7 | 5361 * Does not free the growarray. |
5362 */ | |
5363 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5364 win_size_restore(garray_T *gap) |
7 | 5365 { |
5366 win_T *wp; | |
6058 | 5367 int i, j; |
7 | 5368 |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5369 if (win_count() * 2 + 1 == gap->ga_len |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5370 && ((int *)gap->ga_data)[0] == Rows) |
7 | 5371 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5372 // The order matters, because frames contain other frames, but it's |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5373 // difficult to get right. The easy way out is to do it twice. |
6058 | 5374 for (j = 0; j < 2; ++j) |
7 | 5375 { |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5376 i = 1; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5377 FOR_ALL_WINDOWS(wp) |
6058 | 5378 { |
5379 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]); | |
5380 win_setheight_win(((int *)gap->ga_data)[i++], wp); | |
5381 } | |
7 | 5382 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5383 // recompute the window positions |
7 | 5384 (void)win_comp_pos(); |
5385 } | |
5386 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5387 #endif // FEAT_CMDWIN |
7 | 5388 |
5389 /* | |
5390 * Update the position for all windows, using the width and height of the | |
5391 * frames. | |
5392 * Returns the row just after the last window. | |
5393 */ | |
668 | 5394 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5395 win_comp_pos(void) |
7 | 5396 { |
685 | 5397 int row = tabline_height(); |
7 | 5398 int col = 0; |
5399 | |
5400 frame_comp_pos(topframe, &row, &col); | |
5401 return row; | |
5402 } | |
5403 | |
5404 /* | |
5405 * Update the position of the windows in frame "topfrp", using the width and | |
5406 * height of the frames. | |
5407 * "*row" and "*col" are the top-left position of the frame. They are updated | |
5408 * to the bottom-right position plus one. | |
5409 */ | |
5410 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5411 frame_comp_pos(frame_T *topfrp, int *row, int *col) |
7 | 5412 { |
5413 win_T *wp; | |
5414 frame_T *frp; | |
5415 int startcol; | |
5416 int startrow; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5417 int h; |
7 | 5418 |
5419 wp = topfrp->fr_win; | |
5420 if (wp != NULL) | |
5421 { | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
5422 if (wp->w_winrow != *row || wp->w_wincol != *col) |
7 | 5423 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5424 // position changed, redraw |
7 | 5425 wp->w_winrow = *row; |
5426 wp->w_wincol = *col; | |
5427 redraw_win_later(wp, NOT_VALID); | |
5428 wp->w_redr_status = TRUE; | |
5429 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5430 // WinBar will not show if the window height is zero |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5431 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
|
5432 *row += h > topfrp->fr_height ? topfrp->fr_height : h; |
7 | 5433 *col += wp->w_width + wp->w_vsep_width; |
5434 } | |
5435 else | |
5436 { | |
5437 startrow = *row; | |
5438 startcol = *col; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5439 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 5440 { |
5441 if (topfrp->fr_layout == FR_ROW) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5442 *row = startrow; // all frames are at the same row |
7 | 5443 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5444 *col = startcol; // all frames are at the same col |
7 | 5445 frame_comp_pos(frp, row, col); |
5446 } | |
5447 } | |
5448 } | |
5449 | |
5450 /* | |
5451 * Set current window height and take care of repositioning other windows to | |
5452 * fit around it. | |
5453 */ | |
5454 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5455 win_setheight(int height) |
7 | 5456 { |
5457 win_setheight_win(height, curwin); | |
5458 } | |
5459 | |
5460 /* | |
5461 * Set the window height of window "win" and take care of repositioning other | |
5462 * windows to fit around it. | |
5463 */ | |
5464 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5465 win_setheight_win(int height, win_T *win) |
7 | 5466 { |
5467 int row; | |
5468 | |
5469 if (win == curwin) | |
5470 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5471 // Always keep current window at least one line high, even when |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5472 // 'winminheight' is zero. |
7 | 5473 if (height < p_wmh) |
5474 height = p_wmh; | |
5475 if (height == 0) | |
5476 height = 1; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5477 height += WINBAR_HEIGHT(curwin); |
7 | 5478 } |
5479 | |
5480 frame_setheight(win->w_frame, height + win->w_status_height); | |
5481 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5482 // recompute the window positions |
7 | 5483 row = win_comp_pos(); |
5484 | |
5485 /* | |
5486 * If there is extra space created between the last window and the command | |
5487 * line, clear it. | |
5488 */ | |
5489 if (full_screen && msg_scrolled == 0 && row < cmdline_row) | |
5490 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5491 cmdline_row = row; | |
5492 msg_row = row; | |
5493 msg_col = 0; | |
5494 | |
5495 redraw_all_later(NOT_VALID); | |
5496 } | |
5497 | |
5498 /* | |
5499 * Set the height of a frame to "height" and take care that all frames and | |
5500 * windows inside it are resized. Also resize frames on the left and right if | |
5501 * the are in the same FR_ROW frame. | |
5502 * | |
5503 * Strategy: | |
5504 * If the frame is part of a FR_COL frame, try fitting the frame in that | |
5505 * frame. If that doesn't work (the FR_COL frame is too small), recursively | |
5506 * go to containing frames to resize them and make room. | |
5507 * If the frame is part of a FR_ROW frame, all frames must be resized as well. | |
5508 * Check for the minimal height of the FR_ROW frame. | |
5509 * At the top level we can also use change the command line height. | |
5510 */ | |
5511 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5512 frame_setheight(frame_T *curfrp, int height) |
7 | 5513 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5514 int room; // total number of lines available |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5515 int take; // number of lines taken from other windows |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5516 int room_cmdline; // lines available from cmdline |
7 | 5517 int run; |
5518 frame_T *frp; | |
5519 int h; | |
5520 int room_reserved; | |
5521 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5522 // If the height already is the desired value, nothing to do. |
7 | 5523 if (curfrp->fr_height == height) |
5524 return; | |
5525 | |
5526 if (curfrp->fr_parent == NULL) | |
5527 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5528 // topframe: can only change the command line |
667 | 5529 if (height > ROWS_AVAIL) |
5530 height = ROWS_AVAIL; | |
7 | 5531 if (height > 0) |
5532 frame_new_height(curfrp, height, FALSE, FALSE); | |
5533 } | |
5534 else if (curfrp->fr_parent->fr_layout == FR_ROW) | |
5535 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5536 // Row of frames: Also need to resize frames left and right of this |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5537 // one. First check for the minimal height of these. |
7 | 5538 h = frame_minheight(curfrp->fr_parent, NULL); |
5539 if (height < h) | |
5540 height = h; | |
5541 frame_setheight(curfrp->fr_parent, height); | |
5542 } | |
5543 else | |
5544 { | |
5545 /* | |
5546 * Column of frames: try to change only frames in this column. | |
5547 */ | |
5548 /* | |
5549 * Do this twice: | |
5550 * 1: compute room available, if it's not enough try resizing the | |
5551 * containing frame. | |
5552 * 2: compute the room available and adjust the height to it. | |
5553 * Try not to reduce the height of a window with 'winfixheight' set. | |
5554 */ | |
5555 for (run = 1; run <= 2; ++run) | |
5556 { | |
5557 room = 0; | |
5558 room_reserved = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5559 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5560 { |
5561 if (frp != curfrp | |
5562 && frp->fr_win != NULL | |
5563 && frp->fr_win->w_p_wfh) | |
5564 room_reserved += frp->fr_height; | |
5565 room += frp->fr_height; | |
5566 if (frp != curfrp) | |
5567 room -= frame_minheight(frp, NULL); | |
5568 } | |
5569 if (curfrp->fr_width != Columns) | |
5570 room_cmdline = 0; | |
5571 else | |
5572 { | |
5573 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
|
5574 + VISIBLE_HEIGHT(lastwin) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5575 + lastwin->w_status_height); |
7 | 5576 if (room_cmdline < 0) |
5577 room_cmdline = 0; | |
5578 } | |
5579 | |
5580 if (height <= room + room_cmdline) | |
5581 break; | |
5582 if (run == 2 || curfrp->fr_width == Columns) | |
5583 { | |
5584 if (height > room + room_cmdline) | |
5585 height = room + room_cmdline; | |
5586 break; | |
5587 } | |
5588 frame_setheight(curfrp->fr_parent, height | |
5589 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1); | |
5590 } | |
5591 | |
5592 /* | |
5593 * Compute the number of lines we will take from others frames (can be | |
5594 * negative!). | |
5595 */ | |
5596 take = height - curfrp->fr_height; | |
5597 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5598 // If there is not enough room, also reduce the height of a window |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5599 // with 'winfixheight' set. |
7 | 5600 if (height > room + room_cmdline - room_reserved) |
5601 room_reserved = room + room_cmdline - height; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5602 // If there is only a 'winfixheight' window and making the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5603 // window smaller, need to make the other window taller. |
7 | 5604 if (take < 0 && room - curfrp->fr_height < room_reserved) |
5605 room_reserved = 0; | |
5606 | |
5607 if (take > 0 && room_cmdline > 0) | |
5608 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5609 // use lines from cmdline first |
7 | 5610 if (take < room_cmdline) |
5611 room_cmdline = take; | |
5612 take -= room_cmdline; | |
5613 topframe->fr_height += room_cmdline; | |
5614 } | |
5615 | |
5616 /* | |
5617 * set the current frame to the new height | |
5618 */ | |
5619 frame_new_height(curfrp, height, FALSE, FALSE); | |
5620 | |
5621 /* | |
5622 * First take lines from the frames after the current frame. If | |
5623 * that is not enough, takes lines from frames above the current | |
5624 * frame. | |
5625 */ | |
5626 for (run = 0; run < 2; ++run) | |
5627 { | |
5628 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5629 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 5630 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5631 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 5632 while (frp != NULL && take != 0) |
5633 { | |
5634 h = frame_minheight(frp, NULL); | |
5635 if (room_reserved > 0 | |
5636 && frp->fr_win != NULL | |
5637 && frp->fr_win->w_p_wfh) | |
5638 { | |
5639 if (room_reserved >= frp->fr_height) | |
5640 room_reserved -= frp->fr_height; | |
5641 else | |
5642 { | |
5643 if (frp->fr_height - room_reserved > take) | |
5644 room_reserved = frp->fr_height - take; | |
5645 take -= frp->fr_height - room_reserved; | |
5646 frame_new_height(frp, room_reserved, FALSE, FALSE); | |
5647 room_reserved = 0; | |
5648 } | |
5649 } | |
5650 else | |
5651 { | |
5652 if (frp->fr_height - take < h) | |
5653 { | |
5654 take -= frp->fr_height - h; | |
5655 frame_new_height(frp, h, FALSE, FALSE); | |
5656 } | |
5657 else | |
5658 { | |
5659 frame_new_height(frp, frp->fr_height - take, | |
5660 FALSE, FALSE); | |
5661 take = 0; | |
5662 } | |
5663 } | |
5664 if (run == 0) | |
5665 frp = frp->fr_next; | |
5666 else | |
5667 frp = frp->fr_prev; | |
5668 } | |
5669 } | |
5670 } | |
5671 } | |
5672 | |
5673 /* | |
5674 * Set current window width and take care of repositioning other windows to | |
5675 * fit around it. | |
5676 */ | |
5677 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5678 win_setwidth(int width) |
7 | 5679 { |
5680 win_setwidth_win(width, curwin); | |
5681 } | |
5682 | |
5683 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5684 win_setwidth_win(int width, win_T *wp) |
7 | 5685 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5686 // Always keep current window at least one column wide, even when |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5687 // 'winminwidth' is zero. |
7 | 5688 if (wp == curwin) |
5689 { | |
5690 if (width < p_wmw) | |
5691 width = p_wmw; | |
5692 if (width == 0) | |
5693 width = 1; | |
5694 } | |
23402
65718283239b
patch 8.2.2244: crash when making the window width negative
Bram Moolenaar <Bram@vim.org>
parents:
23386
diff
changeset
|
5695 else if (width < 0) |
65718283239b
patch 8.2.2244: crash when making the window width negative
Bram Moolenaar <Bram@vim.org>
parents:
23386
diff
changeset
|
5696 width = 0; |
7 | 5697 |
5698 frame_setwidth(wp->w_frame, width + wp->w_vsep_width); | |
5699 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5700 // recompute the window positions |
7 | 5701 (void)win_comp_pos(); |
5702 | |
5703 redraw_all_later(NOT_VALID); | |
5704 } | |
5705 | |
5706 /* | |
5707 * Set the width of a frame to "width" and take care that all frames and | |
5708 * windows inside it are resized. Also resize frames above and below if the | |
5709 * are in the same FR_ROW frame. | |
5710 * | |
5711 * Strategy is similar to frame_setheight(). | |
5712 */ | |
5713 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5714 frame_setwidth(frame_T *curfrp, int width) |
7 | 5715 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5716 int room; // total number of lines available |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5717 int take; // number of lines taken from other windows |
7 | 5718 int run; |
5719 frame_T *frp; | |
5720 int w; | |
779 | 5721 int room_reserved; |
7 | 5722 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5723 // If the width already is the desired value, nothing to do. |
7 | 5724 if (curfrp->fr_width == width) |
5725 return; | |
5726 | |
5727 if (curfrp->fr_parent == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5728 // topframe: can't change width |
7 | 5729 return; |
5730 | |
5731 if (curfrp->fr_parent->fr_layout == FR_COL) | |
5732 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5733 // Column of frames: Also need to resize frames above and below of |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5734 // this one. First check for the minimal width of these. |
7 | 5735 w = frame_minwidth(curfrp->fr_parent, NULL); |
5736 if (width < w) | |
5737 width = w; | |
5738 frame_setwidth(curfrp->fr_parent, width); | |
5739 } | |
5740 else | |
5741 { | |
5742 /* | |
5743 * Row of frames: try to change only frames in this row. | |
5744 * | |
5745 * Do this twice: | |
5746 * 1: compute room available, if it's not enough try resizing the | |
5747 * containing frame. | |
5748 * 2: compute the room available and adjust the width to it. | |
5749 */ | |
5750 for (run = 1; run <= 2; ++run) | |
5751 { | |
5752 room = 0; | |
779 | 5753 room_reserved = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5754 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5755 { |
779 | 5756 if (frp != curfrp |
5757 && frp->fr_win != NULL | |
5758 && frp->fr_win->w_p_wfw) | |
5759 room_reserved += frp->fr_width; | |
7 | 5760 room += frp->fr_width; |
5761 if (frp != curfrp) | |
5762 room -= frame_minwidth(frp, NULL); | |
5763 } | |
5764 | |
5765 if (width <= room) | |
5766 break; | |
667 | 5767 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL) |
7 | 5768 { |
5769 if (width > room) | |
5770 width = room; | |
5771 break; | |
5772 } | |
5773 frame_setwidth(curfrp->fr_parent, width | |
5774 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1); | |
5775 } | |
5776 | |
5777 /* | |
5778 * Compute the number of lines we will take from others frames (can be | |
5779 * negative!). | |
5780 */ | |
5781 take = width - curfrp->fr_width; | |
5782 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5783 // If there is not enough room, also reduce the width of a window |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5784 // with 'winfixwidth' set. |
779 | 5785 if (width > room - room_reserved) |
5786 room_reserved = room - width; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5787 // If there is only a 'winfixwidth' window and making the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5788 // window smaller, need to make the other window narrower. |
779 | 5789 if (take < 0 && room - curfrp->fr_width < room_reserved) |
5790 room_reserved = 0; | |
5791 | |
7 | 5792 /* |
5793 * set the current frame to the new width | |
5794 */ | |
779 | 5795 frame_new_width(curfrp, width, FALSE, FALSE); |
7 | 5796 |
5797 /* | |
5798 * First take lines from the frames right of the current frame. If | |
5799 * that is not enough, takes lines from frames left of the current | |
5800 * frame. | |
5801 */ | |
5802 for (run = 0; run < 2; ++run) | |
5803 { | |
5804 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5805 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 5806 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5807 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 5808 while (frp != NULL && take != 0) |
5809 { | |
5810 w = frame_minwidth(frp, NULL); | |
779 | 5811 if (room_reserved > 0 |
5812 && frp->fr_win != NULL | |
5813 && frp->fr_win->w_p_wfw) | |
7 | 5814 { |
779 | 5815 if (room_reserved >= frp->fr_width) |
5816 room_reserved -= frp->fr_width; | |
5817 else | |
5818 { | |
5819 if (frp->fr_width - room_reserved > take) | |
5820 room_reserved = frp->fr_width - take; | |
5821 take -= frp->fr_width - room_reserved; | |
5822 frame_new_width(frp, room_reserved, FALSE, FALSE); | |
5823 room_reserved = 0; | |
5824 } | |
7 | 5825 } |
5826 else | |
5827 { | |
779 | 5828 if (frp->fr_width - take < w) |
5829 { | |
5830 take -= frp->fr_width - w; | |
5831 frame_new_width(frp, w, FALSE, FALSE); | |
5832 } | |
5833 else | |
5834 { | |
5835 frame_new_width(frp, frp->fr_width - take, | |
5836 FALSE, FALSE); | |
5837 take = 0; | |
5838 } | |
7 | 5839 } |
5840 if (run == 0) | |
5841 frp = frp->fr_next; | |
5842 else | |
5843 frp = frp->fr_prev; | |
5844 } | |
5845 } | |
5846 } | |
5847 } | |
5848 | |
5849 /* | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5850 * Check 'winminheight' for a valid value and reduce it if needed. |
7 | 5851 */ |
5852 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5853 win_setminheight(void) |
7 | 5854 { |
5855 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
|
5856 int needed; |
7 | 5857 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
|
5858 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5859 // loop until there is a 'winminheight' that is possible |
7 | 5860 while (p_wmh > 0) |
5861 { | |
24108
0a5eba7e6660
patch 8.2.2595: setting 'winminheight' may cause 'lines' to change
Bram Moolenaar <Bram@vim.org>
parents:
24037
diff
changeset
|
5862 room = Rows - p_ch; |
0a5eba7e6660
patch 8.2.2595: setting 'winminheight' may cause 'lines' to change
Bram Moolenaar <Bram@vim.org>
parents:
24037
diff
changeset
|
5863 needed = min_rows() - 1; // 1 was added for the cmdline |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5864 if (room >= needed) |
7 | 5865 break; |
5866 --p_wmh; | |
5867 if (first) | |
5868 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5869 emsg(_(e_noroom)); |
7 | 5870 first = FALSE; |
5871 } | |
5872 } | |
5873 } | |
5874 | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5875 /* |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5876 * 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
|
5877 */ |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5878 void |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5879 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
|
5880 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5881 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
|
5882 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
|
5883 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
|
5884 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5885 // 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
|
5886 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
|
5887 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5888 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
|
5889 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
|
5890 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
|
5891 break; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5892 --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
|
5893 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
|
5894 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5895 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
|
5896 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
|
5897 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5898 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5899 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5900 |
7 | 5901 /* |
5902 * Status line of dragwin is dragged "offset" lines down (negative is up). | |
5903 */ | |
5904 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5905 win_drag_status_line(win_T *dragwin, int offset) |
7 | 5906 { |
5907 frame_T *curfr; | |
5908 frame_T *fr; | |
5909 int room; | |
5910 int row; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5911 int up; // if TRUE, drag status line up, otherwise down |
7 | 5912 int n; |
5913 | |
5914 fr = dragwin->w_frame; | |
5915 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5916 if (fr != topframe) // more than one window |
7 | 5917 { |
5918 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5919 // When the parent frame is not a column of frames, its parent should |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5920 // be. |
7 | 5921 if (fr->fr_layout != FR_COL) |
5922 { | |
5923 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5924 if (fr != topframe) // only a row of windows, may drag statusline |
7 | 5925 fr = fr->fr_parent; |
5926 } | |
5927 } | |
5928 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5929 // If this is the last frame in a column, may want to resize the parent |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5930 // frame instead (go two up to skip a row of frames). |
7 | 5931 while (curfr != topframe && curfr->fr_next == NULL) |
5932 { | |
5933 if (fr != topframe) | |
5934 fr = fr->fr_parent; | |
5935 curfr = fr; | |
5936 if (fr != topframe) | |
5937 fr = fr->fr_parent; | |
5938 } | |
5939 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5940 if (offset < 0) // drag up |
7 | 5941 { |
5942 up = TRUE; | |
5943 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5944 // sum up the room of the current frame and above it |
7 | 5945 if (fr == curfr) |
5946 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5947 // only one window |
7 | 5948 room = fr->fr_height - frame_minheight(fr, NULL); |
5949 } | |
5950 else | |
5951 { | |
5952 room = 0; | |
5953 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5954 { | |
5955 room += fr->fr_height - frame_minheight(fr, NULL); | |
5956 if (fr == curfr) | |
5957 break; | |
5958 } | |
5959 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5960 fr = curfr->fr_next; // put fr at frame that grows |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5961 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5962 else // drag down |
7 | 5963 { |
5964 up = FALSE; | |
5965 /* | |
5966 * Only dragging the last status line can reduce p_ch. | |
5967 */ | |
5968 room = Rows - cmdline_row; | |
5969 if (curfr->fr_next == NULL) | |
5970 room -= 1; | |
5971 else | |
5972 room -= p_ch; | |
5973 if (room < 0) | |
5974 room = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5975 // 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
|
5976 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 5977 room += fr->fr_height - frame_minheight(fr, NULL); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5978 fr = curfr; // put fr at window that grows |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5979 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5980 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5981 if (room < offset) // Not enough room |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5982 offset = room; // Move as far as we can |
7 | 5983 if (offset <= 0) |
5984 return; | |
5985 | |
5986 /* | |
5987 * Grow frame fr by "offset" lines. | |
5988 * Doesn't happen when dragging the last status line up. | |
5989 */ | |
5990 if (fr != NULL) | |
5991 frame_new_height(fr, fr->fr_height + offset, up, FALSE); | |
5992 | |
5993 if (up) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5994 fr = curfr; // current frame gets smaller |
7 | 5995 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5996 fr = curfr->fr_next; // next frame gets smaller |
7 | 5997 |
5998 /* | |
5999 * Now make the other frames smaller. | |
6000 */ | |
6001 while (fr != NULL && offset > 0) | |
6002 { | |
6003 n = frame_minheight(fr, NULL); | |
6004 if (fr->fr_height - offset <= n) | |
6005 { | |
6006 offset -= fr->fr_height - n; | |
6007 frame_new_height(fr, n, !up, FALSE); | |
6008 } | |
6009 else | |
6010 { | |
6011 frame_new_height(fr, fr->fr_height - offset, !up, FALSE); | |
6012 break; | |
6013 } | |
6014 if (up) | |
6015 fr = fr->fr_prev; | |
6016 else | |
6017 fr = fr->fr_next; | |
6018 } | |
6019 row = win_comp_pos(); | |
6020 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
6021 cmdline_row = row; | |
6022 p_ch = Rows - cmdline_row; | |
6023 if (p_ch < 1) | |
6024 p_ch = 1; | |
824 | 6025 curtab->tp_ch_used = p_ch; |
737 | 6026 redraw_all_later(SOME_VALID); |
7 | 6027 showmode(); |
6028 } | |
6029 | |
6030 /* | |
6031 * Separator line of dragwin is dragged "offset" lines right (negative is left). | |
6032 */ | |
6033 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6034 win_drag_vsep_line(win_T *dragwin, int offset) |
7 | 6035 { |
6036 frame_T *curfr; | |
6037 frame_T *fr; | |
6038 int room; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6039 int left; // if TRUE, drag separator line left, otherwise right |
7 | 6040 int n; |
6041 | |
6042 fr = dragwin->w_frame; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6043 if (fr == topframe) // only one window (cannot happen?) |
7 | 6044 return; |
6045 curfr = fr; | |
6046 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6047 // When the parent frame is not a row of frames, its parent should be. |
7 | 6048 if (fr->fr_layout != FR_ROW) |
6049 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6050 if (fr == topframe) // only a column of windows (cannot happen?) |
7 | 6051 return; |
6052 curfr = fr; | |
6053 fr = fr->fr_parent; | |
6054 } | |
6055 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6056 // If this is the last frame in a row, may want to resize a parent |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6057 // frame instead. |
7 | 6058 while (curfr->fr_next == NULL) |
6059 { | |
6060 if (fr == topframe) | |
6061 break; | |
6062 curfr = fr; | |
6063 fr = fr->fr_parent; | |
6064 if (fr != topframe) | |
6065 { | |
6066 curfr = fr; | |
6067 fr = fr->fr_parent; | |
6068 } | |
6069 } | |
6070 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6071 if (offset < 0) // drag left |
7 | 6072 { |
6073 left = TRUE; | |
6074 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6075 // sum up the room of the current frame and left of it |
7 | 6076 room = 0; |
6077 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
6078 { | |
6079 room += fr->fr_width - frame_minwidth(fr, NULL); | |
6080 if (fr == curfr) | |
6081 break; | |
6082 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6083 fr = curfr->fr_next; // put fr at frame that grows |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6084 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6085 else // drag right |
7 | 6086 { |
6087 left = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6088 // sum up the room of frames right of the current one |
7 | 6089 room = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6090 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 6091 room += fr->fr_width - frame_minwidth(fr, NULL); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6092 fr = curfr; // put fr at window that grows |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6093 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6094 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6095 if (room < offset) // Not enough room |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6096 offset = room; // Move as far as we can |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6097 if (offset <= 0) // No room at all, quit. |
7 | 6098 return; |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
6099 if (fr == NULL) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6100 return; // Safety check, should not happen. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6101 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6102 // grow frame fr by offset lines |
779 | 6103 frame_new_width(fr, fr->fr_width + offset, left, FALSE); |
7 | 6104 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6105 // shrink other frames: current and at the left or at the right |
7 | 6106 if (left) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6107 fr = curfr; // current frame gets smaller |
7 | 6108 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6109 fr = curfr->fr_next; // next frame gets smaller |
7 | 6110 |
6111 while (fr != NULL && offset > 0) | |
6112 { | |
6113 n = frame_minwidth(fr, NULL); | |
6114 if (fr->fr_width - offset <= n) | |
6115 { | |
6116 offset -= fr->fr_width - n; | |
779 | 6117 frame_new_width(fr, n, !left, FALSE); |
7 | 6118 } |
6119 else | |
6120 { | |
779 | 6121 frame_new_width(fr, fr->fr_width - offset, !left, FALSE); |
7 | 6122 break; |
6123 } | |
6124 if (left) | |
6125 fr = fr->fr_prev; | |
6126 else | |
6127 fr = fr->fr_next; | |
6128 } | |
6129 (void)win_comp_pos(); | |
6130 redraw_all_later(NOT_VALID); | |
6131 } | |
6132 | |
2665 | 6133 #define FRACTION_MULT 16384L |
6134 | |
6135 /* | |
6136 * 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
|
6137 * Has no effect when the window is less than two lines. |
2665 | 6138 */ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
6139 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6140 set_fraction(win_T *wp) |
2665 | 6141 { |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
6142 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
|
6143 // 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
|
6144 // 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
|
6145 // 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
|
6146 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
|
6147 + FRACTION_MULT / 2) / (long)wp->w_height; |
2665 | 6148 } |
6149 | |
7 | 6150 /* |
6151 * 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
|
6152 * "height" excludes any window toolbar. |
7 | 6153 * This takes care of the things inside the window, not what happens to the |
6154 * window position, the frame or to other windows. | |
6155 */ | |
3697 | 6156 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6157 win_new_height(win_T *wp, int height) |
7 | 6158 { |
5875 | 6159 int prev_height = wp->w_height; |
7 | 6160 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6161 // Don't want a negative height. Happens when splitting a tiny window. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6162 // Will equalize heights soon to fix it. |
7 | 6163 if (height < 0) |
6164 height = 0; | |
826 | 6165 if (wp->w_height == height) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6166 return; // nothing to do |
7 | 6167 |
5875 | 6168 if (wp->w_height > 0) |
6169 { | |
6170 if (wp == curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6171 // w_wrow needs to be valid. When setting 'laststatus' this may |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6172 // call win_new_height() recursively. |
5969 | 6173 validate_cursor(); |
6174 if (wp->w_height != prev_height) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6175 return; // Recursive call already changed the size, bail out here |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6176 // to avoid the following to mess things up. |
5875 | 6177 if (wp->w_wrow != wp->w_prev_fraction_row) |
6178 set_fraction(wp); | |
6179 } | |
7 | 6180 |
6181 wp->w_height = height; | |
6182 wp->w_skipcol = 0; | |
6183 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6184 // There is no point in adjusting the scroll position when exiting. Some |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6185 // values might be invalid. |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
6186 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
|
6187 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
|
6188 } |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6189 |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6190 void |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6191 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
|
6192 { |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6193 linenr_T lnum; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6194 int sline, line_size; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6195 int height = wp->w_height; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6196 |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6197 // 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
|
6198 // - window height is 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6199 // - '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
|
6200 // - 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
|
6201 // is visible. |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6202 if (height > 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6203 && (!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
|
6204 && (height < wp->w_buffer->b_ml.ml_line_count || wp->w_topline > 1)) |
7 | 6205 { |
47 | 6206 /* |
6207 * Find a value for w_topline that shows the cursor at the same | |
6208 * relative position in the window as before (more or less). | |
6209 */ | |
7 | 6210 lnum = wp->w_cursor.lnum; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6211 if (lnum < 1) // can happen when starting up |
7 | 6212 lnum = 1; |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6213 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
|
6214 / FRACTION_MULT; |
7 | 6215 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1; |
6216 sline = wp->w_wrow - line_size; | |
1023 | 6217 |
6218 if (sline >= 0) | |
6219 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6220 // Make sure the whole cursor line is visible, if possible. |
1023 | 6221 int rows = plines_win(wp, lnum, FALSE); |
6222 | |
6223 if (sline > wp->w_height - rows) | |
6224 { | |
6225 sline = wp->w_height - rows; | |
6226 wp->w_wrow -= rows - line_size; | |
6227 } | |
6228 } | |
6229 | |
7 | 6230 if (sline < 0) |
6231 { | |
6232 /* | |
6233 * Cursor line would go off top of screen if w_wrow was this high. | |
1023 | 6234 * Make cursor line the first line in the window. If not enough |
6235 * room use w_skipcol; | |
7 | 6236 */ |
6237 wp->w_wrow = line_size; | |
1023 | 6238 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
|
6239 && (wp->w_width - win_col_off(wp)) > 0) |
1023 | 6240 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6241 wp->w_skipcol += wp->w_width - win_col_off(wp); |
1023 | 6242 --wp->w_wrow; |
6243 while (wp->w_wrow >= wp->w_height) | |
6244 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6245 wp->w_skipcol += wp->w_width - win_col_off(wp) |
1023 | 6246 + win_col_off2(wp); |
6247 --wp->w_wrow; | |
6248 } | |
6249 } | |
7 | 6250 } |
5936 | 6251 else if (sline > 0) |
7 | 6252 { |
1023 | 6253 while (sline > 0 && lnum > 1) |
7 | 6254 { |
6255 #ifdef FEAT_FOLDING | |
6256 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); | |
6257 if (lnum == 1) | |
6258 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6259 // first line in buffer is folded |
7 | 6260 line_size = 1; |
6261 --sline; | |
6262 break; | |
6263 } | |
6264 #endif | |
6265 --lnum; | |
6266 #ifdef FEAT_DIFF | |
6267 if (lnum == wp->w_topline) | |
6268 line_size = plines_win_nofill(wp, lnum, TRUE) | |
6269 + wp->w_topfill; | |
6270 else | |
6271 #endif | |
6272 line_size = plines_win(wp, lnum, TRUE); | |
6273 sline -= line_size; | |
6274 } | |
47 | 6275 |
7 | 6276 if (sline < 0) |
6277 { | |
6278 /* | |
6279 * Line we want at top would go off top of screen. Use next | |
6280 * line instead. | |
6281 */ | |
6282 #ifdef FEAT_FOLDING | |
6283 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); | |
6284 #endif | |
6285 lnum++; | |
6286 wp->w_wrow -= line_size + sline; | |
6287 } | |
5936 | 6288 else if (sline > 0) |
7 | 6289 { |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6290 // First line of file reached, use that as topline. |
7 | 6291 lnum = 1; |
6292 wp->w_wrow -= sline; | |
6293 } | |
6294 } | |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6295 set_topline(wp, lnum); |
7 | 6296 } |
6297 | |
6298 if (wp == curwin) | |
6299 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
6300 if (get_scrolloff_value()) |
7 | 6301 update_topline(); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6302 curs_columns(FALSE); // validate w_wrow |
7 | 6303 } |
5875 | 6304 if (prev_height > 0) |
6305 wp->w_prev_fraction_row = wp->w_wrow; | |
7 | 6306 |
6307 win_comp_scroll(wp); | |
737 | 6308 redraw_win_later(wp, SOME_VALID); |
7 | 6309 wp->w_redr_status = TRUE; |
6310 invalidate_botline_win(wp); | |
6311 } | |
6312 | |
6313 /* | |
6314 * Set the width of a window. | |
6315 */ | |
3697 | 6316 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6317 win_new_width(win_T *wp, int width) |
7 | 6318 { |
6319 wp->w_width = width; | |
6320 wp->w_lines_valid = 0; | |
6321 changed_line_abv_curs_win(wp); | |
6322 invalidate_botline_win(wp); | |
6323 if (wp == curwin) | |
6324 { | |
6325 update_topline(); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6326 curs_columns(TRUE); // validate w_wrow |
7 | 6327 } |
6328 redraw_win_later(wp, NOT_VALID); | |
6329 wp->w_redr_status = TRUE; | |
6330 } | |
6331 | |
6332 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6333 win_comp_scroll(win_T *wp) |
7 | 6334 { |
23386
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6335 #if defined(FEAT_EVAL) |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6336 int old_w_p_scr = wp->w_p_scr; |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6337 #endif |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6338 |
7 | 6339 wp->w_p_scr = ((unsigned)wp->w_height >> 1); |
6340 if (wp->w_p_scr == 0) | |
6341 wp->w_p_scr = 1; | |
23386
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6342 #if defined(FEAT_EVAL) |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6343 if (wp->w_p_scr != old_w_p_scr) |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6344 { |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6345 // Used by "verbose set scroll". |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6346 wp->w_p_script_ctx[WV_SCROLL].sc_sid = SID_WINLAYOUT; |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6347 wp->w_p_script_ctx[WV_SCROLL].sc_lnum = 0; |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6348 } |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6349 #endif |
7 | 6350 } |
6351 | |
6352 /* | |
6353 * command_height: called whenever p_ch has been changed | |
6354 */ | |
6355 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6356 command_height(void) |
7 | 6357 { |
6358 int h; | |
6359 frame_T *frp; | |
824 | 6360 int old_p_ch = curtab->tp_ch_used; |
6361 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6362 // Use the value of p_ch that we remembered. This is needed for when the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6363 // GUI starts up, we can't be sure in what order things happen. And when |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6364 // p_ch was changed in another tab page. |
824 | 6365 curtab->tp_ch_used = p_ch; |
170 | 6366 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6367 // Find bottom frame with width of screen. |
7 | 6368 frp = lastwin->w_frame; |
6369 while (frp->fr_width != Columns && frp->fr_parent != NULL) | |
6370 frp = frp->fr_parent; | |
6371 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6372 // Avoid changing the height of a window with 'winfixheight' set. |
7 | 6373 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF |
6374 && frp->fr_win->w_p_wfh) | |
6375 frp = frp->fr_prev; | |
6376 | |
6377 if (starting != NO_SCREEN) | |
6378 { | |
6379 cmdline_row = Rows - p_ch; | |
6380 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6381 if (p_ch > old_p_ch) // p_ch got bigger |
7 | 6382 { |
6383 while (p_ch > old_p_ch) | |
6384 { | |
6385 if (frp == NULL) | |
6386 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6387 emsg(_(e_noroom)); |
7 | 6388 p_ch = old_p_ch; |
1404 | 6389 curtab->tp_ch_used = p_ch; |
7 | 6390 cmdline_row = Rows - p_ch; |
6391 break; | |
6392 } | |
6393 h = frp->fr_height - frame_minheight(frp, NULL); | |
6394 if (h > p_ch - old_p_ch) | |
6395 h = p_ch - old_p_ch; | |
6396 old_p_ch += h; | |
6397 frame_add_height(frp, -h); | |
6398 frp = frp->fr_prev; | |
6399 } | |
6400 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6401 // Recompute window positions. |
7 | 6402 (void)win_comp_pos(); |
6403 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6404 // clear the lines added to cmdline |
7 | 6405 if (full_screen) |
6406 screen_fill((int)(cmdline_row), (int)Rows, 0, | |
6407 (int)Columns, ' ', ' ', 0); | |
6408 msg_row = cmdline_row; | |
6409 redraw_cmdline = TRUE; | |
6410 return; | |
6411 } | |
6412 | |
6413 if (msg_row < cmdline_row) | |
6414 msg_row = cmdline_row; | |
6415 redraw_cmdline = TRUE; | |
6416 } | |
6417 frame_add_height(frp, (int)(old_p_ch - p_ch)); | |
6418 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6419 // Recompute window positions. |
7 | 6420 if (frp != lastwin->w_frame) |
6421 (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
|
6422 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6423 |
7 | 6424 /* |
6425 * Resize frame "frp" to be "n" lines higher (negative for less high). | |
6426 * Also resize the frames it is contained in. | |
6427 */ | |
6428 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6429 frame_add_height(frame_T *frp, int n) |
7 | 6430 { |
6431 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE); | |
6432 for (;;) | |
6433 { | |
6434 frp = frp->fr_parent; | |
6435 if (frp == NULL) | |
6436 break; | |
6437 frp->fr_height += n; | |
6438 } | |
6439 } | |
6440 | |
6441 /* | |
6442 * Add or remove a status line for the bottom window(s), according to the | |
6443 * value of 'laststatus'. | |
6444 */ | |
6445 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6446 last_status( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6447 int morewin) // pretend there are two or more windows |
7 | 6448 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6449 // Don't make a difference between horizontal or vertical split. |
7 | 6450 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
|
6451 || (p_ls == 1 && (morewin || !ONE_WINDOW)))); |
7 | 6452 } |
6453 | |
6454 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6455 last_status_rec(frame_T *fr, int statusline) |
7 | 6456 { |
6457 frame_T *fp; | |
6458 win_T *wp; | |
6459 | |
6460 if (fr->fr_layout == FR_LEAF) | |
6461 { | |
6462 wp = fr->fr_win; | |
6463 if (wp->w_status_height != 0 && !statusline) | |
6464 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6465 // remove status line |
7 | 6466 win_new_height(wp, wp->w_height + 1); |
6467 wp->w_status_height = 0; | |
6468 comp_col(); | |
6469 } | |
6470 else if (wp->w_status_height == 0 && statusline) | |
6471 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6472 // Find a frame to take a line from. |
7 | 6473 fp = fr; |
6474 while (fp->fr_height <= frame_minheight(fp, NULL)) | |
6475 { | |
6476 if (fp == topframe) | |
6477 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6478 emsg(_(e_noroom)); |
7 | 6479 return; |
6480 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6481 // In a column of frames: go to frame above. If already at |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6482 // the top or in a row of frames: go to parent. |
7 | 6483 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL) |
6484 fp = fp->fr_prev; | |
6485 else | |
6486 fp = fp->fr_parent; | |
6487 } | |
6488 wp->w_status_height = 1; | |
6489 if (fp != fr) | |
6490 { | |
6491 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE); | |
6492 frame_fix_height(wp); | |
6493 (void)win_comp_pos(); | |
6494 } | |
6495 else | |
6496 win_new_height(wp, wp->w_height - 1); | |
6497 comp_col(); | |
737 | 6498 redraw_all_later(SOME_VALID); |
7 | 6499 } |
6500 } | |
6501 else if (fr->fr_layout == FR_ROW) | |
6502 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6503 // 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
|
6504 FOR_ALL_FRAMES(fp, fr->fr_child) |
7 | 6505 last_status_rec(fp, statusline); |
6506 } | |
6507 else | |
6508 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6509 // horizontally split window, set status line for last one |
7 | 6510 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
6511 ; | |
6512 last_status_rec(fp, statusline); | |
6513 } | |
6514 } | |
6515 | |
667 | 6516 /* |
668 | 6517 * Return the number of lines used by the tab page line. |
667 | 6518 */ |
6519 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6520 tabline_height(void) |
667 | 6521 { |
685 | 6522 #ifdef FEAT_GUI_TABLINE |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6523 // When the GUI has the tabline then this always returns zero. |
685 | 6524 if (gui_use_tabline()) |
6525 return 0; | |
6526 #endif | |
675 | 6527 switch (p_stal) |
668 | 6528 { |
6529 case 0: return 0; | |
6530 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1; | |
6531 } | |
667 | 6532 return 1; |
6533 } | |
6534 | |
7 | 6535 /* |
6536 * Return the minimal number of rows that is needed on the screen to display | |
6537 * the current number of windows. | |
6538 */ | |
6539 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6540 min_rows(void) |
7 | 6541 { |
6542 int total; | |
671 | 6543 tabpage_T *tp; |
6544 int n; | |
7 | 6545 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6546 if (firstwin == NULL) // not initialized yet |
7 | 6547 return MIN_LINES; |
6548 | |
671 | 6549 total = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6550 FOR_ALL_TABPAGES(tp) |
671 | 6551 { |
6552 n = frame_minheight(tp->tp_topframe, NULL); | |
6553 if (total < n) | |
6554 total = n; | |
6555 } | |
685 | 6556 total += tabline_height(); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6557 total += 1; // count the room for the command line |
7 | 6558 return total; |
6559 } | |
6560 | |
6561 /* | |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
6562 * Return TRUE if there is only one window and only one tab page, not |
672 | 6563 * 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
|
6564 * Does not count unlisted windows. |
7 | 6565 */ |
6566 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6567 only_one_window(void) |
7 | 6568 { |
6569 int count = 0; | |
6570 win_T *wp; | |
6571 | |
19275
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
6572 #if defined(FEAT_PROP_POPUP) |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
6573 // If the current window is a popup then there always is another window. |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
6574 if (popup_is_popup(curwin)) |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
6575 return FALSE; |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
6576 #endif |
2142fb624658
patch 8.2.0196: blocking commands for a finished job in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19271
diff
changeset
|
6577 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6578 // If there is another tab page there always is another window. |
667 | 6579 if (first_tabpage->tp_next != NULL) |
6580 return FALSE; | |
6581 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6582 FOR_ALL_WINDOWS(wp) |
4021 | 6583 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
|
6584 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf)) |
7 | 6585 # ifdef FEAT_QUICKFIX |
6586 || wp->w_p_pvw | |
6587 # endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
6588 ) || wp == curwin) && wp != aucmd_win) |
7 | 6589 ++count; |
6590 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
|
6591 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6592 |
7 | 6593 /* |
6594 * Correct the cursor line number in other windows. Used after changing the | |
6595 * current buffer, and before applying autocommands. | |
6596 * When "do_curwin" is TRUE, also check current window. | |
6597 */ | |
6598 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6599 check_lnums(int do_curwin) |
7 | 6600 { |
6601 win_T *wp; | |
671 | 6602 tabpage_T *tp; |
6603 | |
6604 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7 | 6605 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf) |
6606 { | |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6607 // 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
|
6608 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
|
6609 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
|
6610 |
7 | 6611 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
6612 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
6613 if (wp->w_topline > curbuf->b_ml.ml_line_count) | |
6614 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
|
6615 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6616 // 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
|
6617 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
|
6618 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
|
6619 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6620 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6621 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6622 /* |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6623 * 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
|
6624 * 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
|
6625 */ |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6626 void |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6627 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
|
6628 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6629 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
|
6630 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
|
6631 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6632 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
|
6633 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
|
6634 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6635 // 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
|
6636 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
|
6637 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
|
6638 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
|
6639 wp->w_topline = wp->w_save_cursor.w_topline_save; |
7 | 6640 } |
6641 } | |
6642 | |
6643 /* | |
6644 * A snapshot of the window sizes, to restore them after closing the help | |
6645 * window. | |
6646 * Only these fields are used: | |
6647 * fr_layout | |
6648 * fr_width | |
6649 * fr_height | |
6650 * fr_next | |
6651 * fr_child | |
6652 * fr_win (only valid for the old curwin, NULL otherwise) | |
6653 */ | |
6654 | |
6655 /* | |
6656 * Create a snapshot of the current frame sizes. | |
6657 */ | |
1906 | 6658 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6659 make_snapshot(int idx) |
7 | 6660 { |
1906 | 6661 clear_snapshot(curtab, idx); |
6662 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); | |
7 | 6663 } |
6664 | |
6665 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6666 make_snapshot_rec(frame_T *fr, frame_T **frp) |
7 | 6667 { |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
6668 *frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 6669 if (*frp == NULL) |
6670 return; | |
6671 (*frp)->fr_layout = fr->fr_layout; | |
6672 (*frp)->fr_width = fr->fr_width; | |
6673 (*frp)->fr_height = fr->fr_height; | |
6674 if (fr->fr_next != NULL) | |
6675 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next)); | |
6676 if (fr->fr_child != NULL) | |
6677 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child)); | |
6678 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin) | |
6679 (*frp)->fr_win = curwin; | |
6680 } | |
6681 | |
6682 /* | |
6683 * Remove any existing snapshot. | |
6684 */ | |
6685 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6686 clear_snapshot(tabpage_T *tp, int idx) |
7 | 6687 { |
1906 | 6688 clear_snapshot_rec(tp->tp_snapshot[idx]); |
6689 tp->tp_snapshot[idx] = NULL; | |
7 | 6690 } |
6691 | |
6692 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6693 clear_snapshot_rec(frame_T *fr) |
7 | 6694 { |
6695 if (fr != NULL) | |
6696 { | |
6697 clear_snapshot_rec(fr->fr_next); | |
6698 clear_snapshot_rec(fr->fr_child); | |
6699 vim_free(fr); | |
6700 } | |
6701 } | |
6702 | |
6703 /* | |
6704 * Restore a previously created snapshot, if there is any. | |
6705 * This is only done if the screen size didn't change and the window layout is | |
6706 * still the same. | |
6707 */ | |
1906 | 6708 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6709 restore_snapshot( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6710 int idx, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6711 int close_curwin) // closing current window |
7 | 6712 { |
6713 win_T *wp; | |
6714 | |
1906 | 6715 if (curtab->tp_snapshot[idx] != NULL |
6716 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width | |
6717 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height | |
6718 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) | |
6719 { | |
6720 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); | |
7 | 6721 win_comp_pos(); |
6722 if (wp != NULL && close_curwin) | |
6723 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
|
6724 redraw_all_later(NOT_VALID); |
7 | 6725 } |
1906 | 6726 clear_snapshot(curtab, idx); |
7 | 6727 } |
6728 | |
6729 /* | |
6730 * 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
|
6731 * and same children. And the window pointer is valid. |
7 | 6732 */ |
6733 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6734 check_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 6735 { |
6736 if (sn->fr_layout != fr->fr_layout | |
6737 || (sn->fr_next == NULL) != (fr->fr_next == NULL) | |
6738 || (sn->fr_child == NULL) != (fr->fr_child == NULL) | |
6739 || (sn->fr_next != NULL | |
6740 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL) | |
6741 || (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
|
6742 && 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
|
6743 || (sn->fr_win != NULL && !win_valid(sn->fr_win))) |
7 | 6744 return FAIL; |
6745 return OK; | |
6746 } | |
6747 | |
6748 /* | |
6749 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all | |
6750 * following frames and children. | |
6751 * Returns a pointer to the old current window, or NULL. | |
6752 */ | |
6753 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6754 restore_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 6755 { |
6756 win_T *wp = NULL; | |
6757 win_T *wp2; | |
6758 | |
6759 fr->fr_height = sn->fr_height; | |
6760 fr->fr_width = sn->fr_width; | |
6761 if (fr->fr_layout == FR_LEAF) | |
6762 { | |
6763 frame_new_height(fr, fr->fr_height, FALSE, FALSE); | |
779 | 6764 frame_new_width(fr, fr->fr_width, FALSE, FALSE); |
7 | 6765 wp = sn->fr_win; |
6766 } | |
6767 if (sn->fr_next != NULL) | |
6768 { | |
6769 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next); | |
6770 if (wp2 != NULL) | |
6771 wp = wp2; | |
6772 } | |
6773 if (sn->fr_child != NULL) | |
6774 { | |
6775 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child); | |
6776 if (wp2 != NULL) | |
6777 wp = wp2; | |
6778 } | |
6779 return wp; | |
6780 } | |
6781 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6782 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 6783 /* |
6784 * Return TRUE if there is any vertically split window. | |
6785 */ | |
6786 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6787 win_hasvertsplit(void) |
7 | 6788 { |
6789 frame_T *fr; | |
6790 | |
6791 if (topframe->fr_layout == FR_ROW) | |
6792 return TRUE; | |
6793 | |
6794 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
|
6795 FOR_ALL_FRAMES(fr, topframe->fr_child) |
7 | 6796 if (fr->fr_layout == FR_ROW) |
6797 return TRUE; | |
6798 | |
6799 return FALSE; | |
6800 } | |
6801 #endif | |
1326 | 6802 |
4379 | 6803 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
6804 int | |
4401 | 6805 get_win_number(win_T *wp, win_T *first_win) |
4379 | 6806 { |
6807 int i = 1; | |
6808 win_T *w; | |
6809 | |
4401 | 6810 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w)) |
4379 | 6811 ++i; |
6812 | |
6813 if (w == NULL) | |
6814 return 0; | |
6815 else | |
6816 return i; | |
6817 } | |
4401 | 6818 |
6819 int | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4918
diff
changeset
|
6820 get_tab_number(tabpage_T *tp UNUSED) |
4401 | 6821 { |
6822 int i = 1; | |
6823 tabpage_T *t; | |
6824 | |
6825 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next) | |
6826 ++i; | |
6827 | |
6828 if (t == NULL) | |
6829 return 0; | |
6830 else | |
6831 return i; | |
6832 } | |
6833 #endif | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6834 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6835 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6836 * 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
|
6837 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6838 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6839 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
|
6840 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6841 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6842 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6843 if (topfrp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6844 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6845 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6846 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
|
6847 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6848 if (frp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6849 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6850 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6851 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6852 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6853 |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6854 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6855 * 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
|
6856 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6857 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6858 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
|
6859 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6860 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6861 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6862 if (topfrp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6863 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6864 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6865 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
|
6866 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6867 if (frp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6868 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6869 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6870 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6871 } |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6872 |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6873 #if defined(FEAT_SYN_HL) || defined(PROTO) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6874 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6875 * Simple int comparison function for use with qsort() |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6876 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6877 static int |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6878 int_cmp(const void *a, const void *b) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6879 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6880 return *(const int *)a - *(const int *)b; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6881 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6882 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6883 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6884 * Handle setting 'colorcolumn' or 'textwidth' in window "wp". |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6885 * Returns error message, NULL if it's OK. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6886 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6887 char * |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6888 check_colorcolumn(win_T *wp) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6889 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6890 char_u *s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6891 int col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6892 int count = 0; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6893 int color_cols[256]; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6894 int i; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6895 int j = 0; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6896 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6897 if (wp->w_buffer == NULL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6898 return NULL; // buffer was closed |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6899 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6900 for (s = wp->w_p_cc; *s != NUL && count < 255;) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6901 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6902 if (*s == '-' || *s == '+') |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6903 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6904 // -N and +N: add to 'textwidth' |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6905 col = (*s == '-') ? -1 : 1; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6906 ++s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6907 if (!VIM_ISDIGIT(*s)) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6908 return e_invarg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6909 col = col * getdigits(&s); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6910 if (wp->w_buffer->b_p_tw == 0) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6911 goto skip; // 'textwidth' not set, skip this item |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6912 col += wp->w_buffer->b_p_tw; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6913 if (col < 0) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6914 goto skip; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6915 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6916 else if (VIM_ISDIGIT(*s)) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6917 col = getdigits(&s); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6918 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6919 return e_invarg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6920 color_cols[count++] = col - 1; // 1-based to 0-based |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6921 skip: |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6922 if (*s == NUL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6923 break; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6924 if (*s != ',') |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6925 return e_invarg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6926 if (*++s == NUL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6927 return e_invarg; // illegal trailing comma as in "set cc=80," |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6928 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6929 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6930 vim_free(wp->w_p_cc_cols); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6931 if (count == 0) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6932 wp->w_p_cc_cols = NULL; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6933 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6934 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6935 wp->w_p_cc_cols = ALLOC_MULT(int, count + 1); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6936 if (wp->w_p_cc_cols != NULL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6937 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6938 // sort the columns for faster usage on screen redraw inside |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6939 // win_line() |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6940 qsort(color_cols, count, sizeof(int), int_cmp); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6941 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6942 for (i = 0; i < count; ++i) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6943 // skip duplicates |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6944 if (j == 0 || wp->w_p_cc_cols[j - 1] != color_cols[i]) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6945 wp->w_p_cc_cols[j++] = color_cols[i]; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6946 wp->w_p_cc_cols[j] = -1; // end marker |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6947 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6948 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6949 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6950 return NULL; // no error |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6951 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6952 #endif |