Mercurial > vim
annotate src/window.c @ 30604:9d7914012b82 v9.0.0637
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Commit: https://github.com/vim/vim/commit/eda29c971c0592d85c5856da7708f3edfdc54cfa
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 2 12:59:00 2022 +0100
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Problem: Syntax of commands in Vim9 script depends on +eval feature.
Solution: Use same syntax with and without the +eval feature.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 02 Oct 2022 14:00:09 +0200 |
parents | 66de6909e102 |
children | f2f35161d75a |
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); |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
22 static void trigger_winclosed(win_T *win); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
23 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
|
24 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
|
25 static tabpage_T *alt_tabpage(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
26 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
|
27 static int frame_has_win(frame_T *frp, win_T *wp); |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
28 static void win_fix_scroll(int resize); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
29 static void win_fix_cursor(int normal); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
30 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
|
31 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
|
32 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
|
33 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
|
34 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
|
35 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
|
36 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
|
37 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
|
38 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
|
39 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
|
40 static tabpage_T *alloc_tabpage(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
41 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
|
42 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
|
43 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
|
44 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
|
45 static int may_open_tabpage(void); |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
46 static int win_enter_ext(win_T *wp, int flags); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
47 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
|
48 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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 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
|
54 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
|
55 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
|
56 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
57 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
|
58 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
|
59 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
|
60 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
|
61 static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr); |
28688
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
62 static win_T *get_snapshot_curwin(int idx); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
63 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
64 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
|
65 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
|
66 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
67 static win_T *win_alloc(win_T *after, int hidden); |
7 | 68 |
27752
c1d1639b52dd
patch 8.2.4402: missing parenthesis may cause unexpected problems
Bram Moolenaar <Bram@vim.org>
parents:
27659
diff
changeset
|
69 #define NOWIN ((win_T *)-1) // non-existing window |
7 | 70 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
71 #define ROWS_AVAIL (Rows - p_ch - tabline_height()) |
826 | 72 |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
73 // flags for win_enter_ext() |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
74 #define WEE_UNDO_SYNC 0x01 |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
75 #define WEE_CURWIN_INVALID 0x02 |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
76 #define WEE_TRIGGER_NEW_AUTOCMDS 0x04 |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
77 #define WEE_TRIGGER_ENTER_AUTOCMDS 0x08 |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
78 #define WEE_TRIGGER_LEAVE_AUTOCMDS 0x10 |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
79 #define WEE_ALLOW_PARSE_MESSAGES 0x20 |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
80 |
826 | 81 static char *m_onlyone = N_("Already only one window"); |
82 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
83 // 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
|
84 // 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
|
85 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
|
86 |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
87 // #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
|
88 #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
|
89 /* |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
90 * 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
|
91 */ |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
92 static void |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
93 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
|
94 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
95 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
|
96 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
|
97 : 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
|
98 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
|
99 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
|
100 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
|
101 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
|
102 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
|
103 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
|
104 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
105 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
|
106 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
|
107 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
|
108 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
|
109 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
110 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
|
111 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
|
112 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
113 #endif |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
114 |
7 | 115 /* |
27805
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
116 * Return the current window, unless in the cmdline window and "prevwin" is |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
117 * set, then return "prevwin". |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
118 */ |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
119 win_T * |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
120 prevwin_curwin(void) |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
121 { |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
122 return |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
123 #ifdef FEAT_CMDWIN |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
124 // In cmdwin, the alternative buffer should be used. |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
125 is_in_cmdwin() && prevwin != NULL ? prevwin : |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
126 #endif |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
127 curwin; |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
128 } |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
129 |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
130 /* |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
131 * All CTRL-W window commands are handled here, called from normal_cmd(). |
7 | 132 */ |
133 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
134 do_window( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
135 int nchar, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
136 long Prenum, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
137 int xchar) // extra char from ":wincmd gx" or NUL |
7 | 138 { |
139 long Prenum1; | |
140 win_T *wp; | |
141 char_u *ptr; | |
681 | 142 linenr_T lnum = -1; |
7 | 143 #ifdef FEAT_FIND_ID |
144 int type = FIND_DEFINE; | |
145 int len; | |
146 #endif | |
147 char_u cbuf[40]; | |
148 | |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
149 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
|
150 return; |
7 | 151 |
152 #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
|
153 # define CHECK_CMDWIN \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
154 do { \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
155 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
|
156 { \ |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24216
diff
changeset
|
157 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
|
158 return; \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
159 } \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
160 } while (0) |
7 | 161 #else |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
162 # define CHECK_CMDWIN do { /**/ } while (0) |
7 | 163 #endif |
164 | |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
165 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
|
166 |
7 | 167 switch (nchar) |
168 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
169 // split current window in two parts, horizontally |
7 | 170 case 'S': |
171 case Ctrl_S: | |
172 case 's': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
173 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
174 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
|
175 // 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
|
176 // don't replicate the quickfix buffer. |
635 | 177 if (bt_quickfix(curbuf)) |
178 goto newwindow; | |
7 | 179 #ifdef FEAT_GUI |
180 need_mouse_correct = TRUE; | |
181 #endif | |
7009 | 182 (void)win_split((int)Prenum, 0); |
7 | 183 break; |
184 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
185 // split current window in two parts, vertically |
7 | 186 case Ctrl_V: |
187 case 'v': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
188 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
189 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
|
190 // 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
|
191 // don't replicate the quickfix buffer. |
1664 | 192 if (bt_quickfix(curbuf)) |
193 goto newwindow; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
194 #ifdef FEAT_GUI |
7 | 195 need_mouse_correct = TRUE; |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
196 #endif |
7009 | 197 (void)win_split((int)Prenum, WSP_VERT); |
7 | 198 break; |
199 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
200 // split current window and edit alternate file |
7 | 201 case Ctrl_HAT: |
202 case '^': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
203 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
204 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
|
205 |
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
|
206 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
|
207 ? 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
|
208 { |
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
|
209 if (Prenum == 0) |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24216
diff
changeset
|
210 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
|
211 else |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26532
diff
changeset
|
212 semsg(_(e_buffer_nr_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
|
213 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
|
214 } |
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
|
215 |
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
|
216 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
|
217 (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
|
218 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
|
219 (linenr_T)0, GETF_ALT, FALSE); |
7 | 220 break; |
221 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
222 // open new window |
7 | 223 case Ctrl_N: |
224 case 'n': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
225 CHECK_CMDWIN; |
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 |
635 | 227 newwindow: |
7 | 228 if (Prenum) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
229 // window height |
1664 | 230 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum); |
7 | 231 else |
232 cbuf[0] = NUL; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
233 #if defined(FEAT_QUICKFIX) |
1664 | 234 if (nchar == 'v' || nchar == Ctrl_V) |
235 STRCAT(cbuf, "v"); | |
236 #endif | |
7 | 237 STRCAT(cbuf, "new"); |
238 do_cmdline_cmd(cbuf); | |
239 break; | |
240 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
241 // quit current window |
7 | 242 case Ctrl_Q: |
243 case 'q': | |
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 |
6432 | 245 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum); |
6398 | 246 do_cmdline_cmd(cbuf); |
7 | 247 break; |
248 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
249 // close current window |
7 | 250 case Ctrl_C: |
251 case 'c': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
252 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 253 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum); |
6398 | 254 do_cmdline_cmd(cbuf); |
7 | 255 break; |
256 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
257 #if defined(FEAT_QUICKFIX) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
258 // close preview window |
7 | 259 case Ctrl_Z: |
260 case 'z': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
261 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
262 reset_VIsual_and_resel(); // stop Visual mode |
7 | 263 do_cmdline_cmd((char_u *)"pclose"); |
264 break; | |
265 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
266 // cursor to preview window |
7 | 267 case 'P': |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
268 FOR_ALL_WINDOWS(wp) |
7 | 269 if (wp->w_p_pvw) |
270 break; | |
271 if (wp == NULL) | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
272 emsg(_(e_there_is_no_preview_window)); |
7 | 273 else |
274 win_goto(wp); | |
275 break; | |
276 #endif | |
277 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
278 // close all but current window |
7 | 279 case Ctrl_O: |
280 case 'o': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
281 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
282 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 283 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum); |
6398 | 284 do_cmdline_cmd(cbuf); |
7 | 285 break; |
286 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
287 // cursor to next window with wrap around |
7 | 288 case Ctrl_W: |
289 case 'w': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
290 // cursor to previous window with wrap around |
7 | 291 case 'W': |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
292 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
293 if (ONE_WINDOW && Prenum != 1) // just one window |
7 | 294 beep_flush(); |
295 else | |
296 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
297 if (Prenum) // go to specified window |
7 | 298 { |
299 for (wp = firstwin; --Prenum > 0; ) | |
300 { | |
301 if (wp->w_next == NULL) | |
302 break; | |
303 else | |
304 wp = wp->w_next; | |
305 } | |
306 } | |
307 else | |
308 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
309 if (nchar == 'W') // go to previous window |
7 | 310 { |
311 wp = curwin->w_prev; | |
312 if (wp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
313 wp = lastwin; // wrap around |
7 | 314 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
315 else // go to next window |
7 | 316 { |
317 wp = curwin->w_next; | |
318 if (wp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
319 wp = firstwin; // wrap around |
7 | 320 } |
321 } | |
322 win_goto(wp); | |
323 } | |
324 break; | |
325 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
326 // cursor to window below |
7 | 327 case 'j': |
328 case K_DOWN: | |
329 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
|
330 CHECK_CMDWIN; |
7 | 331 win_goto_ver(FALSE, Prenum1); |
332 break; | |
333 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
334 // cursor to window above |
7 | 335 case 'k': |
336 case K_UP: | |
337 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
|
338 CHECK_CMDWIN; |
7 | 339 win_goto_ver(TRUE, Prenum1); |
340 break; | |
341 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
342 // cursor to left window |
7 | 343 case 'h': |
344 case K_LEFT: | |
345 case Ctrl_H: | |
346 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
|
347 CHECK_CMDWIN; |
7 | 348 win_goto_hor(TRUE, Prenum1); |
349 break; | |
350 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
351 // cursor to right window |
7 | 352 case 'l': |
353 case K_RIGHT: | |
354 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
|
355 CHECK_CMDWIN; |
7 | 356 win_goto_hor(FALSE, Prenum1); |
357 break; | |
358 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
359 // move window to new tab page |
826 | 360 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
|
361 CHECK_CMDWIN; |
1906 | 362 if (one_window()) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15490
diff
changeset
|
363 msg(_(m_onlyone)); |
826 | 364 else |
365 { | |
366 tabpage_T *oldtab = curtab; | |
367 tabpage_T *newtab; | |
368 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
369 // 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
|
370 // the old tab and close the window there. |
944 | 371 wp = curwin; |
826 | 372 if (win_new_tabpage((int)Prenum) == OK |
373 && valid_tabpage(oldtab)) | |
374 { | |
375 newtab = curtab; | |
4354 | 376 goto_tabpage_tp(oldtab, TRUE, TRUE); |
826 | 377 if (curwin == wp) |
378 win_close(curwin, FALSE); | |
379 if (valid_tabpage(newtab)) | |
4354 | 380 goto_tabpage_tp(newtab, TRUE, TRUE); |
826 | 381 } |
382 } | |
383 break; | |
384 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
385 // cursor to top-left window |
7 | 386 case 't': |
387 case Ctrl_T: | |
388 win_goto(firstwin); | |
389 break; | |
390 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
391 // cursor to bottom-right window |
7 | 392 case 'b': |
393 case Ctrl_B: | |
394 win_goto(lastwin); | |
395 break; | |
396 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
397 // cursor to last accessed (previous) window |
7 | 398 case 'p': |
399 case Ctrl_P: | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
400 if (!win_valid(prevwin)) |
7 | 401 beep_flush(); |
402 else | |
403 win_goto(prevwin); | |
404 break; | |
405 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
406 // exchange current and next window |
7 | 407 case 'x': |
408 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
|
409 CHECK_CMDWIN; |
7 | 410 win_exchange(Prenum); |
411 break; | |
412 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
413 // rotate windows downwards |
7 | 414 case Ctrl_R: |
415 case 'r': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
416 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
417 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
|
418 win_rotate(FALSE, (int)Prenum1); // downwards |
7 | 419 break; |
420 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
421 // rotate windows upwards |
7 | 422 case 'R': |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
423 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
424 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
|
425 win_rotate(TRUE, (int)Prenum1); // upwards |
7 | 426 break; |
427 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
428 // move window to the very top/bottom/left/right |
7 | 429 case 'K': |
430 case 'J': | |
431 case 'H': | |
432 case 'L': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
433 CHECK_CMDWIN; |
7 | 434 win_totop((int)Prenum, |
435 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0) | |
436 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT)); | |
437 break; | |
438 | |
30009
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
439 // make all windows the same width and/or height |
7 | 440 case '=': |
30009
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
441 { |
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
442 int mod = cmdmod.cmod_split & (WSP_VERT | WSP_HOR); |
7 | 443 #ifdef FEAT_GUI |
30009
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
444 need_mouse_correct = TRUE; |
7 | 445 #endif |
30009
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
446 win_equal(NULL, FALSE, |
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
447 mod == WSP_VERT ? 'v' : mod == WSP_HOR ? 'h' : 'b'); |
b97a870a7c63
patch 9.0.0342: ":wincmd =" equalizes in two directions
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
448 } |
7 | 449 break; |
450 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
451 // increase current window height |
7 | 452 case '+': |
453 #ifdef FEAT_GUI | |
454 need_mouse_correct = TRUE; | |
455 #endif | |
456 win_setheight(curwin->w_height + (int)Prenum1); | |
457 break; | |
458 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
459 // decrease current window height |
7 | 460 case '-': |
461 #ifdef FEAT_GUI | |
462 need_mouse_correct = TRUE; | |
463 #endif | |
464 win_setheight(curwin->w_height - (int)Prenum1); | |
465 break; | |
466 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
467 // set current window height |
7 | 468 case Ctrl__: |
469 case '_': | |
470 #ifdef FEAT_GUI | |
471 need_mouse_correct = TRUE; | |
472 #endif | |
473 win_setheight(Prenum ? (int)Prenum : 9999); | |
474 break; | |
475 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
476 // increase current window width |
7 | 477 case '>': |
478 #ifdef FEAT_GUI | |
479 need_mouse_correct = TRUE; | |
480 #endif | |
481 win_setwidth(curwin->w_width + (int)Prenum1); | |
482 break; | |
483 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
484 // decrease current window width |
7 | 485 case '<': |
486 #ifdef FEAT_GUI | |
487 need_mouse_correct = TRUE; | |
488 #endif | |
489 win_setwidth(curwin->w_width - (int)Prenum1); | |
490 break; | |
491 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
492 // set current window width |
7 | 493 case '|': |
494 #ifdef FEAT_GUI | |
495 need_mouse_correct = TRUE; | |
496 #endif | |
497 win_setwidth(Prenum != 0 ? (int)Prenum : 9999); | |
498 break; | |
499 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
500 // jump to tag and split window if tag exists (in preview window) |
7 | 501 #if defined(FEAT_QUICKFIX) |
502 case '}': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
503 CHECK_CMDWIN; |
7 | 504 if (Prenum) |
505 g_do_tagpreview = Prenum; | |
506 else | |
507 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
|
508 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
509 // FALLTHROUGH |
7 | 510 case ']': |
511 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
|
512 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
513 // keep Visual mode, can select words to use as a tag |
7 | 514 if (Prenum) |
515 postponed_split = Prenum; | |
516 else | |
517 postponed_split = -1; | |
6251 | 518 #ifdef FEAT_QUICKFIX |
6264 | 519 if (nchar != '}') |
520 g_do_tagpreview = 0; | |
6251 | 521 #endif |
6239 | 522 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
523 // 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
|
524 // was used in a function. |
7 | 525 do_nv_ident(Ctrl_RSB, NUL); |
526 break; | |
527 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
528 // edit file name under cursor in a new window |
7 | 529 case 'f': |
681 | 530 case 'F': |
7 | 531 case Ctrl_F: |
820 | 532 wingotofile: |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
533 CHECK_CMDWIN; |
344 | 534 |
681 | 535 ptr = grab_file_name(Prenum1, &lnum); |
7 | 536 if (ptr != NULL) |
537 { | |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
538 tabpage_T *oldtab = curtab; |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
539 win_T *oldwin = curwin; |
29853
31c598083364
patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
540 #ifdef FEAT_GUI |
7 | 541 need_mouse_correct = TRUE; |
29853
31c598083364
patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
542 #endif |
7 | 543 setpcmark(); |
544 if (win_split(0, 0) == OK) | |
545 { | |
2583 | 546 RESET_BINDING(curwin); |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
547 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
|
548 ECMD_HIDE, NULL) == FAIL) |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
549 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
550 // 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
|
551 // opened for it. |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
552 win_close(curwin, FALSE); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
553 goto_tabpage_win(oldtab, oldwin); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
554 } |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
555 else if (nchar == 'F' && lnum >= 0) |
681 | 556 { |
557 curwin->w_cursor.lnum = lnum; | |
558 check_cursor_lnum(); | |
559 beginline(BL_SOL | BL_FIX); | |
560 } | |
7 | 561 } |
562 vim_free(ptr); | |
563 } | |
564 break; | |
565 | |
566 #ifdef FEAT_FIND_ID | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
567 // 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
|
568 // new window -- webb |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
569 case 'i': // Go to any match |
7 | 570 case Ctrl_I: |
571 type = FIND_ANY; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
572 // FALLTHROUGH |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
573 case 'd': // Go to definition, using 'define' |
7 | 574 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
|
575 CHECK_CMDWIN; |
7 | 576 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) |
577 break; | |
28913
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
578 |
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
579 // Make a copy, if the line was changed it will be freed. |
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
580 ptr = vim_strnsave(ptr, len); |
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
581 if (ptr == NULL) |
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
582 break; |
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
583 |
7 | 584 find_pattern_in_path(ptr, 0, len, TRUE, |
585 Prenum == 0 ? TRUE : FALSE, type, | |
586 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM); | |
28913
22f743798f84
patch 8.2.4979: accessing freed memory when line is flushed
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
587 vim_free(ptr); |
7 | 588 curwin->w_set_curswant = TRUE; |
589 break; | |
590 #endif | |
591 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
592 // 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
|
593 #if defined(FEAT_QUICKFIX) |
170 | 594 case K_KENTER: |
595 case CAR: | |
596 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
|
597 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
|
598 break; |
170 | 599 #endif |
600 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
601 // CTRL-W g extended commands |
7 | 602 case 'g': |
603 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
|
604 CHECK_CMDWIN; |
7 | 605 #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
|
606 dont_scroll = TRUE; // disallow scrolling here |
7 | 607 #endif |
608 ++no_mapping; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
609 ++allow_keys; // no mapping for xchar, but allow key codes |
7 | 610 if (xchar == NUL) |
1389 | 611 xchar = plain_vgetc(); |
7 | 612 LANGMAP_ADJUST(xchar, TRUE); |
613 --no_mapping; | |
614 --allow_keys; | |
615 #ifdef FEAT_CMDL_INFO | |
616 (void)add_to_showcmd(xchar); | |
617 #endif | |
618 switch (xchar) | |
619 { | |
620 #if defined(FEAT_QUICKFIX) | |
621 case '}': | |
622 xchar = Ctrl_RSB; | |
623 if (Prenum) | |
624 g_do_tagpreview = Prenum; | |
625 else | |
626 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
|
627 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
628 // FALLTHROUGH |
7 | 629 case ']': |
630 case Ctrl_RSB: | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
631 // keep Visual mode, can select words to use as a tag |
7 | 632 if (Prenum) |
633 postponed_split = Prenum; | |
634 else | |
635 postponed_split = -1; | |
636 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
637 // 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
|
638 // "wincmd g}" was used in a function. |
7 | 639 do_nv_ident('g', xchar); |
640 break; | |
641 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
642 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
|
643 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
|
644 cmdmod.cmod_tab = tabpage_index(curtab) + 1; |
839 | 645 nchar = xchar; |
820 | 646 goto wingotofile; |
29853
31c598083364
patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
647 |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
648 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
|
649 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
|
650 break; |
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
651 |
15937
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
652 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
|
653 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
|
654 break; |
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
655 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
656 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
|
657 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
|
658 beep_flush(); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
659 break; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
660 |
7 | 661 default: |
662 beep_flush(); | |
663 break; | |
664 } | |
665 break; | |
666 | |
667 default: beep_flush(); | |
668 break; | |
669 } | |
670 } | |
671 | |
6489 | 672 /* |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
673 * Figure out the address type for ":wincmd". |
6489 | 674 */ |
675 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
676 get_wincmd_addr_type(char_u *arg, exarg_T *eap) |
6489 | 677 { |
678 switch (*arg) | |
679 { | |
680 case 'S': | |
681 case Ctrl_S: | |
682 case 's': | |
683 case Ctrl_N: | |
684 case 'n': | |
685 case 'j': | |
686 case Ctrl_J: | |
687 case 'k': | |
688 case Ctrl_K: | |
689 case 'T': | |
690 case Ctrl_R: | |
691 case 'r': | |
692 case 'R': | |
693 case 'K': | |
694 case 'J': | |
695 case '+': | |
696 case '-': | |
697 case Ctrl__: | |
698 case '_': | |
699 case '|': | |
700 case ']': | |
701 case Ctrl_RSB: | |
702 case 'g': | |
703 case Ctrl_G: | |
704 case Ctrl_V: | |
705 case 'v': | |
706 case 'h': | |
707 case Ctrl_H: | |
708 case 'l': | |
709 case Ctrl_L: | |
710 case 'H': | |
711 case 'L': | |
712 case '>': | |
713 case '<': | |
714 #if defined(FEAT_QUICKFIX) | |
715 case '}': | |
716 #endif | |
717 case 'f': | |
718 case 'F': | |
719 case Ctrl_F: | |
720 #ifdef FEAT_FIND_ID | |
721 case 'i': | |
722 case Ctrl_I: | |
723 case 'd': | |
724 case Ctrl_D: | |
725 #endif | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
726 // 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
|
727 eap->addr_type = ADDR_OTHER; |
6489 | 728 break; |
729 | |
730 case Ctrl_HAT: | |
731 case '^': | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
732 // buffer number |
6489 | 733 eap->addr_type = ADDR_BUFFERS; |
734 break; | |
735 | |
736 case Ctrl_Q: | |
737 case 'q': | |
738 case Ctrl_C: | |
739 case 'c': | |
740 case Ctrl_O: | |
741 case 'o': | |
742 case Ctrl_W: | |
743 case 'w': | |
744 case 'W': | |
745 case 'x': | |
746 case Ctrl_X: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
747 // window number |
6489 | 748 eap->addr_type = ADDR_WINDOWS; |
749 break; | |
750 | |
751 #if defined(FEAT_QUICKFIX) | |
752 case Ctrl_Z: | |
753 case 'z': | |
754 case 'P': | |
755 #endif | |
756 case 't': | |
757 case Ctrl_T: | |
758 case 'b': | |
759 case Ctrl_B: | |
760 case 'p': | |
761 case Ctrl_P: | |
762 case '=': | |
763 case CAR: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
764 // no count |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
765 eap->addr_type = ADDR_NONE; |
6489 | 766 break; |
767 } | |
768 } | |
769 | |
6432 | 770 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
771 cmd_with_count( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
772 char *cmd, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
773 char_u *bufp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
774 size_t bufsize, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
775 long Prenum) |
6432 | 776 { |
777 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
|
778 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
|
779 else |
77cb22562852
patch 8.2.2649: Vim9: some wincmd arguments cause a white space error
Bram Moolenaar <Bram@vim.org>
parents:
24108
diff
changeset
|
780 STRCPY(bufp, cmd); |
6432 | 781 } |
782 | |
7 | 783 /* |
27583
d4921b91542c
patch 8.2.4318: various comment and indent mistakes, returning wrong zero
Bram Moolenaar <Bram@vim.org>
parents:
27440
diff
changeset
|
784 * If "split_disallowed" is set give an error and return FAIL. |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
785 * 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
|
786 */ |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
787 static int |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
788 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
|
789 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
790 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
|
791 { |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
792 emsg(_(e_cant_split_window_while_closing_another)); |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
793 return FAIL; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
794 } |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
795 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
|
796 { |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
797 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
|
798 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
|
799 } |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
800 return OK; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
801 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
802 |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
803 /* |
7 | 804 * split the current window, implements CTRL-W s and :split |
805 * | |
806 * "size" is the height or width for the new window, 0 to use half of current | |
807 * height or width. | |
808 * | |
809 * "flags": | |
810 * WSP_ROOM: require enough room for new window | |
811 * WSP_VERT: vertical split. | |
812 * WSP_TOP: open window at the top-left of the shell (help window). | |
813 * WSP_BOT: open window at the bottom-right of the shell (quickfix window). | |
814 * WSP_HELP: creating the help window, keep layout snapshot | |
815 * | |
816 * return FAIL for failure, OK otherwise | |
817 */ | |
818 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
819 win_split(int size, int flags) |
7 | 820 { |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
821 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
|
822 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
823 |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23402
diff
changeset
|
824 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
|
825 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
|
826 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
827 // When the ":tab" modifier was used open a new tab page instead. |
682 | 828 if (may_open_tabpage() == OK) |
829 return OK; | |
830 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
831 // 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
|
832 flags |= cmdmod.cmod_split; |
7 | 833 if ((flags & WSP_TOP) && (flags & WSP_BOT)) |
834 { | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
835 emsg(_(e_cant_split_topleft_and_botright_at_the_same_time)); |
7 | 836 return FAIL; |
837 } | |
838 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
839 // 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
|
840 // Otherwise clear the snapshot, it's now invalid. |
7 | 841 if (flags & WSP_HELP) |
1906 | 842 make_snapshot(SNAP_HELP_IDX); |
7 | 843 else |
1906 | 844 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 845 |
846 return win_split_ins(size, flags, NULL, 0); | |
847 } | |
848 | |
849 /* | |
3263 | 850 * When "new_wp" is NULL: split the current window in two. |
851 * When "new_wp" is not NULL: insert this window at the far | |
7 | 852 * top/left/right/bottom. |
853 * return FAIL for failure, OK otherwise | |
854 */ | |
1906 | 855 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
856 win_split_ins( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
857 int size, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
858 int flags, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
859 win_T *new_wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
860 int dir) |
7 | 861 { |
3263 | 862 win_T *wp = new_wp; |
7 | 863 win_T *oldwin; |
864 int new_size = size; | |
865 int i; | |
866 int need_status = 0; | |
867 int do_equal = FALSE; | |
868 int needed; | |
869 int available; | |
870 int oldwin_height = 0; | |
871 int layout; | |
6077 | 872 frame_T *frp, *curfrp, *frp2, *prevfrp; |
7 | 873 int before; |
6052 | 874 int minheight; |
6066 | 875 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
|
876 int did_set_fraction = FALSE; |
7 | 877 |
878 if (flags & WSP_TOP) | |
879 oldwin = firstwin; | |
880 else if (flags & WSP_BOT) | |
881 oldwin = lastwin; | |
882 else | |
883 oldwin = curwin; | |
884 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
885 // 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
|
886 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0) |
7 | 887 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
888 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL) |
7 | 889 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
890 emsg(_(e_not_enough_room)); |
7 | 891 return FAIL; |
892 } | |
893 need_status = STATUS_HEIGHT; | |
894 } | |
895 | |
1114 | 896 #ifdef FEAT_GUI |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
897 // May be needed for the scrollbars that are going to change. |
1114 | 898 if (gui.in_use) |
899 out_flush(); | |
900 #endif | |
901 | |
7 | 902 if (flags & WSP_VERT) |
903 { | |
6068 | 904 int wmw1; |
905 int minwidth; | |
906 | |
7 | 907 layout = FR_ROW; |
908 | |
909 /* | |
910 * Check if we are able to split the current window and compute its | |
911 * width. | |
912 */ | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
913 // Current window requires at least 1 space. |
6066 | 914 wmw1 = (p_wmw == 0 ? 1 : p_wmw); |
915 needed = wmw1 + 1; | |
7 | 916 if (flags & WSP_ROOM) |
6066 | 917 needed += p_wiw - wmw1; |
6077 | 918 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 919 { |
6066 | 920 minwidth = frame_minwidth(topframe, NOWIN); |
7 | 921 available = topframe->fr_width; |
6052 | 922 needed += minwidth; |
7 | 923 } |
6077 | 924 else if (p_ea) |
925 { | |
926 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); | |
927 prevfrp = oldwin->w_frame; | |
928 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
929 frp = frp->fr_parent) | |
930 { | |
931 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
|
932 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 933 if (frp2 != prevfrp) |
934 minwidth += frame_minwidth(frp2, NOWIN); | |
935 prevfrp = frp; | |
936 } | |
937 available = topframe->fr_width; | |
938 needed += minwidth; | |
939 } | |
7 | 940 else |
6052 | 941 { |
6066 | 942 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); |
943 available = oldwin->w_frame->fr_width; | |
944 needed += minwidth; | |
6052 | 945 } |
3263 | 946 if (available < needed && new_wp == NULL) |
7 | 947 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
948 emsg(_(e_not_enough_room)); |
7 | 949 return FAIL; |
950 } | |
951 if (new_size == 0) | |
952 new_size = oldwin->w_width / 2; | |
6052 | 953 if (new_size > available - minwidth - 1) |
954 new_size = available - minwidth - 1; | |
6066 | 955 if (new_size < wmw1) |
956 new_size = wmw1; | |
7 | 957 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
958 // if it doesn't fit in the current window, need win_equal() |
7 | 959 if (oldwin->w_width - new_size - 1 < p_wmw) |
960 do_equal = TRUE; | |
779 | 961 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
962 // 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
|
963 // '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
|
964 // instead, if possible. Add one for the separator. |
779 | 965 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
|
966 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin); |
1354 | 967 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
968 // 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
|
969 // is wider than one of the split windows. |
1354 | 970 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
|
971 && oldwin->w_frame->fr_parent != NULL) |
1354 | 972 { |
973 frp = oldwin->w_frame->fr_parent->fr_child; | |
974 while (frp != NULL) | |
975 { | |
976 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
977 && (frp->fr_win->w_width > new_size | |
978 || frp->fr_win->w_width > oldwin->w_width | |
6373 | 979 - new_size - 1)) |
1354 | 980 { |
981 do_equal = TRUE; | |
982 break; | |
983 } | |
984 frp = frp->fr_next; | |
985 } | |
986 } | |
7 | 987 } |
988 else | |
989 { | |
990 layout = FR_COL; | |
991 | |
992 /* | |
993 * Check if we are able to split the current window and compute its | |
994 * height. | |
995 */ | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
996 // 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
|
997 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin); |
6066 | 998 needed = wmh1 + STATUS_HEIGHT; |
7 | 999 if (flags & WSP_ROOM) |
6066 | 1000 needed += p_wh - wmh1; |
6077 | 1001 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 1002 { |
6066 | 1003 minheight = frame_minheight(topframe, NOWIN) + need_status; |
7 | 1004 available = topframe->fr_height; |
6052 | 1005 needed += minheight; |
7 | 1006 } |
6077 | 1007 else if (p_ea) |
1008 { | |
1009 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; | |
1010 prevfrp = oldwin->w_frame; | |
1011 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
1012 frp = frp->fr_parent) | |
1013 { | |
1014 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
|
1015 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 1016 if (frp2 != prevfrp) |
1017 minheight += frame_minheight(frp2, NOWIN); | |
1018 prevfrp = frp; | |
1019 } | |
1020 available = topframe->fr_height; | |
1021 needed += minheight; | |
1022 } | |
7 | 1023 else |
1024 { | |
6066 | 1025 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; |
1026 available = oldwin->w_frame->fr_height; | |
1027 needed += minheight; | |
7 | 1028 } |
3263 | 1029 if (available < needed && new_wp == NULL) |
7 | 1030 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
1031 emsg(_(e_not_enough_room)); |
7 | 1032 return FAIL; |
1033 } | |
1034 oldwin_height = oldwin->w_height; | |
1035 if (need_status) | |
1036 { | |
1037 oldwin->w_status_height = STATUS_HEIGHT; | |
1038 oldwin_height -= STATUS_HEIGHT; | |
1039 } | |
1040 if (new_size == 0) | |
1041 new_size = oldwin_height / 2; | |
6052 | 1042 if (new_size > available - minheight - STATUS_HEIGHT) |
1043 new_size = available - minheight - STATUS_HEIGHT; | |
6066 | 1044 if (new_size < wmh1) |
1045 new_size = wmh1; | |
7 | 1046 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1047 // if it doesn't fit in the current window, need win_equal() |
7 | 1048 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh) |
1049 do_equal = TRUE; | |
1050 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1051 // 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
|
1052 // '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
|
1053 // instead, if possible. |
7 | 1054 if (oldwin->w_p_wfh) |
1055 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1056 // 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
|
1057 // 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
|
1058 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
|
1059 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
|
1060 |
7 | 1061 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT, |
1062 oldwin); | |
1063 oldwin_height = oldwin->w_height; | |
1064 if (need_status) | |
1065 oldwin_height -= STATUS_HEIGHT; | |
1066 } | |
1354 | 1067 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1068 // 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
|
1069 // 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
|
1070 if (!do_equal && p_ea && size == 0 && *p_ead != 'h' |
1354 | 1071 && oldwin->w_frame->fr_parent != NULL) |
1072 { | |
1073 frp = oldwin->w_frame->fr_parent->fr_child; | |
1074 while (frp != NULL) | |
1075 { | |
1076 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
1077 && (frp->fr_win->w_height > new_size | |
1078 || frp->fr_win->w_height > oldwin_height - new_size | |
1079 - STATUS_HEIGHT)) | |
1080 { | |
1081 do_equal = TRUE; | |
1082 break; | |
1083 } | |
1084 frp = frp->fr_next; | |
1085 } | |
1086 } | |
7 | 1087 } |
1088 | |
1089 /* | |
1090 * allocate new window structure and link it in the window list | |
1091 */ | |
1092 if ((flags & WSP_TOP) == 0 | |
1093 && ((flags & WSP_BOT) | |
1094 || (flags & WSP_BELOW) | |
1095 || (!(flags & WSP_ABOVE) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1096 && ( (flags & WSP_VERT) ? p_spr : p_sb)))) |
7 | 1097 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1098 // new window below/right of current one |
3263 | 1099 if (new_wp == NULL) |
1906 | 1100 wp = win_alloc(oldwin, FALSE); |
7 | 1101 else |
1102 win_append(oldwin, wp); | |
1103 } | |
1104 else | |
1105 { | |
3263 | 1106 if (new_wp == NULL) |
1906 | 1107 wp = win_alloc(oldwin->w_prev, FALSE); |
7 | 1108 else |
1109 win_append(oldwin->w_prev, wp); | |
1110 } | |
1111 | |
3263 | 1112 if (new_wp == NULL) |
7 | 1113 { |
1114 if (wp == NULL) | |
1115 return FAIL; | |
1116 | |
1906 | 1117 new_frame(wp); |
1118 if (wp->w_frame == NULL) | |
1119 { | |
1120 win_free(wp, NULL); | |
1121 return FAIL; | |
1122 } | |
1123 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1124 // make the contents of the new window the same as the current one |
1822 | 1125 win_init(wp, curwin, flags); |
7 | 1126 } |
1127 | |
1128 /* | |
1129 * Reorganise the tree of frames to insert the new window. | |
1130 */ | |
1131 if (flags & (WSP_TOP | WSP_BOT)) | |
1132 { | |
1133 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0) | |
1134 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0)) | |
1135 { | |
1136 curfrp = topframe->fr_child; | |
1137 if (flags & WSP_BOT) | |
1138 while (curfrp->fr_next != NULL) | |
1139 curfrp = curfrp->fr_next; | |
1140 } | |
1141 else | |
1142 curfrp = topframe; | |
1143 before = (flags & WSP_TOP); | |
1144 } | |
1145 else | |
1146 { | |
1147 curfrp = oldwin->w_frame; | |
1148 if (flags & WSP_BELOW) | |
1149 before = FALSE; | |
1150 else if (flags & WSP_ABOVE) | |
1151 before = TRUE; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1152 else if (flags & WSP_VERT) |
7 | 1153 before = !p_spr; |
1154 else | |
1155 before = !p_sb; | |
1156 } | |
1157 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout) | |
1158 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1159 // 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
|
1160 frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 1161 *frp = *curfrp; |
1162 curfrp->fr_layout = layout; | |
1163 frp->fr_parent = curfrp; | |
1164 frp->fr_next = NULL; | |
1165 frp->fr_prev = NULL; | |
1166 curfrp->fr_child = frp; | |
1167 curfrp->fr_win = NULL; | |
1168 curfrp = frp; | |
1169 if (frp->fr_win != NULL) | |
1170 oldwin->w_frame = frp; | |
1171 else | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1172 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 1173 frp->fr_parent = curfrp; |
1174 } | |
1175 | |
3263 | 1176 if (new_wp == NULL) |
1906 | 1177 frp = wp->w_frame; |
7 | 1178 else |
3263 | 1179 frp = new_wp->w_frame; |
7 | 1180 frp->fr_parent = curfrp->fr_parent; |
1181 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1182 // Insert the new frame at the right place in the frame list. |
7 | 1183 if (before) |
1184 frame_insert(curfrp, frp); | |
1185 else | |
1186 frame_append(curfrp, frp); | |
1187 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1188 // 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
|
1189 // 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
|
1190 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
|
1191 set_fraction(oldwin); |
2665 | 1192 wp->w_fraction = oldwin->w_fraction; |
1193 | |
7 | 1194 if (flags & WSP_VERT) |
1195 { | |
1196 wp->w_p_scr = curwin->w_p_scr; | |
2665 | 1197 |
7 | 1198 if (need_status) |
1199 { | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1200 win_new_height(oldwin, oldwin->w_height - 1); |
7 | 1201 oldwin->w_status_height = need_status; |
1202 } | |
1203 if (flags & (WSP_TOP | WSP_BOT)) | |
1204 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1205 // set height and row of new window to full height |
685 | 1206 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
|
1207 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
|
1208 - WINBAR_HEIGHT(wp)); |
7 | 1209 wp->w_status_height = (p_ls > 0); |
1210 } | |
1211 else | |
1212 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1213 // height and row of new window is same as current window |
7 | 1214 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
|
1215 win_new_height(wp, VISIBLE_HEIGHT(oldwin)); |
7 | 1216 wp->w_status_height = oldwin->w_status_height; |
1217 } | |
1218 frp->fr_height = curfrp->fr_height; | |
1219 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1220 // "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
|
1221 // one column for the vertical separator |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1222 win_new_width(wp, new_size); |
7 | 1223 if (before) |
1224 wp->w_vsep_width = 1; | |
1225 else | |
1226 { | |
1227 wp->w_vsep_width = oldwin->w_vsep_width; | |
1228 oldwin->w_vsep_width = 1; | |
1229 } | |
1230 if (flags & (WSP_TOP | WSP_BOT)) | |
1231 { | |
1232 if (flags & WSP_BOT) | |
1233 frame_add_vsep(curfrp); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1234 // Set width of neighbor frame |
7 | 1235 frame_new_width(curfrp, curfrp->fr_width |
779 | 1236 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP, |
1237 FALSE); | |
7 | 1238 } |
1239 else | |
779 | 1240 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
|
1241 if (before) // new window left of current one |
7 | 1242 { |
1243 wp->w_wincol = oldwin->w_wincol; | |
1244 oldwin->w_wincol += new_size + 1; | |
1245 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1246 else // new window right of current one |
7 | 1247 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1; |
1248 frame_fix_width(oldwin); | |
1249 frame_fix_width(wp); | |
1250 } | |
1251 else | |
1252 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1253 // width and column of new window is same as current window |
7 | 1254 if (flags & (WSP_TOP | WSP_BOT)) |
1255 { | |
1256 wp->w_wincol = 0; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1257 win_new_width(wp, Columns); |
7 | 1258 wp->w_vsep_width = 0; |
1259 } | |
1260 else | |
1261 { | |
1262 wp->w_wincol = oldwin->w_wincol; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1263 win_new_width(wp, oldwin->w_width); |
7 | 1264 wp->w_vsep_width = oldwin->w_vsep_width; |
1265 } | |
1266 frp->fr_width = curfrp->fr_width; | |
1267 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1268 // "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
|
1269 // one row for the status line |
7 | 1270 win_new_height(wp, new_size); |
1271 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
|
1272 { |
12491
7ab796b041bd
patch 8.0.1125: wrong window height when splitting window with window toolbar
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
1273 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
|
1274 + WINBAR_HEIGHT(wp) ; |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1275 |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1276 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
|
1277 new_fr_height -= STATUS_HEIGHT; |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1278 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
|
1279 } |
7 | 1280 else |
1281 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
|
1282 if (before) // new window above current one |
7 | 1283 { |
1284 wp->w_winrow = oldwin->w_winrow; | |
1285 wp->w_status_height = STATUS_HEIGHT; | |
1286 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT; | |
1287 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1288 else // new window below current one |
7 | 1289 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1290 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
|
1291 + STATUS_HEIGHT; |
7 | 1292 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
|
1293 if (!(flags & WSP_BOT)) |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1294 oldwin->w_status_height = STATUS_HEIGHT; |
7 | 1295 } |
1296 if (flags & WSP_BOT) | |
1297 frame_add_statusline(curfrp); | |
1298 frame_fix_height(wp); | |
1299 frame_fix_height(oldwin); | |
1300 } | |
1301 | |
1302 if (flags & (WSP_TOP | WSP_BOT)) | |
1303 (void)win_comp_pos(); | |
1304 | |
22464
b74bdd85bb26
patch 8.2.1780: statusline not updated when splitting windows
Bram Moolenaar <Bram@vim.org>
parents:
22399
diff
changeset
|
1305 // 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
|
1306 // show something related to the window count or position. |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
1307 redraw_win_later(wp, UPD_NOT_VALID); |
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
1308 redraw_win_later(oldwin, UPD_NOT_VALID); |
22464
b74bdd85bb26
patch 8.2.1780: statusline not updated when splitting windows
Bram Moolenaar <Bram@vim.org>
parents:
22399
diff
changeset
|
1309 status_redraw_all(); |
7 | 1310 |
1311 if (need_status) | |
1312 { | |
1313 msg_row = Rows - 1; | |
1314 msg_col = sc_col; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1315 msg_clr_eos_force(); // Old command/ruler may still be there |
7 | 1316 comp_col(); |
1317 msg_row = Rows - 1; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1318 msg_col = 0; // put position back at start of line |
7 | 1319 } |
1320 | |
1321 /* | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1322 * equalize the window sizes. |
7 | 1323 */ |
1324 if (do_equal || dir != 0) | |
1325 win_equal(wp, TRUE, | |
1326 (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
|
1327 : dir == 'h' ? 'b' : 'v'); |
30300
b9d07900b0b8
patch 9.0.0486: text scrolled with 'nosplitscroll', autocmd win and help
Bram Moolenaar <Bram@vim.org>
parents:
30285
diff
changeset
|
1328 else if (!p_spsc && wp != aucmd_win) |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1329 win_fix_scroll(FALSE); |
7 | 1330 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1331 // 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
|
1332 // size was given. |
7 | 1333 if (flags & WSP_VERT) |
1334 { | |
1335 i = p_wiw; | |
1336 if (size != 0) | |
1337 p_wiw = size; | |
1338 | |
1339 # ifdef FEAT_GUI | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1340 // When 'guioptions' includes 'L' or 'R' may have to add scrollbars. |
7 | 1341 if (gui.in_use) |
1342 gui_init_which_components(NULL); | |
1343 # endif | |
1344 } | |
1345 else | |
1346 { | |
1347 i = p_wh; | |
1348 if (size != 0) | |
1349 p_wh = size; | |
1350 } | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1351 |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1352 /* |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1353 * make the new window the current window |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1354 */ |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
1355 (void)win_enter_ext(wp, WEE_TRIGGER_NEW_AUTOCMDS |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
1356 | WEE_TRIGGER_ENTER_AUTOCMDS | WEE_TRIGGER_LEAVE_AUTOCMDS); |
7 | 1357 if (flags & WSP_VERT) |
1358 p_wiw = i; | |
1359 else | |
1360 p_wh = i; | |
1361 | |
1362 return OK; | |
1363 } | |
1364 | |
1906 | 1365 |
675 | 1366 /* |
1367 * Initialize window "newp" from window "oldp". | |
1368 * Used when splitting a window and when creating a new tab page. | |
1369 * The windows will both edit the same buffer. | |
1822 | 1370 * WSP_NEWLOC may be specified in flags to prevent the location list from |
1371 * being copied. | |
675 | 1372 */ |
1373 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1374 win_init(win_T *newp, win_T *oldp, int flags UNUSED) |
675 | 1375 { |
1376 int i; | |
1377 | |
1378 newp->w_buffer = oldp->w_buffer; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1379 #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
|
1380 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
|
1381 #endif |
675 | 1382 oldp->w_buffer->b_nwindows++; |
1383 newp->w_cursor = oldp->w_cursor; | |
1384 newp->w_valid = 0; | |
1385 newp->w_curswant = oldp->w_curswant; | |
1386 newp->w_set_curswant = oldp->w_set_curswant; | |
1387 newp->w_topline = oldp->w_topline; | |
1388 #ifdef FEAT_DIFF | |
1389 newp->w_topfill = oldp->w_topfill; | |
1390 #endif | |
1391 newp->w_leftcol = oldp->w_leftcol; | |
1392 newp->w_pcmark = oldp->w_pcmark; | |
1393 newp->w_prev_pcmark = oldp->w_prev_pcmark; | |
1394 newp->w_alt_fnum = oldp->w_alt_fnum; | |
826 | 1395 newp->w_wrow = oldp->w_wrow; |
675 | 1396 newp->w_fraction = oldp->w_fraction; |
1397 newp->w_prev_fraction_row = oldp->w_prev_fraction_row; | |
1398 copy_jumplist(oldp, newp); | |
1399 #ifdef FEAT_QUICKFIX | |
1822 | 1400 if (flags & WSP_NEWLOC) |
1401 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1402 // Don't copy the location list. |
1822 | 1403 newp->w_llist = NULL; |
1404 newp->w_llist_ref = NULL; | |
1405 } | |
1406 else | |
14844
a74786d0370c
patch 8.1.0434: copy_loclist() is too long
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
1407 copy_loclist_stack(oldp, newp); |
675 | 1408 #endif |
5584 | 1409 newp->w_localdir = (oldp->w_localdir == NULL) |
1410 ? 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
|
1411 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
|
1412 ? NULL : vim_strsave(oldp->w_prevdir); |
675 | 1413 |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1414 if (!p_spsc) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1415 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1416 newp->w_botline = oldp->w_botline; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1417 newp->w_prev_height = oldp->w_height - WINBAR_HEIGHT(oldp); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1418 newp->w_prev_winrow = oldp->w_winrow + 2 * WINBAR_HEIGHT(oldp); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1419 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1420 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1421 // copy tagstack and folds |
675 | 1422 for (i = 0; i < oldp->w_tagstacklen; i++) |
1423 { | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1424 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
|
1425 *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
|
1426 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
|
1427 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
|
1428 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
|
1429 tag->user_data = vim_strsave(tag->user_data); |
675 | 1430 } |
1431 newp->w_tagstackidx = oldp->w_tagstackidx; | |
1432 newp->w_tagstacklen = oldp->w_tagstacklen; | |
29026
5baf5e50049b
patch 8.2.5035: when splitting a window the changelist position moves
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
1433 |
5baf5e50049b
patch 8.2.5035: when splitting a window the changelist position moves
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
1434 // Keep same changelist position in new window. |
5baf5e50049b
patch 8.2.5035: when splitting a window the changelist position moves
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
1435 newp->w_changelistidx = oldp->w_changelistidx; |
5baf5e50049b
patch 8.2.5035: when splitting a window the changelist position moves
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
1436 |
3068 | 1437 #ifdef FEAT_FOLDING |
675 | 1438 copyFoldingState(oldp, newp); |
3068 | 1439 #endif |
1906 | 1440 |
1441 win_init_some(newp, oldp); | |
26193
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
1442 #ifdef FEAT_TERMINAL |
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
1443 term_update_wincolor(newp); |
c83460a14407
patch 8.2.3628: looking terminal colors is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
1444 #endif |
1906 | 1445 } |
1446 | |
1447 /* | |
6222 | 1448 * Initialize window "newp" from window "old". |
1906 | 1449 * Only the essential things are copied. |
1450 */ | |
1451 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1452 win_init_some(win_T *newp, win_T *oldp) |
1906 | 1453 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1454 // Use the same argument list. |
1906 | 1455 newp->w_alist = oldp->w_alist; |
1456 ++newp->w_alist->al_refcount; | |
1457 newp->w_arg_idx = oldp->w_arg_idx; | |
1458 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1459 // copy options from existing window |
1906 | 1460 win_copy_options(oldp, newp); |
675 | 1461 } |
1462 | |
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
|
1463 /* |
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1464 * 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
|
1465 */ |
17051
221d4b82bc0b
patch 8.1.1525: cannot move a popup window with the mouse
Bram Moolenaar <Bram@vim.org>
parents:
17043
diff
changeset
|
1466 int |
16780
491c01280a5d
patch 8.1.1392: build failure in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1467 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
|
1468 { |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1469 #ifdef FEAT_PROP_POPUP |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1470 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1471 |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1472 FOR_ALL_POPUPWINS(wp) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1473 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1474 return TRUE; |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1475 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
|
1476 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1477 return TRUE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1478 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1479 return FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1480 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
1481 |
7 | 1482 /* |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1483 * Check if "win" is a pointer to an existing window in the current tab page. |
7 | 1484 */ |
1485 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1486 win_valid(win_T *win) |
7 | 1487 { |
1488 win_T *wp; | |
1489 | |
1490 if (win == NULL) | |
1491 return FALSE; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1492 FOR_ALL_WINDOWS(wp) |
7 | 1493 if (wp == win) |
1494 return TRUE; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1495 return win_valid_popup(win); |
7 | 1496 } |
1497 | |
1498 /* | |
22838
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1499 * 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
|
1500 * 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
|
1501 * 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
|
1502 */ |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1503 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
|
1504 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
|
1505 { |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1506 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
|
1507 |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1508 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
|
1509 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
|
1510 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
|
1511 #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
|
1512 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
|
1513 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
|
1514 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
|
1515 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
|
1516 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
|
1517 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
|
1518 #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
|
1519 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
|
1520 } |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1521 |
80bd5de5dcab
patch 8.2.1966: popup becomes current window after closing a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
22800
diff
changeset
|
1522 /* |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1523 * 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
|
1524 */ |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1525 int |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1526 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
|
1527 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1528 win_T *wp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1529 tabpage_T *tp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1530 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1531 if (win == NULL) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1532 return FALSE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1533 FOR_ALL_TABPAGES(tp) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1534 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1535 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
|
1536 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1537 if (wp == win) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1538 return TRUE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1539 } |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1540 #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
|
1541 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
|
1542 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
|
1543 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
|
1544 #endif |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1545 } |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1546 return win_valid_popup(win); |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1547 } |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1548 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1549 /* |
7 | 1550 * Return the number of windows. |
1551 */ | |
1552 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1553 win_count(void) |
7 | 1554 { |
1555 win_T *wp; | |
1556 int count = 0; | |
1557 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1558 FOR_ALL_WINDOWS(wp) |
7 | 1559 ++count; |
1560 return count; | |
1561 } | |
1562 | |
1563 /* | |
1564 * Make "count" windows on the screen. | |
1565 * Return actual number of windows on the screen. | |
1566 * Must be called when there is just one window, filling the whole screen | |
1567 * (excluding the command line). | |
1568 */ | |
1569 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1570 make_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1571 int count, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1572 int vertical UNUSED) // split windows vertically if TRUE |
7 | 1573 { |
1574 int maxcount; | |
1575 int todo; | |
1576 | |
1577 if (vertical) | |
1578 { | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1579 // Each window needs at least 'winminwidth' lines and a separator |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1580 // column. |
7 | 1581 maxcount = (curwin->w_width + curwin->w_vsep_width |
1582 - (p_wiw - p_wmw)) / (p_wmw + 1); | |
1583 } | |
1584 else | |
1585 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1586 // 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
|
1587 maxcount = (VISIBLE_HEIGHT(curwin) + curwin->w_status_height |
7 | 1588 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT); |
1589 } | |
1590 | |
1591 if (maxcount < 2) | |
1592 maxcount = 2; | |
1593 if (count > maxcount) | |
1594 count = maxcount; | |
1595 | |
1596 /* | |
1597 * add status line now, otherwise first window will be too big | |
1598 */ | |
1599 if (count > 1) | |
1600 last_status(TRUE); | |
1601 | |
1602 /* | |
1603 * Don't execute autocommands while creating the windows. Must do that | |
1604 * when putting the buffers in the windows. | |
1605 */ | |
1410 | 1606 block_autocmds(); |
7 | 1607 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1608 // todo is number of windows left to create |
7 | 1609 for (todo = count - 1; todo > 0; --todo) |
1610 if (vertical) | |
1611 { | |
1612 if (win_split(curwin->w_width - (curwin->w_width - todo) | |
1613 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL) | |
1614 break; | |
1615 } | |
1616 else | |
1617 { | |
1618 if (win_split(curwin->w_height - (curwin->w_height - todo | |
1619 * STATUS_HEIGHT) / (todo + 1) | |
1620 - STATUS_HEIGHT, WSP_ABOVE) == FAIL) | |
1621 break; | |
1622 } | |
1623 | |
1410 | 1624 unblock_autocmds(); |
7 | 1625 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1626 // return actual number of windows |
7 | 1627 return (count - todo); |
1628 } | |
1629 | |
1630 /* | |
1631 * Exchange current and next window | |
1632 */ | |
1633 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1634 win_exchange(long Prenum) |
7 | 1635 { |
1636 frame_T *frp; | |
1637 frame_T *frp2; | |
1638 win_T *wp; | |
1639 win_T *wp2; | |
1640 int temp; | |
1641 | |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
1642 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
|
1643 return; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
1644 if (ONE_WINDOW) // just one window |
7 | 1645 { |
1646 beep_flush(); | |
1647 return; | |
1648 } | |
1649 | |
1650 #ifdef FEAT_GUI | |
1651 need_mouse_correct = TRUE; | |
1652 #endif | |
1653 | |
1654 /* | |
1655 * find window to exchange with | |
1656 */ | |
1657 if (Prenum) | |
1658 { | |
1659 frp = curwin->w_frame->fr_parent->fr_child; | |
1660 while (frp != NULL && --Prenum > 0) | |
1661 frp = frp->fr_next; | |
1662 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1663 else if (curwin->w_frame->fr_next != NULL) // Swap with next |
7 | 1664 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
|
1665 else // Swap last window in row/col with previous |
7 | 1666 frp = curwin->w_frame->fr_prev; |
1667 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1668 // 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
|
1669 // containing windows. |
7 | 1670 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin) |
1671 return; | |
1672 wp = frp->fr_win; | |
1673 | |
1674 /* | |
1675 * 1. remove curwin from the list. Remember after which window it was in wp2 | |
1676 * 2. insert curwin before wp in the list | |
1677 * if wp != wp2 | |
1678 * 3. remove wp from the list | |
1679 * 4. insert wp after wp2 | |
1680 * 5. exchange the status line height and vsep width. | |
1681 */ | |
1682 wp2 = curwin->w_prev; | |
1683 frp2 = curwin->w_frame->fr_prev; | |
1684 if (wp->w_prev != curwin) | |
1685 { | |
671 | 1686 win_remove(curwin, NULL); |
7 | 1687 frame_remove(curwin->w_frame); |
1688 win_append(wp->w_prev, curwin); | |
1689 frame_insert(frp, curwin->w_frame); | |
1690 } | |
1691 if (wp != wp2) | |
1692 { | |
671 | 1693 win_remove(wp, NULL); |
7 | 1694 frame_remove(wp->w_frame); |
1695 win_append(wp2, wp); | |
1696 if (frp2 == NULL) | |
1697 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame); | |
1698 else | |
1699 frame_append(frp2, wp->w_frame); | |
1700 } | |
1701 temp = curwin->w_status_height; | |
1702 curwin->w_status_height = wp->w_status_height; | |
1703 wp->w_status_height = temp; | |
1704 temp = curwin->w_vsep_width; | |
1705 curwin->w_vsep_width = wp->w_vsep_width; | |
1706 wp->w_vsep_width = temp; | |
1707 | |
25553
8b5dc14345ce
patch 8.2.3313: unused code in win_exchange() and frame_remove()
Bram Moolenaar <Bram@vim.org>
parents:
25505
diff
changeset
|
1708 frame_fix_height(curwin); |
8b5dc14345ce
patch 8.2.3313: unused code in win_exchange() and frame_remove()
Bram Moolenaar <Bram@vim.org>
parents:
25505
diff
changeset
|
1709 frame_fix_height(wp); |
8b5dc14345ce
patch 8.2.3313: unused code in win_exchange() and frame_remove()
Bram Moolenaar <Bram@vim.org>
parents:
25505
diff
changeset
|
1710 frame_fix_width(curwin); |
8b5dc14345ce
patch 8.2.3313: unused code in win_exchange() and frame_remove()
Bram Moolenaar <Bram@vim.org>
parents:
25505
diff
changeset
|
1711 frame_fix_width(wp); |
7 | 1712 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1713 (void)win_comp_pos(); // recompute window positions |
7 | 1714 |
27251
85f56e16da9b
patch 8.2.4154: ml_get error when exchanging windows in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
27032
diff
changeset
|
1715 if (wp->w_buffer != curbuf) |
85f56e16da9b
patch 8.2.4154: ml_get error when exchanging windows in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
27032
diff
changeset
|
1716 reset_VIsual_and_resel(); |
85f56e16da9b
patch 8.2.4154: ml_get error when exchanging windows in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
27032
diff
changeset
|
1717 else if (VIsual_active) |
85f56e16da9b
patch 8.2.4154: ml_get error when exchanging windows in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
27032
diff
changeset
|
1718 wp->w_cursor = curwin->w_cursor; |
85f56e16da9b
patch 8.2.4154: ml_get error when exchanging windows in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
27032
diff
changeset
|
1719 |
7 | 1720 win_enter(wp, TRUE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
1721 redraw_all_later(UPD_NOT_VALID); |
7 | 1722 } |
1723 | |
1724 /* | |
1725 * rotate windows: if upwards TRUE the second window becomes the first one | |
1726 * if upwards FALSE the first window becomes the second one | |
1727 */ | |
1728 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1729 win_rotate(int upwards, int count) |
7 | 1730 { |
1731 win_T *wp1; | |
1732 win_T *wp2; | |
1733 frame_T *frp; | |
1734 int n; | |
1735 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1736 if (ONE_WINDOW) // nothing to do |
7 | 1737 { |
1738 beep_flush(); | |
1739 return; | |
1740 } | |
1741 | |
1742 #ifdef FEAT_GUI | |
1743 need_mouse_correct = TRUE; | |
1744 #endif | |
1745 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1746 // 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
|
1747 FOR_ALL_FRAMES(frp, curwin->w_frame->fr_parent->fr_child) |
7 | 1748 if (frp->fr_win == NULL) |
1749 { | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
1750 emsg(_(e_cannot_rotate_when_another_window_is_split)); |
7 | 1751 return; |
1752 } | |
1753 | |
1754 while (count--) | |
1755 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1756 if (upwards) // first window becomes last window |
7 | 1757 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1758 // remove first window/frame from the list |
7 | 1759 frp = curwin->w_frame->fr_parent->fr_child; |
1760 wp1 = frp->fr_win; | |
671 | 1761 win_remove(wp1, NULL); |
7 | 1762 frame_remove(frp); |
1763 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1764 // find last frame and append removed window/frame after it |
7 | 1765 for ( ; frp->fr_next != NULL; frp = frp->fr_next) |
1766 ; | |
1767 win_append(frp->fr_win, wp1); | |
1768 frame_append(frp, wp1->w_frame); | |
1769 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1770 wp2 = frp->fr_win; // previously last window |
7 | 1771 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1772 else // last window becomes first window |
7 | 1773 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1774 // find last window/frame in the list and remove it |
7 | 1775 for (frp = curwin->w_frame; frp->fr_next != NULL; |
1776 frp = frp->fr_next) | |
1777 ; | |
1778 wp1 = frp->fr_win; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1779 wp2 = wp1->w_prev; // will become last window |
671 | 1780 win_remove(wp1, NULL); |
7 | 1781 frame_remove(frp); |
1782 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1783 // append the removed window/frame before the first in the list |
7 | 1784 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1); |
1785 frame_insert(frp->fr_parent->fr_child, frp); | |
1786 } | |
1787 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1788 // exchange status height and vsep width of old and new last window |
7 | 1789 n = wp2->w_status_height; |
1790 wp2->w_status_height = wp1->w_status_height; | |
1791 wp1->w_status_height = n; | |
1792 frame_fix_height(wp1); | |
1793 frame_fix_height(wp2); | |
1794 n = wp2->w_vsep_width; | |
1795 wp2->w_vsep_width = wp1->w_vsep_width; | |
1796 wp1->w_vsep_width = n; | |
1797 frame_fix_width(wp1); | |
1798 frame_fix_width(wp2); | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1799 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1800 // recompute w_winrow and w_wincol for all windows |
7 | 1801 (void)win_comp_pos(); |
1802 } | |
1803 | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
1804 redraw_all_later(UPD_NOT_VALID); |
7 | 1805 } |
1806 | |
1807 /* | |
1808 * Move the current window to the very top/bottom/left/right of the screen. | |
1809 */ | |
1810 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1811 win_totop(int size, int flags) |
7 | 1812 { |
1813 int dir; | |
1814 int height = curwin->w_height; | |
1815 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1816 if (ONE_WINDOW) |
7 | 1817 { |
1818 beep_flush(); | |
1819 return; | |
1820 } | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1821 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
|
1822 return; |
7 | 1823 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1824 // Remove the window and frame from the tree of frames. |
671 | 1825 (void)winframe_remove(curwin, &dir, NULL); |
1826 win_remove(curwin, NULL); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1827 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
|
1828 (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
|
1829 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1830 // Split a window on the desired side and put the window there. |
7 | 1831 (void)win_split_ins(size, flags, curwin, dir); |
1832 if (!(flags & WSP_VERT)) | |
1833 { | |
1834 win_setheight(height); | |
1835 if (p_ea) | |
1836 win_equal(curwin, TRUE, 'v'); | |
1837 } | |
1838 | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1839 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1840 // 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
|
1841 // scrollbars. Have to update them anyway. |
1906 | 1842 gui_may_update_scrollbars(); |
1843 #endif | |
7 | 1844 } |
1845 | |
1846 /* | |
1847 * Move window "win1" to below/right of "win2" and make "win1" the current | |
1848 * window. Only works within the same frame! | |
1849 */ | |
1850 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1851 win_move_after(win_T *win1, win_T *win2) |
7 | 1852 { |
1853 int height; | |
1854 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1855 // check if the arguments are reasonable |
7 | 1856 if (win1 == win2) |
1857 return; | |
1858 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1859 // check if there is something to do |
7 | 1860 if (win2->w_next != win1) |
1861 { | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1862 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
|
1863 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1864 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
|
1865 return; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1866 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1867 |
21020
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
21016
diff
changeset
|
1868 // 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
|
1869 // window |
7 | 1870 if (win1 == lastwin) |
1871 { | |
1872 height = win1->w_prev->w_status_height; | |
1873 win1->w_prev->w_status_height = win1->w_status_height; | |
1874 win1->w_status_height = height; | |
1070 | 1875 if (win1->w_prev->w_vsep_width == 1) |
1876 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1877 // 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
|
1878 // add it to the last window. Adjust the frame widths. |
1070 | 1879 win1->w_prev->w_vsep_width = 0; |
1880 win1->w_prev->w_frame->fr_width -= 1; | |
1881 win1->w_vsep_width = 1; | |
1882 win1->w_frame->fr_width += 1; | |
1883 } | |
7 | 1884 } |
1885 else if (win2 == lastwin) | |
1886 { | |
1887 height = win1->w_status_height; | |
1888 win1->w_status_height = win2->w_status_height; | |
1889 win2->w_status_height = height; | |
1070 | 1890 if (win1->w_vsep_width == 1) |
1891 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1892 // 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
|
1893 // window, win2. Adjust the frame widths. |
1070 | 1894 win2->w_vsep_width = 1; |
1895 win2->w_frame->fr_width += 1; | |
1896 win1->w_vsep_width = 0; | |
1897 win1->w_frame->fr_width -= 1; | |
1898 } | |
7 | 1899 } |
671 | 1900 win_remove(win1, NULL); |
7 | 1901 frame_remove(win1->w_frame); |
1902 win_append(win2, win1); | |
1903 frame_append(win2->w_frame, win1->w_frame); | |
1904 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1905 (void)win_comp_pos(); // recompute w_winrow for all windows |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
1906 redraw_later(UPD_NOT_VALID); |
7 | 1907 } |
1908 win_enter(win1, FALSE); | |
1909 } | |
1910 | |
1911 /* | |
1912 * Make all windows the same height. | |
1913 * 'next_curwin' will soon be the current window, make sure it has enough | |
1914 * rows. | |
1915 */ | |
1916 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1917 win_equal( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1918 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
|
1919 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
|
1920 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
|
1921 // 'b' for both, 0 for using p_ead |
7 | 1922 { |
1923 if (dir == 0) | |
1924 dir = *p_ead; | |
1925 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current, | |
685 | 1926 topframe, dir, 0, tabline_height(), |
667 | 1927 (int)Columns, topframe->fr_height); |
30300
b9d07900b0b8
patch 9.0.0486: text scrolled with 'nosplitscroll', autocmd win and help
Bram Moolenaar <Bram@vim.org>
parents:
30285
diff
changeset
|
1928 if (!p_spsc && next_curwin != aucmd_win) |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
1929 win_fix_scroll(TRUE); |
7 | 1930 } |
1931 | |
1932 /* | |
1933 * Set a frame to a new position and height, spreading the available room | |
1934 * equally over contained frames. | |
1935 * The window "next_curwin" (if not NULL) should at least get the size from | |
1936 * 'winheight' and 'winwidth' if possible. | |
1937 */ | |
1938 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1939 win_equal_rec( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1940 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
|
1941 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
|
1942 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
|
1943 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
|
1944 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
|
1945 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
|
1946 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
|
1947 int height) // new height of frame |
7 | 1948 { |
1949 int n, m; | |
1950 int extra_sep = 0; | |
1951 int wincount, totwincount = 0; | |
1952 frame_T *fr; | |
1953 int next_curwin_size = 0; | |
1954 int room = 0; | |
1955 int new_size; | |
1956 int has_next_curwin = 0; | |
1957 int hnc; | |
1958 | |
1959 if (topfr->fr_layout == FR_LEAF) | |
1960 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1961 // 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
|
1962 // Redraw when size or position changes |
7 | 1963 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row |
1964 || topfr->fr_width != width || topfr->fr_win->w_wincol != col | |
1965 ) | |
1966 { | |
1967 topfr->fr_win->w_winrow = row; | |
1968 frame_new_height(topfr, height, FALSE, FALSE); | |
1969 topfr->fr_win->w_wincol = col; | |
779 | 1970 frame_new_width(topfr, width, FALSE, FALSE); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
1971 redraw_all_later(UPD_NOT_VALID); |
7 | 1972 } |
1973 } | |
1974 else if (topfr->fr_layout == FR_ROW) | |
1975 { | |
1976 topfr->fr_width = width; | |
1977 topfr->fr_height = height; | |
1978 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1979 if (dir != 'v') // equalize frame widths |
7 | 1980 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1981 // 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
|
1982 // frame. |
7 | 1983 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
|
1984 // add one for the rightmost window, it doesn't have a separator |
7 | 1985 if (col + width == Columns) |
1986 extra_sep = 1; | |
1987 else | |
1988 extra_sep = 0; | |
1989 totwincount = (n + extra_sep) / (p_wmw + 1); | |
779 | 1990 has_next_curwin = frame_has_win(topfr, next_curwin); |
1991 | |
1992 /* | |
1993 * Compute width for "next_curwin" window and room available for | |
1994 * other windows. | |
1995 * "m" is the minimal width when counting p_wiw for "next_curwin". | |
1996 */ | |
7 | 1997 m = frame_minwidth(topfr, next_curwin); |
1998 room = width - m; | |
1999 if (room < 0) | |
2000 { | |
2001 next_curwin_size = p_wiw + room; | |
2002 room = 0; | |
2003 } | |
2004 else | |
2005 { | |
779 | 2006 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
|
2007 FOR_ALL_FRAMES(fr, topfr->fr_child) |
779 | 2008 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2009 if (!frame_fixed_width(fr)) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2010 continue; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2011 // If 'winfixwidth' set keep the window width if possible. |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2012 // Watch out for this window being the next_curwin. |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2013 n = frame_minwidth(fr, NOWIN); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2014 new_size = fr->fr_width; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2015 if (frame_has_win(fr, next_curwin)) |
779 | 2016 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2017 room += p_wiw - p_wmw; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2018 next_curwin_size = 0; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2019 if (new_size < p_wiw) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2020 new_size = p_wiw; |
779 | 2021 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2022 else |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2023 // These windows don't use up room. |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2024 totwincount -= (n + (fr->fr_next == NULL |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2025 ? extra_sep : 0)) / (p_wmw + 1); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2026 room -= new_size - n; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2027 if (room < 0) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2028 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2029 new_size += room; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2030 room = 0; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2031 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2032 fr->fr_newwidth = new_size; |
779 | 2033 } |
2034 if (next_curwin_size == -1) | |
2035 { | |
2036 if (!has_next_curwin) | |
2037 next_curwin_size = 0; | |
2038 else if (totwincount > 1 | |
2039 && (room + (totwincount - 2)) | |
2040 / (totwincount - 1) > p_wiw) | |
2041 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2042 // 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
|
2043 // the room equally. |
834 | 2044 next_curwin_size = (room + p_wiw |
2045 + (totwincount - 1) * p_wmw | |
2046 + (totwincount - 1)) / totwincount; | |
779 | 2047 room -= next_curwin_size - p_wiw; |
2048 } | |
2049 else | |
2050 next_curwin_size = p_wiw; | |
2051 } | |
7 | 2052 } |
779 | 2053 |
2054 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2055 --totwincount; // don't count curwin |
7 | 2056 } |
2057 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2058 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2059 { |
2060 wincount = 1; | |
2061 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
|
2062 // last frame gets all that remains (avoid roundoff error) |
7 | 2063 new_size = width; |
2064 else if (dir == 'v') | |
2065 new_size = fr->fr_width; | |
779 | 2066 else if (frame_fixed_width(fr)) |
2067 { | |
2068 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
|
2069 wincount = 0; // doesn't count as a sizeable window |
779 | 2070 } |
7 | 2071 else |
2072 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2073 // Compute the maximum number of windows horiz. in "fr". |
7 | 2074 n = frame_minwidth(fr, NOWIN); |
2075 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2076 / (p_wmw + 1); | |
2077 m = frame_minwidth(fr, next_curwin); | |
779 | 2078 if (has_next_curwin) |
2079 hnc = frame_has_win(fr, next_curwin); | |
2080 else | |
2081 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2082 if (hnc) // don't count next_curwin |
7 | 2083 --wincount; |
779 | 2084 if (totwincount == 0) |
2085 new_size = room; | |
2086 else | |
2087 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
7 | 2088 / totwincount; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2089 if (hnc) // add next_curwin size |
7 | 2090 { |
2091 next_curwin_size -= p_wiw - (m - n); | |
30525
6fa498af368d
patch 9.0.0598: using negative array index with negative width window
Bram Moolenaar <Bram@vim.org>
parents:
30439
diff
changeset
|
2092 if (next_curwin_size < 0) |
6fa498af368d
patch 9.0.0598: using negative array index with negative width window
Bram Moolenaar <Bram@vim.org>
parents:
30439
diff
changeset
|
2093 next_curwin_size = 0; |
7 | 2094 new_size += next_curwin_size; |
779 | 2095 room -= new_size - next_curwin_size; |
7 | 2096 } |
779 | 2097 else |
2098 room -= new_size; | |
2099 new_size += n; | |
7 | 2100 } |
2101 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2102 // 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
|
2103 // window, unless equalizing all frames. |
7 | 2104 if (!current || dir != 'v' || topfr->fr_parent != NULL |
2105 || (new_size != fr->fr_width) | |
2106 || frame_has_win(fr, next_curwin)) | |
2107 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
779 | 2108 new_size, height); |
2109 col += new_size; | |
2110 width -= new_size; | |
7 | 2111 totwincount -= wincount; |
2112 } | |
2113 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2114 else // topfr->fr_layout == FR_COL |
7 | 2115 { |
2116 topfr->fr_width = width; | |
2117 topfr->fr_height = height; | |
2118 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2119 if (dir != 'h') // equalize frame heights |
7 | 2120 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2121 // Compute maximum number of windows vertically in this frame. |
7 | 2122 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
|
2123 // add one for the bottom window if it doesn't have a statusline |
7 | 2124 if (row + height == cmdline_row && p_ls == 0) |
2125 extra_sep = 1; | |
2126 else | |
2127 extra_sep = 0; | |
2128 totwincount = (n + extra_sep) / (p_wmh + 1); | |
2129 has_next_curwin = frame_has_win(topfr, next_curwin); | |
2130 | |
2131 /* | |
2132 * Compute height for "next_curwin" window and room available for | |
2133 * other windows. | |
2134 * "m" is the minimal height when counting p_wh for "next_curwin". | |
2135 */ | |
2136 m = frame_minheight(topfr, next_curwin); | |
2137 room = height - m; | |
2138 if (room < 0) | |
2139 { | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2140 // The room is less than 'winheight', use all space for the |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2141 // current window. |
7 | 2142 next_curwin_size = p_wh + room; |
2143 room = 0; | |
2144 } | |
2145 else | |
2146 { | |
2147 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
|
2148 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2149 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2150 if (!frame_fixed_height(fr)) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2151 continue; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2152 // 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
|
2153 // possible. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2154 // Watch out for this window being the next_curwin. |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2155 n = frame_minheight(fr, NOWIN); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2156 new_size = fr->fr_height; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2157 if (frame_has_win(fr, next_curwin)) |
7 | 2158 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2159 room += p_wh - p_wmh; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2160 next_curwin_size = 0; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2161 if (new_size < p_wh) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2162 new_size = p_wh; |
7 | 2163 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2164 else |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2165 // These windows don't use up room. |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2166 totwincount -= (n + (fr->fr_next == NULL |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2167 ? extra_sep : 0)) / (p_wmh + 1); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2168 room -= new_size - n; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2169 if (room < 0) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2170 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2171 new_size += room; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2172 room = 0; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2173 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2174 fr->fr_newheight = new_size; |
7 | 2175 } |
2176 if (next_curwin_size == -1) | |
2177 { | |
2178 if (!has_next_curwin) | |
2179 next_curwin_size = 0; | |
2180 else if (totwincount > 1 | |
2181 && (room + (totwincount - 2)) | |
2182 / (totwincount - 1) > p_wh) | |
2183 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2184 // 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
|
2185 // spread the room equally. |
834 | 2186 next_curwin_size = (room + p_wh |
2187 + (totwincount - 1) * p_wmh | |
7 | 2188 + (totwincount - 1)) / totwincount; |
2189 room -= next_curwin_size - p_wh; | |
2190 } | |
2191 else | |
2192 next_curwin_size = p_wh; | |
2193 } | |
2194 } | |
2195 | |
2196 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2197 --totwincount; // don't count curwin |
7 | 2198 } |
2199 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2200 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2201 { |
2202 wincount = 1; | |
2203 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
|
2204 // last frame gets all that remains (avoid roundoff error) |
7 | 2205 new_size = height; |
2206 else if (dir == 'h') | |
2207 new_size = fr->fr_height; | |
2208 else if (frame_fixed_height(fr)) | |
2209 { | |
2210 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
|
2211 wincount = 0; // doesn't count as a sizeable window |
7 | 2212 } |
2213 else | |
2214 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2215 // Compute the maximum number of windows vert. in "fr". |
7 | 2216 n = frame_minheight(fr, NOWIN); |
2217 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2218 / (p_wmh + 1); | |
2219 m = frame_minheight(fr, next_curwin); | |
2220 if (has_next_curwin) | |
2221 hnc = frame_has_win(fr, next_curwin); | |
2222 else | |
2223 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2224 if (hnc) // don't count next_curwin |
7 | 2225 --wincount; |
2226 if (totwincount == 0) | |
2227 new_size = room; | |
2228 else | |
2229 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
2230 / totwincount; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2231 if (hnc) // add next_curwin size |
7 | 2232 { |
2233 next_curwin_size -= p_wh - (m - n); | |
2234 new_size += next_curwin_size; | |
2235 room -= new_size - next_curwin_size; | |
2236 } | |
2237 else | |
2238 room -= new_size; | |
2239 new_size += n; | |
2240 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2241 // 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
|
2242 // window, unless equalizing all frames. |
7 | 2243 if (!current || dir != 'h' || topfr->fr_parent != NULL |
2244 || (new_size != fr->fr_height) | |
2245 || frame_has_win(fr, next_curwin)) | |
2246 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
2247 width, new_size); | |
2248 row += new_size; | |
2249 height -= new_size; | |
2250 totwincount -= wincount; | |
2251 } | |
2252 } | |
2253 } | |
2254 | |
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
|
2255 #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
|
2256 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
|
2257 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
|
2258 { |
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
|
2259 // 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
|
2260 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
|
2261 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
|
2262 |
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
|
2263 // 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
|
2264 // 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
|
2265 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
|
2266 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
|
2267 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
|
2268 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
|
2269 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2270 // 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
|
2271 // 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
|
2272 // mode when entering the window again. |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28688
diff
changeset
|
2273 if (State & MODE_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
|
2274 { |
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
|
2275 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
|
2276 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
|
2277 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
|
2278 } |
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
|
2279 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2280 |
22470
f7471450243c
patch 8.2.1783: try-catch test fails
Bram Moolenaar <Bram@vim.org>
parents:
22464
diff
changeset
|
2281 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
|
2282 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
|
2283 { |
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
|
2284 // 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
|
2285 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
|
2286 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
|
2287 |
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
|
2288 // 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
|
2289 // 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
|
2290 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
|
2291 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
|
2292 |
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
|
2293 // When entering the prompt window restart Insert mode if we were in Insert |
26280
b93e176e7998
patch 8.2.3671: restarting Insert mode in prompt buffer too often
Bram Moolenaar <Bram@vim.org>
parents:
26193
diff
changeset
|
2294 // mode when we left it and not already in Insert mode. |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28688
diff
changeset
|
2295 if ((State & MODE_INSERT) == 0) |
26280
b93e176e7998
patch 8.2.3671: restarting Insert mode in prompt buffer too often
Bram Moolenaar <Bram@vim.org>
parents:
26193
diff
changeset
|
2296 restart_edit = win->w_buffer->b_prompt_insert; |
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
|
2297 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2298 #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
|
2299 |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2300 static void |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2301 win_init_empty(win_T *wp) |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2302 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
2303 redraw_win_later(wp, UPD_NOT_VALID); |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2304 wp->w_lines_valid = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2305 wp->w_cursor.lnum = 1; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2306 wp->w_curswant = wp->w_cursor.col = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2307 wp->w_cursor.coladd = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2308 wp->w_pcmark.lnum = 1; // pcmark not cleared but set to line 1 |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2309 wp->w_pcmark.col = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2310 wp->w_prev_pcmark.lnum = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2311 wp->w_prev_pcmark.col = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2312 wp->w_topline = 1; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2313 #ifdef FEAT_DIFF |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2314 wp->w_topfill = 0; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2315 #endif |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2316 wp->w_botline = 2; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2317 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2318 wp->w_s = &wp->w_buffer->b_s; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2319 #endif |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2320 #ifdef FEAT_TERMINAL |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2321 term_reset_wincolor(wp); |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2322 #endif |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2323 } |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2324 |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2325 /* |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2326 * Init the current window "curwin". |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2327 * Called when a new file is being edited. |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2328 */ |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2329 void |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2330 curwin_init(void) |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2331 { |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2332 win_init_empty(curwin); |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2333 } |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2334 |
7 | 2335 /* |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2336 * Close all windows for buffer "buf". |
7 | 2337 */ |
2338 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2339 close_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2340 buf_T *buf, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2341 int keep_curwin) // don't close "curwin" |
7 | 2342 { |
671 | 2343 win_T *wp; |
2344 tabpage_T *tp, *nexttp; | |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2345 int count = tabpage_index(NULL); |
7 | 2346 |
2347 ++RedrawingDisabled; | |
671 | 2348 |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
2349 for (wp = firstwin; wp != NULL && !ONE_WINDOW; ) |
7 | 2350 { |
3570 | 2351 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
|
2352 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
7 | 2353 { |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2354 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
|
2355 // 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
|
2356 // 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
|
2357 break; |
671 | 2358 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2359 // Start all over, autocommands may change the window layout. |
671 | 2360 wp = firstwin; |
7 | 2361 } |
2362 else | |
671 | 2363 wp = wp->w_next; |
7 | 2364 } |
671 | 2365 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2366 // Also check windows in other tab pages. |
671 | 2367 for (tp = first_tabpage; tp != NULL; tp = nexttp) |
2368 { | |
2369 nexttp = tp->tp_next; | |
672 | 2370 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
|
2371 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
3570 | 2372 if (wp->w_buffer == buf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2373 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
671 | 2374 { |
2375 win_close_othertab(wp, FALSE, tp); | |
2376 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2377 // 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
|
2378 // autocommands may change the window layout. |
671 | 2379 nexttp = first_tabpage; |
2380 break; | |
2381 } | |
2382 } | |
2383 | |
7 | 2384 --RedrawingDisabled; |
671 | 2385 |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2386 if (count != tabpage_index(NULL)) |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2387 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
7 | 2388 } |
2389 | |
2390 /* | |
1906 | 2391 * Return TRUE if the current window is the only window that exists (ignoring |
2392 * "aucmd_win"). | |
672 | 2393 * Returns FALSE if there is a window, possibly in another tab page. |
667 | 2394 */ |
672 | 2395 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2396 last_window(void) |
667 | 2397 { |
1906 | 2398 return (one_window() && first_tabpage->tp_next == NULL); |
2399 } | |
2400 | |
2401 /* | |
2402 * Return TRUE if there is only one window other than "aucmd_win" in the | |
2403 * current tab page. | |
2404 */ | |
3365 | 2405 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2406 one_window(void) |
1906 | 2407 { |
2408 win_T *wp; | |
2409 int seen_one = FALSE; | |
2410 | |
2411 FOR_ALL_WINDOWS(wp) | |
2412 { | |
2413 if (wp != aucmd_win) | |
2414 { | |
2415 if (seen_one) | |
2416 return FALSE; | |
2417 seen_one = TRUE; | |
2418 } | |
2419 } | |
2420 return TRUE; | |
667 | 2421 } |
2422 | |
2423 /* | |
3535 | 2424 * Close the possibly last window in a tab page. |
2425 * Returns TRUE when the window was closed already. | |
2426 */ | |
2427 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2428 close_last_window_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2429 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2430 int free_buf, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2431 tabpage_T *prev_curtab) |
3535 | 2432 { |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2433 if (ONE_WINDOW) |
3535 | 2434 { |
4354 | 2435 buf_T *old_curbuf = curbuf; |
2436 | |
3535 | 2437 /* |
2438 * Closing the last window in a tab page. First go to another tab | |
2439 * page and then close the window and the tab page. This avoids that | |
2440 * curwin and curtab are invalid while we are freeing memory, they may | |
2441 * be used in GUI events. | |
3582 | 2442 * Don't trigger autocommands yet, they may use wrong values, so do |
2443 * that below. | |
3535 | 2444 */ |
4354 | 2445 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE); |
3535 | 2446 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2447 // 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
|
2448 // to the other tab page. |
3535 | 2449 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win) |
2450 win_close_othertab(win, free_buf, prev_curtab); | |
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
|
2451 #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
|
2452 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
|
2453 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2454 // 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
|
2455 // that now. |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2456 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
4354 | 2457 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
3582 | 2458 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
4354 | 2459 if (old_curbuf != curbuf) |
2460 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3535 | 2461 return TRUE; |
2462 } | |
2463 return FALSE; | |
2464 } | |
2465 | |
2466 /* | |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2467 * 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
|
2468 * "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
|
2469 * "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
|
2470 * windows are closed. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2471 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2472 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
|
2473 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
|
2474 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2475 #ifdef FEAT_SYN_HL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2476 // 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
|
2477 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2478 reset_synblock(win); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2479 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2480 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2481 #ifdef FEAT_QUICKFIX |
26458
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26416
diff
changeset
|
2482 // When a quickfix/location list window is closed and the buffer is |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26416
diff
changeset
|
2483 // displayed in only one window, then unlist the buffer. |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26416
diff
changeset
|
2484 if (win->w_buffer != NULL && bt_quickfix(win->w_buffer) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26416
diff
changeset
|
2485 && win->w_buffer->b_nwindows == 1) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2486 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
|
2487 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2488 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2489 // Close the link to the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2490 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2491 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2492 bufref_T bufref; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2493 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2494 set_bufref(&bufref, curbuf); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2495 win->w_closing = TRUE; |
28349
d3a1fc6b4da6
patch 8.2.4700: buffer remains active if WinClosed event throws an exception
Bram Moolenaar <Bram@vim.org>
parents:
28289
diff
changeset
|
2496 close_buffer(win, win->w_buffer, action, abort_if_last, TRUE); |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2497 if (win_valid_any_tab(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2498 win->w_closing = FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2499 // 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
|
2500 // "wipe". |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2501 if (!bufref_valid(&bufref)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2502 curbuf = firstbuf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2503 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2504 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2505 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2506 /* |
819 | 2507 * Close window "win". Only works for the current tab page. |
7 | 2508 * If "free_buf" is TRUE related buffer may be unloaded. |
2509 * | |
3365 | 2510 * Called by :quit, :close, :xit, :wq and findtag(). |
5302 | 2511 * Returns FAIL when the window was not closed. |
7 | 2512 */ |
5302 | 2513 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2514 win_close(win_T *win, int free_buf) |
7 | 2515 { |
2516 win_T *wp; | |
2517 int other_buffer = FALSE; | |
2518 int close_curwin = FALSE; | |
2519 int dir; | |
2520 int help_window = FALSE; | |
847 | 2521 tabpage_T *prev_curtab = curtab; |
11593
c4e7fe672a72
patch 8.0.0679: using freed memory
Christian Brabandt <cb@256bit.org>
parents:
11591
diff
changeset
|
2522 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
|
2523 #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
|
2524 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
|
2525 #endif |
25505
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2526 #ifdef MESSAGE_QUEUE |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2527 int did_decrement = FALSE; |
25505
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2528 #endif |
7 | 2529 |
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
|
2530 #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
|
2531 // 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
|
2532 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
|
2533 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
|
2534 #endif |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
2535 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
|
2536 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
2537 |
667 | 2538 if (last_window()) |
7 | 2539 { |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
2540 emsg(_(e_cannot_close_last_window)); |
5302 | 2541 return FAIL; |
7 | 2542 } |
2543 | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2544 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
|
2545 && 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
|
2546 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
|
2547 if (win_unlisted(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2548 { |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2549 emsg(_(e_cannot_close_autocmd_or_popup_window)); |
5302 | 2550 return FAIL; |
1906 | 2551 } |
2552 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) | |
2553 { | |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2554 emsg(_(e_cannot_close_window_only_autocmd_window_would_remain)); |
5302 | 2555 return FAIL; |
1906 | 2556 } |
2557 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2558 // 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
|
2559 // 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
|
2560 // curtab are invalid while we are freeing memory. |
3535 | 2561 if (close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2562 return FAIL; |
856 | 2563 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2564 // 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
|
2565 // 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
|
2566 if (bt_help(win->w_buffer)) |
7 | 2567 help_window = TRUE; |
2568 else | |
1906 | 2569 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 2570 |
2571 if (win == curwin) | |
2572 { | |
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
|
2573 #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
|
2574 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
|
2575 #endif |
7 | 2576 /* |
2577 * Guess which window is going to be the new current window. | |
2578 * This may change because of the autocommands (sigh). | |
2579 */ | |
671 | 2580 wp = frame2win(win_altframe(win, NULL)); |
7 | 2581 |
2582 /* | |
3570 | 2583 * Be careful: If autocommands delete the window or cause this window |
2584 * to be the last one left, return now. | |
7 | 2585 */ |
2586 if (wp->w_buffer != curbuf) | |
2587 { | |
29348
05ac4ab2c282
patch 9.0.0017: accessing memory beyond the end of the line
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2588 reset_VIsual_and_resel(); // stop Visual mode |
05ac4ab2c282
patch 9.0.0017: accessing memory beyond the end of the line
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2589 |
7 | 2590 other_buffer = TRUE; |
3570 | 2591 win->w_closing = TRUE; |
7 | 2592 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2593 if (!win_valid(win)) |
5302 | 2594 return FAIL; |
3570 | 2595 win->w_closing = FALSE; |
2596 if (last_window()) | |
5302 | 2597 return FAIL; |
7 | 2598 } |
3570 | 2599 win->w_closing = TRUE; |
7 | 2600 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2601 if (!win_valid(win)) |
5302 | 2602 return FAIL; |
3570 | 2603 win->w_closing = FALSE; |
2604 if (last_window()) | |
5302 | 2605 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2606 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2607 // autocmds may abort script processing |
7 | 2608 if (aborting()) |
5302 | 2609 return FAIL; |
7 | 2610 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2611 } |
7 | 2612 |
1101 | 2613 #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
|
2614 // 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
|
2615 // win_free(). |
1101 | 2616 if (gui.in_use) |
2617 out_flush(); | |
2618 #endif | |
2619 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
2620 #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
|
2621 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
|
2622 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
|
2623 #endif |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2624 |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2625 // Trigger WinClosed just before starting to free window-related resources. |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2626 trigger_winclosed(win); |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2627 // autocmd may have freed the window already. |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2628 if (!win_valid_any_tab(win)) |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2629 return OK; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2630 |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2631 win_close_buffer(win, free_buf ? DOBUF_UNLOAD : 0, TRUE); |
847 | 2632 |
4021 | 2633 if (only_one_window() && win_valid(win) && win->w_buffer == NULL |
2634 && (last_window() || curtab != prev_curtab | |
2635 || 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
|
2636 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2637 // 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
|
2638 // 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
|
2639 if (curwin->w_buffer == NULL) |
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2640 curwin->w_buffer = curbuf; |
4021 | 2641 getout(0); |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2642 } |
4021 | 2643 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2644 // 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
|
2645 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
|
2646 && win->w_buffer == NULL) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2647 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2648 // Need to close the window anyway, since the buffer is NULL. |
30429
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2649 // Don't trigger autocmds with a NULL buffer. |
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2650 block_autocmds(); |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2651 win_close_othertab(win, FALSE, prev_curtab); |
30429
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2652 unblock_autocmds(); |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2653 return FAIL; |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2654 } |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2655 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2656 // 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
|
2657 // other window. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2658 if (!win_valid(win) || last_window() |
3535 | 2659 || close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2660 return FAIL; |
7 | 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 // 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
|
2663 // 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
|
2664 // 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
|
2665 // screen. |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2666 ++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
|
2667 #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
|
2668 ++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
|
2669 #endif |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2670 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2671 // 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
|
2672 // the screen space. |
847 | 2673 wp = win_free_mem(win, &dir, NULL); |
2674 | |
28688
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2675 if (help_window) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2676 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2677 // Closing the help window moves the cursor back to the current window |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2678 // of the snapshot. |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2679 win_T *prev_win = get_snapshot_curwin(SNAP_HELP_IDX); |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2680 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2681 if (win_valid(prev_win)) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2682 wp = prev_win; |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2683 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2684 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2685 // 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
|
2686 // 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
|
2687 // too. |
847 | 2688 if (win == curwin) |
7 | 2689 { |
2690 curwin = wp; | |
2691 #ifdef FEAT_QUICKFIX | |
2692 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer)) | |
2693 { | |
2694 /* | |
1346 | 2695 * If the cursor goes to the preview or the quickfix window, try |
7 | 2696 * finding another window to go to. |
2697 */ | |
2698 for (;;) | |
2699 { | |
2700 if (wp->w_next == NULL) | |
2701 wp = firstwin; | |
2702 else | |
2703 wp = wp->w_next; | |
2704 if (wp == curwin) | |
2705 break; | |
2706 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer)) | |
2707 { | |
2708 curwin = wp; | |
2709 break; | |
2710 } | |
2711 } | |
2712 } | |
2713 #endif | |
2714 curbuf = curwin->w_buffer; | |
2715 close_curwin = TRUE; | |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2716 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2717 // 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
|
2718 // using the window. |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2719 check_cursor(); |
7 | 2720 } |
30134
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2721 |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2722 /* |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2723 * If last window has a status line now and we don't want one, remove the |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2724 * status line. Do this before win_equal(), because it may change the |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2725 * height of a window |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2726 */ |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2727 last_status(FALSE); |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2728 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2729 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
|
2730 // 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
|
2731 // 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
|
2732 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir); |
7 | 2733 else |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
2734 { |
7 | 2735 win_comp_pos(); |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
2736 if (!p_spsc) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
2737 win_fix_scroll(FALSE); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
2738 } |
7 | 2739 if (close_curwin) |
2740 { | |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2741 // Pass WEE_ALLOW_PARSE_MESSAGES to decrement dont_parse_messages |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2742 // before autocommands. |
25505
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2743 #ifdef MESSAGE_QUEUE |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2744 did_decrement = |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2745 #else |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2746 (void) |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2747 #endif |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2748 win_enter_ext(wp, |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2749 WEE_CURWIN_INVALID | WEE_TRIGGER_ENTER_AUTOCMDS |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2750 | WEE_TRIGGER_LEAVE_AUTOCMDS | WEE_ALLOW_PARSE_MESSAGES); |
7 | 2751 if (other_buffer) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2752 // careful: after this wp and win may be invalid! |
7 | 2753 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
2754 } | |
2755 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2756 --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
|
2757 #ifdef MESSAGE_QUEUE |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2758 if (!did_decrement) |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2759 --dont_parse_messages; |
22800
8e7cbf73c3a0
patch 8.2.1948: GUI: crash when handling message while closing a window
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
2760 #endif |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2761 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2762 // 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
|
2763 // before it was opened. |
7 | 2764 if (help_window) |
1906 | 2765 restore_snapshot(SNAP_HELP_IDX, close_curwin); |
7 | 2766 |
18590
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2767 #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
|
2768 // 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
|
2769 // 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
|
2770 // 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
|
2771 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
|
2772 { |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2773 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
|
2774 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
|
2775 |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2776 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
|
2777 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
|
2778 ++diffcount; |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2779 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
|
2780 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
|
2781 } |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2782 #endif |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2783 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2784 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2785 // When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. |
7 | 2786 if (gui.in_use && !win_hasvertsplit()) |
2787 gui_init_which_components(NULL); | |
2788 #endif | |
2789 | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
2790 redraw_all_later(UPD_NOT_VALID); |
5302 | 2791 return OK; |
7 | 2792 } |
2793 | |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2794 static void |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2795 trigger_winclosed(win_T *win) |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2796 { |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2797 static int recursive = FALSE; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2798 char_u winid[NUMBUFLEN]; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2799 |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2800 if (recursive) |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2801 return; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2802 recursive = TRUE; |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2803 vim_snprintf((char *)winid, sizeof(winid), "%d", win->w_id); |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2804 apply_autocmds(EVENT_WINCLOSED, winid, winid, FALSE, win->w_buffer); |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2805 recursive = FALSE; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2806 } |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2807 |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2808 /* |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2809 * Trigger WinScrolled for "curwin" if needed. |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2810 */ |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2811 void |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2812 may_trigger_winscrolled(void) |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2813 { |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2814 win_T *wp = curwin; |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2815 static int recursive = FALSE; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2816 char_u winid[NUMBUFLEN]; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2817 |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2818 if (recursive || !has_winscrolled()) |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2819 return; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2820 |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2821 if (wp->w_last_topline != wp->w_topline |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2822 || wp->w_last_leftcol != wp->w_leftcol |
29932
27cb0eed6aef
patch 9.0.0304: WinScrolled is not triggered when only skipcol changes
Bram Moolenaar <Bram@vim.org>
parents:
29912
diff
changeset
|
2823 || wp->w_last_skipcol != wp->w_skipcol |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2824 || wp->w_last_width != wp->w_width |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2825 || wp->w_last_height != wp->w_height) |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2826 { |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2827 vim_snprintf((char *)winid, sizeof(winid), "%d", wp->w_id); |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2828 |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2829 recursive = TRUE; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2830 apply_autocmds(EVENT_WINSCROLLED, winid, winid, FALSE, wp->w_buffer); |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2831 recursive = FALSE; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2832 |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2833 // an autocmd may close the window, "wp" may be invalid now |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2834 if (win_valid_any_tab(wp)) |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2835 { |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2836 wp->w_last_topline = wp->w_topline; |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2837 wp->w_last_leftcol = wp->w_leftcol; |
29932
27cb0eed6aef
patch 9.0.0304: WinScrolled is not triggered when only skipcol changes
Bram Moolenaar <Bram@vim.org>
parents:
29912
diff
changeset
|
2838 wp->w_last_skipcol = wp->w_skipcol; |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2839 wp->w_last_width = wp->w_width; |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2840 wp->w_last_height = wp->w_height; |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2841 } |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2842 } |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2843 } |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2844 |
7 | 2845 /* |
671 | 2846 * Close window "win" in tab page "tp", which is not the current tab page. |
3535 | 2847 * This may be the last window in that tab page and result in closing the tab, |
671 | 2848 * thus "tp" may become invalid! |
856 | 2849 * Caller must check if buffer is hidden and whether the tabline needs to be |
2850 * updated. | |
671 | 2851 */ |
2852 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2853 win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) |
671 | 2854 { |
2855 win_T *wp; | |
2856 int dir; | |
2857 tabpage_T *ptp = NULL; | |
2191 | 2858 int free_tp = FALSE; |
671 | 2859 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2860 // 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
|
2861 // page changed. |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2862 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
|
2863 && 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
|
2864 return; // window is already being closed |
3570 | 2865 |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2866 // Trigger WinClosed just before starting to free window-related resources. |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2867 trigger_winclosed(win); |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2868 // autocmd may have freed the window already. |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2869 if (!win_valid_any_tab(win)) |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2870 return; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2871 |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2872 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
|
2873 // 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
|
2874 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, |
28361
68c36f734b10
patch 8.2.4706: buffer remains active with WinClosed and tabpages
Bram Moolenaar <Bram@vim.org>
parents:
28349
diff
changeset
|
2875 FALSE, TRUE); |
671 | 2876 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2877 // 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
|
2878 // current tab page. |
671 | 2879 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) |
2880 ; | |
672 | 2881 if (ptp == NULL || tp == curtab) |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2882 { |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2883 // If the buffer was removed from the window we have to give it any |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2884 // buffer. |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2885 if (win_valid_any_tab(win) && win->w_buffer == NULL) |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2886 { |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2887 win->w_buffer = firstbuf; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2888 ++firstbuf->b_nwindows; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2889 win_init_empty(win); |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2890 } |
671 | 2891 return; |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2892 } |
671 | 2893 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2894 // Autocommands may have closed the window already. |
671 | 2895 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next) |
2896 ; | |
2897 if (wp == NULL) | |
2898 return; | |
2899 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2900 // When closing the last window in a tab page remove the tab page. |
7009 | 2901 if (tp->tp_firstwin == tp->tp_lastwin) |
671 | 2902 { |
30429
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2903 int h = tabline_height(); |
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2904 |
671 | 2905 if (tp == first_tabpage) |
2906 first_tabpage = tp->tp_next; | |
2907 else | |
2908 { | |
2909 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; | |
2910 ptp = ptp->tp_next) | |
2911 ; | |
2912 if (ptp == NULL) | |
2913 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2914 internal_error("win_close_othertab()"); |
671 | 2915 return; |
2916 } | |
2917 ptp->tp_next = tp->tp_next; | |
2918 } | |
2191 | 2919 free_tp = TRUE; |
30429
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2920 redraw_tabline = TRUE; |
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2921 if (h != tabline_height()) |
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2922 shell_new_rows(); |
2191 | 2923 } |
2924 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2925 // Free the memory used for the window. |
2191 | 2926 win_free_mem(win, &dir, tp); |
2927 | |
2928 if (free_tp) | |
847 | 2929 free_tabpage(tp); |
671 | 2930 } |
2931 | |
2932 /* | |
355 | 2933 * Free the memory used for a window. |
2934 * Returns a pointer to the window that got the freed up space. | |
2935 */ | |
2936 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2937 win_free_mem( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2938 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2939 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
|
2940 tabpage_T *tp) // tab page "win" is in, NULL for current |
355 | 2941 { |
2942 frame_T *frp; | |
2943 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
|
2944 tabpage_T *win_tp = tp == NULL ? curtab : tp; |
355 | 2945 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2946 // Remove the window and its frame from the tree of frames. |
355 | 2947 frp = win->w_frame; |
671 | 2948 wp = winframe_remove(win, dirp, tp); |
355 | 2949 vim_free(frp); |
671 | 2950 win_free(win, tp); |
355 | 2951 |
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
|
2952 // 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
|
2953 // 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
|
2954 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
|
2955 win_tp->tp_curwin = wp; |
819 | 2956 |
355 | 2957 return wp; |
2958 } | |
2959 | |
2960 #if defined(EXITFREE) || defined(PROTO) | |
2961 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2962 win_free_all(void) |
355 | 2963 { |
2964 int dummy; | |
2965 | |
27857
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2966 #ifdef FEAT_CMDWIN |
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2967 // avoid an error for switching tabpage with the cmdline window open |
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2968 cmdwin_type = 0; |
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2969 #endif |
671 | 2970 while (first_tabpage->tp_next != NULL) |
2971 tabpage_close(TRUE); | |
2972 | |
1906 | 2973 if (aucmd_win != NULL) |
2974 { | |
2975 (void)win_free_mem(aucmd_win, &dummy, NULL); | |
2976 aucmd_win = NULL; | |
2977 } | |
1918 | 2978 |
2979 while (firstwin != NULL) | |
2980 (void)win_free_mem(firstwin, &dummy, NULL); | |
6060 | 2981 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2982 // 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
|
2983 // instead of using freed memory. |
6060 | 2984 curwin = NULL; |
355 | 2985 } |
2986 #endif | |
2987 | |
2988 /* | |
7 | 2989 * Remove a window and its frame from the tree of frames. |
2990 * Returns a pointer to the window that got the freed up space. | |
2991 */ | |
1906 | 2992 win_T * |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2993 winframe_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2994 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2995 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
|
2996 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 2997 { |
2998 frame_T *frp, *frp2, *frp3; | |
2999 frame_T *frp_close = win->w_frame; | |
3000 win_T *wp; | |
3001 | |
3002 /* | |
671 | 3003 * If there is only one window there is nothing to remove. |
3004 */ | |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
3005 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
671 | 3006 return NULL; |
3007 | |
3008 /* | |
7 | 3009 * Remove the window from its frame. |
3010 */ | |
671 | 3011 frp2 = win_altframe(win, tp); |
7 | 3012 wp = frame2win(frp2); |
3013 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3014 // Remove this frame from the list of frames. |
7 | 3015 frame_remove(frp_close); |
3016 | |
3017 if (frp_close->fr_parent->fr_layout == FR_COL) | |
3018 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3019 // 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
|
3020 // (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
|
3021 // to. |
1346 | 3022 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh) |
3023 { | |
3024 frp = frp_close->fr_prev; | |
3025 frp3 = frp_close->fr_next; | |
3026 while (frp != NULL || frp3 != NULL) | |
3027 { | |
3028 if (frp != NULL) | |
3029 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
3030 if (!frame_fixed_height(frp)) |
1346 | 3031 { |
3032 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
|
3033 wp = frame2win(frp2); |
1346 | 3034 break; |
3035 } | |
3036 frp = frp->fr_prev; | |
3037 } | |
3038 if (frp3 != NULL) | |
3039 { | |
3040 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh) | |
3041 { | |
3042 frp2 = frp3; | |
3043 wp = frp3->fr_win; | |
3044 break; | |
3045 } | |
3046 frp3 = frp3->fr_next; | |
3047 } | |
3048 } | |
3049 } | |
7 | 3050 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height, |
3051 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); | |
3052 *dirp = 'v'; | |
3053 } | |
3054 else | |
3055 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3056 // 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
|
3057 // (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
|
3058 // to. |
1346 | 3059 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw) |
3060 { | |
3061 frp = frp_close->fr_prev; | |
3062 frp3 = frp_close->fr_next; | |
3063 while (frp != NULL || frp3 != NULL) | |
3064 { | |
3065 if (frp != NULL) | |
3066 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
3067 if (!frame_fixed_width(frp)) |
1346 | 3068 { |
3069 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
|
3070 wp = frame2win(frp2); |
1346 | 3071 break; |
3072 } | |
3073 frp = frp->fr_prev; | |
3074 } | |
3075 if (frp3 != NULL) | |
3076 { | |
3077 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw) | |
3078 { | |
3079 frp2 = frp3; | |
3080 wp = frp3->fr_win; | |
3081 break; | |
3082 } | |
3083 frp3 = frp3->fr_next; | |
3084 } | |
3085 } | |
3086 } | |
7 | 3087 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width, |
779 | 3088 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); |
7 | 3089 *dirp = 'h'; |
3090 } | |
3091 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3092 // 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
|
3093 // updated. Can only be done after the sizes have been updated. |
7 | 3094 if (frp2 == frp_close->fr_next) |
3095 { | |
3096 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
|
3097 int col = win->w_wincol; |
7 | 3098 |
3099 frame_comp_pos(frp2, &row, &col); | |
3100 } | |
3101 | |
3102 if (frp2->fr_next == NULL && frp2->fr_prev == NULL) | |
3103 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3104 // 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
|
3105 // and remove it. |
7 | 3106 frp2->fr_parent->fr_layout = frp2->fr_layout; |
3107 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
|
3108 FOR_ALL_FRAMES(frp, frp2->fr_child) |
7 | 3109 frp->fr_parent = frp2->fr_parent; |
3110 frp2->fr_parent->fr_win = frp2->fr_win; | |
3111 if (frp2->fr_win != NULL) | |
3112 frp2->fr_win->w_frame = frp2->fr_parent; | |
3113 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
|
3114 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
|
3115 topframe->fr_child = frp; |
7 | 3116 vim_free(frp2); |
3117 | |
3118 frp2 = frp->fr_parent; | |
3119 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout) | |
3120 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3121 // 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
|
3122 // the frames into this list. |
7 | 3123 if (frp2->fr_child == frp) |
3124 frp2->fr_child = frp->fr_child; | |
3125 frp->fr_child->fr_prev = frp->fr_prev; | |
3126 if (frp->fr_prev != NULL) | |
3127 frp->fr_prev->fr_next = frp->fr_child; | |
3128 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next) | |
3129 { | |
3130 frp3->fr_parent = frp2; | |
3131 if (frp3->fr_next == NULL) | |
3132 { | |
3133 frp3->fr_next = frp->fr_next; | |
3134 if (frp->fr_next != NULL) | |
3135 frp->fr_next->fr_prev = frp3; | |
3136 break; | |
3137 } | |
3138 } | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
3139 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
|
3140 topframe->fr_child = frp2; |
7 | 3141 vim_free(frp); |
3142 } | |
3143 } | |
3144 | |
3145 return wp; | |
3146 } | |
3147 | |
3148 /* | |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3149 * 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
|
3150 * 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
|
3151 * |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3152 * 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
|
3153 * 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
|
3154 * 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
|
3155 * 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
|
3156 * respected when possible. |
7 | 3157 */ |
3158 static frame_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3159 win_altframe( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3160 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3161 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 3162 { |
3163 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
|
3164 frame_T *other_fr, *target_fr; |
7 | 3165 |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
3166 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
667 | 3167 return alt_tabpage()->tp_curwin->w_frame; |
3168 | |
7 | 3169 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
|
3170 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3171 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
|
3172 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
|
3173 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
|
3174 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
|
3175 |
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
|
3176 // 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
|
3177 // window |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3178 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
|
3179 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
|
3180 |
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
|
3181 // 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
|
3182 // 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
|
3183 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
|
3184 { |
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
|
3185 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
|
3186 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
|
3187 } |
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
|
3188 |
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
|
3189 // 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
|
3190 // 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
|
3191 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
|
3192 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3193 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
|
3194 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
|
3195 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3196 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3197 // 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
|
3198 // window, reverse the selection. |
355 | 3199 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
|
3200 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3201 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
|
3202 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
|
3203 } |
7 | 3204 else |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3205 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3206 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
|
3207 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
|
3208 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3209 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3210 return target_fr; |
7 | 3211 } |
3212 | |
3213 /* | |
667 | 3214 * Return the tabpage that will be used if the current one is closed. |
3215 */ | |
3216 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3217 alt_tabpage(void) |
667 | 3218 { |
672 | 3219 tabpage_T *tp; |
3220 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3221 // Use the next tab page if possible. |
682 | 3222 if (curtab->tp_next != NULL) |
672 | 3223 return curtab->tp_next; |
3224 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3225 // Find the last but one tab page. |
682 | 3226 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next) |
3227 ; | |
674 | 3228 return tp; |
667 | 3229 } |
3230 | |
3231 /* | |
7 | 3232 * Find the left-upper window in frame "frp". |
3233 */ | |
3234 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3235 frame2win(frame_T *frp) |
7 | 3236 { |
3237 while (frp->fr_win == NULL) | |
3238 frp = frp->fr_child; | |
3239 return frp->fr_win; | |
3240 } | |
3241 | |
3242 /* | |
3243 * Return TRUE if frame "frp" contains window "wp". | |
3244 */ | |
3245 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3246 frame_has_win(frame_T *frp, win_T *wp) |
7 | 3247 { |
3248 frame_T *p; | |
3249 | |
3250 if (frp->fr_layout == FR_LEAF) | |
3251 return frp->fr_win == wp; | |
3252 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3253 FOR_ALL_FRAMES(p, frp->fr_child) |
7 | 3254 if (frame_has_win(p, wp)) |
3255 return TRUE; | |
3256 return FALSE; | |
3257 } | |
3258 | |
3259 /* | |
3260 * Set a new height for a frame. Recursively sets the height for contained | |
3261 * frames and windows. Caller must take care of positions. | |
3262 */ | |
3263 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3264 frame_new_height( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3265 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3266 int height, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3267 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
|
3268 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
|
3269 // may cause the height not to be set |
7 | 3270 { |
3271 frame_T *frp; | |
3272 int extra_lines; | |
3273 int h; | |
3274 | |
3275 if (topfrp->fr_win != NULL) | |
3276 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3277 // Simple case: just one window. |
7 | 3278 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
|
3279 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
|
3280 - WINBAR_HEIGHT(topfrp->fr_win)); |
7 | 3281 } |
3282 else if (topfrp->fr_layout == FR_ROW) | |
3283 { | |
3284 do | |
3285 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3286 // 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
|
3287 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3288 { |
3289 frame_new_height(frp, height, topfirst, wfh); | |
3290 if (frp->fr_height > height) | |
3291 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3292 // Could not fit the windows, make the whole row higher. |
7 | 3293 height = frp->fr_height; |
3294 break; | |
3295 } | |
3296 } | |
3297 } | |
3298 while (frp != NULL); | |
3299 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3300 else // fr_layout == FR_COL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3301 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3302 // 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
|
3303 // frame first, frames above that when needed. |
7 | 3304 |
3305 frp = topfrp->fr_child; | |
3306 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3307 // Advance past frames with one window with 'wfh' set. |
7 | 3308 while (frame_fixed_height(frp)) |
3309 { | |
3310 frp = frp->fr_next; | |
3311 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3312 return; // no frame without 'wfh', give up |
7 | 3313 } |
3314 if (!topfirst) | |
3315 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3316 // Find the bottom frame of this column |
7 | 3317 while (frp->fr_next != NULL) |
3318 frp = frp->fr_next; | |
3319 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3320 // Advance back for frames with one window with 'wfh' set. |
7 | 3321 while (frame_fixed_height(frp)) |
3322 frp = frp->fr_prev; | |
3323 } | |
3324 | |
3325 extra_lines = height - topfrp->fr_height; | |
3326 if (extra_lines < 0) | |
3327 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3328 // reduce height of contained frames, bottom or top frame first |
7 | 3329 while (frp != NULL) |
3330 { | |
3331 h = frame_minheight(frp, NULL); | |
3332 if (frp->fr_height + extra_lines < h) | |
3333 { | |
3334 extra_lines += frp->fr_height - h; | |
3335 frame_new_height(frp, h, topfirst, wfh); | |
3336 } | |
3337 else | |
3338 { | |
3339 frame_new_height(frp, frp->fr_height + extra_lines, | |
3340 topfirst, wfh); | |
3341 break; | |
3342 } | |
3343 if (topfirst) | |
3344 { | |
3345 do | |
3346 frp = frp->fr_next; | |
3347 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3348 } | |
3349 else | |
3350 { | |
3351 do | |
3352 frp = frp->fr_prev; | |
3353 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3354 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3355 // Increase "height" if we could not reduce enough frames. |
7 | 3356 if (frp == NULL) |
3357 height -= extra_lines; | |
3358 } | |
3359 } | |
3360 else if (extra_lines > 0) | |
3361 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3362 // increase height of bottom or top frame |
7 | 3363 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh); |
3364 } | |
3365 } | |
3366 topfrp->fr_height = height; | |
3367 } | |
3368 | |
3369 /* | |
3370 * Return TRUE if height of frame "frp" should not be changed because of | |
3371 * the 'winfixheight' option. | |
3372 */ | |
3373 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3374 frame_fixed_height(frame_T *frp) |
7 | 3375 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3376 // frame with one window: fixed height if 'winfixheight' set. |
7 | 3377 if (frp->fr_win != NULL) |
3378 return frp->fr_win->w_p_wfh; | |
3379 | |
3380 if (frp->fr_layout == FR_ROW) | |
3381 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3382 // 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
|
3383 // height. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3384 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3385 if (frame_fixed_height(frp)) |
3386 return TRUE; | |
3387 return FALSE; | |
3388 } | |
3389 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3390 // 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
|
3391 // 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
|
3392 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3393 if (!frame_fixed_height(frp)) |
3394 return FALSE; | |
3395 return TRUE; | |
3396 } | |
3397 | |
3398 /* | |
779 | 3399 * Return TRUE if width of frame "frp" should not be changed because of |
3400 * the 'winfixwidth' option. | |
3401 */ | |
3402 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3403 frame_fixed_width(frame_T *frp) |
779 | 3404 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3405 // frame with one window: fixed width if 'winfixwidth' set. |
779 | 3406 if (frp->fr_win != NULL) |
3407 return frp->fr_win->w_p_wfw; | |
3408 | |
3409 if (frp->fr_layout == FR_COL) | |
3410 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3411 // 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
|
3412 // width. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3413 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3414 if (frame_fixed_width(frp)) |
3415 return TRUE; | |
3416 return FALSE; | |
3417 } | |
3418 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3419 // 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
|
3420 // 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
|
3421 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3422 if (!frame_fixed_width(frp)) |
3423 return FALSE; | |
3424 return TRUE; | |
3425 } | |
3426 | |
3427 /* | |
7 | 3428 * Add a status line to windows at the bottom of "frp". |
3429 * Note: Does not check if there is room! | |
3430 */ | |
3431 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3432 frame_add_statusline(frame_T *frp) |
7 | 3433 { |
3434 win_T *wp; | |
3435 | |
3436 if (frp->fr_layout == FR_LEAF) | |
3437 { | |
3438 wp = frp->fr_win; | |
3439 if (wp->w_status_height == 0) | |
3440 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3441 if (wp->w_height > 0) // don't make it negative |
7 | 3442 --wp->w_height; |
3443 wp->w_status_height = STATUS_HEIGHT; | |
3444 } | |
3445 } | |
3446 else if (frp->fr_layout == FR_ROW) | |
3447 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3448 // 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
|
3449 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3450 frame_add_statusline(frp); |
3451 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3452 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
|
3453 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3454 // Only need to handle the last frame in the column. |
7 | 3455 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next) |
3456 ; | |
3457 frame_add_statusline(frp); | |
3458 } | |
3459 } | |
3460 | |
3461 /* | |
3462 * Set width of a frame. Handles recursively going through contained frames. | |
3463 * May remove separator line for windows at the right side (for win_close()). | |
3464 */ | |
3465 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3466 frame_new_width( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3467 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3468 int width, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3469 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
|
3470 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
|
3471 // may cause the width not to be set |
7 | 3472 { |
3473 frame_T *frp; | |
3474 int extra_cols; | |
3475 int w; | |
3476 win_T *wp; | |
3477 | |
3478 if (topfrp->fr_layout == FR_LEAF) | |
3479 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3480 // Simple case: just one window. |
7 | 3481 wp = topfrp->fr_win; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3482 // Find out if there are any windows right of this one. |
7 | 3483 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent) |
3484 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL) | |
3485 break; | |
3486 if (frp->fr_parent == NULL) | |
3487 wp->w_vsep_width = 0; | |
3488 win_new_width(wp, width - wp->w_vsep_width); | |
3489 } | |
3490 else if (topfrp->fr_layout == FR_COL) | |
3491 { | |
779 | 3492 do |
3493 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3494 // 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
|
3495 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
779 | 3496 { |
3497 frame_new_width(frp, width, leftfirst, wfw); | |
3498 if (frp->fr_width > width) | |
3499 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3500 // Could not fit the windows, make whole column wider. |
779 | 3501 width = frp->fr_width; |
3502 break; | |
3503 } | |
3504 } | |
3505 } while (frp != NULL); | |
7 | 3506 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3507 else // fr_layout == FR_ROW |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3508 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3509 // 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
|
3510 // frame first, frames left of it when needed. |
7 | 3511 |
3512 frp = topfrp->fr_child; | |
779 | 3513 if (wfw) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3514 // Advance past frames with one window with 'wfw' set. |
779 | 3515 while (frame_fixed_width(frp)) |
3516 { | |
3517 frp = frp->fr_next; | |
3518 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3519 return; // no frame without 'wfw', give up |
779 | 3520 } |
7 | 3521 if (!leftfirst) |
779 | 3522 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3523 // Find the rightmost frame of this row |
7 | 3524 while (frp->fr_next != NULL) |
3525 frp = frp->fr_next; | |
779 | 3526 if (wfw) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3527 // Advance back for frames with one window with 'wfw' set. |
779 | 3528 while (frame_fixed_width(frp)) |
3529 frp = frp->fr_prev; | |
3530 } | |
7 | 3531 |
3532 extra_cols = width - topfrp->fr_width; | |
3533 if (extra_cols < 0) | |
3534 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3535 // reduce frame width, rightmost frame first |
7 | 3536 while (frp != NULL) |
3537 { | |
3538 w = frame_minwidth(frp, NULL); | |
3539 if (frp->fr_width + extra_cols < w) | |
3540 { | |
3541 extra_cols += frp->fr_width - w; | |
779 | 3542 frame_new_width(frp, w, leftfirst, wfw); |
7 | 3543 } |
3544 else | |
3545 { | |
779 | 3546 frame_new_width(frp, frp->fr_width + extra_cols, |
3547 leftfirst, wfw); | |
7 | 3548 break; |
3549 } | |
3550 if (leftfirst) | |
779 | 3551 { |
3552 do | |
3553 frp = frp->fr_next; | |
3554 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3555 } | |
7 | 3556 else |
779 | 3557 { |
3558 do | |
3559 frp = frp->fr_prev; | |
3560 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3561 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3562 // Increase "width" if we could not reduce enough frames. |
779 | 3563 if (frp == NULL) |
3564 width -= extra_cols; | |
7 | 3565 } |
3566 } | |
3567 else if (extra_cols > 0) | |
3568 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3569 // increase width of rightmost frame |
779 | 3570 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw); |
7 | 3571 } |
3572 } | |
3573 topfrp->fr_width = width; | |
3574 } | |
3575 | |
3576 /* | |
3577 * Add the vertical separator to windows at the right side of "frp". | |
3578 * Note: Does not check if there is room! | |
3579 */ | |
3580 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3581 frame_add_vsep(frame_T *frp) |
7 | 3582 { |
3583 win_T *wp; | |
3584 | |
3585 if (frp->fr_layout == FR_LEAF) | |
3586 { | |
3587 wp = frp->fr_win; | |
3588 if (wp->w_vsep_width == 0) | |
3589 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3590 if (wp->w_width > 0) // don't make it negative |
7 | 3591 --wp->w_width; |
3592 wp->w_vsep_width = 1; | |
3593 } | |
3594 } | |
3595 else if (frp->fr_layout == FR_COL) | |
3596 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3597 // 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
|
3598 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3599 frame_add_vsep(frp); |
3600 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3601 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
|
3602 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3603 // Only need to handle the last frame in the row. |
7 | 3604 frp = frp->fr_child; |
3605 while (frp->fr_next != NULL) | |
3606 frp = frp->fr_next; | |
3607 frame_add_vsep(frp); | |
3608 } | |
3609 } | |
3610 | |
3611 /* | |
3612 * Set frame width from the window it contains. | |
3613 */ | |
3614 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3615 frame_fix_width(win_T *wp) |
7 | 3616 { |
3617 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width; | |
3618 } | |
3619 | |
3620 /* | |
3621 * Set frame height from the window it contains. | |
3622 */ | |
3623 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3624 frame_fix_height(win_T *wp) |
7 | 3625 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3626 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height; |
7 | 3627 } |
3628 | |
3629 /* | |
3630 * Compute the minimal height for frame "topfrp". | |
3631 * Uses the 'winminheight' option. | |
3632 * When "next_curwin" isn't NULL, use p_wh for this window. | |
3633 * When "next_curwin" is NOWIN, don't use at least one line for the current | |
3634 * window. | |
3635 */ | |
3636 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3637 frame_minheight(frame_T *topfrp, win_T *next_curwin) |
7 | 3638 { |
3639 frame_T *frp; | |
3640 int m; | |
3641 int n; | |
3642 | |
3643 if (topfrp->fr_win != NULL) | |
3644 { | |
3645 if (topfrp->fr_win == next_curwin) | |
3646 m = p_wh + topfrp->fr_win->w_status_height; | |
3647 else | |
3648 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3649 // window: minimal height of the window plus status line |
7 | 3650 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
|
3651 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
|
3652 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3653 // 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
|
3654 // visible. |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3655 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
|
3656 ++m; |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3657 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
|
3658 } |
7 | 3659 } |
3660 } | |
3661 else if (topfrp->fr_layout == FR_ROW) | |
3662 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3663 // get the minimal height from each frame in this row |
7 | 3664 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3665 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3666 { |
3667 n = frame_minheight(frp, next_curwin); | |
3668 if (n > m) | |
3669 m = n; | |
3670 } | |
3671 } | |
3672 else | |
3673 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3674 // Add up the minimal heights for all frames in this column. |
7 | 3675 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3676 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3677 m += frame_minheight(frp, next_curwin); |
3678 } | |
3679 | |
3680 return m; | |
3681 } | |
3682 | |
3683 /* | |
3684 * Compute the minimal width for frame "topfrp". | |
3685 * When "next_curwin" isn't NULL, use p_wiw for this window. | |
3686 * When "next_curwin" is NOWIN, don't use at least one column for the current | |
3687 * window. | |
3688 */ | |
3689 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3690 frame_minwidth( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3691 frame_T *topfrp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3692 win_T *next_curwin) // use p_wh and p_wiw for next_curwin |
7 | 3693 { |
3694 frame_T *frp; | |
3695 int m, n; | |
3696 | |
3697 if (topfrp->fr_win != NULL) | |
3698 { | |
3699 if (topfrp->fr_win == next_curwin) | |
3700 m = p_wiw + topfrp->fr_win->w_vsep_width; | |
3701 else | |
3702 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3703 // window: minimal width of the window plus separator column |
7 | 3704 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
|
3705 // Current window is minimal one column wide |
7 | 3706 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL) |
3707 ++m; | |
3708 } | |
3709 } | |
3710 else if (topfrp->fr_layout == FR_COL) | |
3711 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3712 // get the minimal width from each frame in this column |
7 | 3713 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3714 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3715 { |
3716 n = frame_minwidth(frp, next_curwin); | |
3717 if (n > m) | |
3718 m = n; | |
3719 } | |
3720 } | |
3721 else | |
3722 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3723 // Add up the minimal widths for all frames in this row. |
7 | 3724 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3725 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3726 m += frame_minwidth(frp, next_curwin); |
3727 } | |
3728 | |
3729 return m; | |
3730 } | |
3731 | |
3732 | |
3733 /* | |
3734 * Try to close all windows except current one. | |
3735 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is | |
3736 * used and the buffer was modified. | |
3737 * | |
3738 * Used by ":bdel" and ":only". | |
3739 */ | |
3740 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3741 close_others( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3742 int message, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3743 int forceit) // always hide all other windows |
7 | 3744 { |
3745 win_T *wp; | |
3746 win_T *nextwp; | |
3747 int r; | |
3748 | |
1906 | 3749 if (one_window()) |
7 | 3750 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
3751 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
|
3752 msg(_(m_onlyone)); |
7 | 3753 return; |
3754 } | |
3755 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3756 // Be very careful here: autocommands may change the window layout. |
7 | 3757 for (wp = firstwin; win_valid(wp); wp = nextwp) |
3758 { | |
3759 nextwp = wp->w_next; | |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3760 if (wp == curwin) // don't close current window |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3761 continue; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3762 |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3763 // Check if it's allowed to abandon this window |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3764 r = can_abandon(wp->w_buffer, forceit); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3765 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3766 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3767 nextwp = firstwin; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3768 continue; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3769 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3770 if (!r) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3771 { |
7 | 3772 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3773 if (message && (p_confirm |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3774 || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3775 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3776 dialog_changed(wp->w_buffer, FALSE); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3777 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3778 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3779 nextwp = firstwin; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3780 continue; |
7 | 3781 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3782 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3783 if (bufIsChanged(wp->w_buffer)) |
7 | 3784 #endif |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3785 continue; |
7 | 3786 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3787 win_close(wp, !buf_hide(wp->w_buffer) && !bufIsChanged(wp->w_buffer)); |
7 | 3788 } |
3789 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
3790 if (message && !ONE_WINDOW) |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
3791 emsg(_(e_other_window_contains_changes)); |
7 | 3792 } |
3793 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3794 /* |
7 | 3795 * Allocate the first window and put an empty buffer in it. |
3796 * Called from main(). | |
667 | 3797 * Return FAIL when something goes wrong (out of memory). |
7 | 3798 */ |
667 | 3799 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3800 win_alloc_first(void) |
7 | 3801 { |
675 | 3802 if (win_alloc_firstwin(NULL) == FAIL) |
667 | 3803 return FAIL; |
3804 | |
672 | 3805 first_tabpage = alloc_tabpage(); |
667 | 3806 if (first_tabpage == NULL) |
3807 return FAIL; | |
3808 first_tabpage->tp_topframe = topframe; | |
672 | 3809 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
|
3810 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
|
3811 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
|
3812 curtab->tp_curwin = curwin; |
1906 | 3813 |
667 | 3814 return OK; |
3815 } | |
3816 | |
1906 | 3817 /* |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3818 * 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
|
3819 * 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
|
3820 * 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
|
3821 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3822 win_T * |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3823 win_alloc_popup_win(void) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3824 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3825 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3826 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3827 wp = win_alloc(NULL, TRUE); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3828 if (wp != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3829 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3830 // 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
|
3831 // window makes most sense. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3832 win_init_some(wp, curwin); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3833 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3834 RESET_BINDING(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3835 new_frame(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3836 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3837 return wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3838 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3839 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3840 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3841 * Initialize window "wp" to display buffer "buf". |
1906 | 3842 */ |
3843 void | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3844 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
|
3845 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3846 wp->w_buffer = buf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3847 ++buf->b_nwindows; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3848 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
|
3849 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3850 // 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
|
3851 // win_enter_ext(). |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3852 VIM_CLEAR(wp->w_localdir); |
1906 | 3853 } |
3854 | |
667 | 3855 /* |
675 | 3856 * Allocate the first window or the first window in a new tab page. |
3857 * 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
|
3858 * When "oldwin" is not NULL copy info from it to the new window. |
667 | 3859 * Return FAIL when something goes wrong (out of memory). |
3860 */ | |
3861 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3862 win_alloc_firstwin(win_T *oldwin) |
667 | 3863 { |
1906 | 3864 curwin = win_alloc(NULL, FALSE); |
28289
cdaff4db7760
patch 8.2.4670: memory allocation failures for new tab page not tested
Bram Moolenaar <Bram@vim.org>
parents:
28285
diff
changeset
|
3865 if (curwin == NULL) |
cdaff4db7760
patch 8.2.4670: memory allocation failures for new tab page not tested
Bram Moolenaar <Bram@vim.org>
parents:
28285
diff
changeset
|
3866 return FAIL; |
675 | 3867 if (oldwin == NULL) |
3868 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3869 // 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
|
3870 // initialize from scratch. |
675 | 3871 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); |
3872 if (curwin == NULL || curbuf == NULL) | |
3873 return FAIL; | |
3874 curwin->w_buffer = curbuf; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3875 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3876 curwin->w_s = &(curbuf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3877 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3878 curbuf->b_nwindows = 1; // there is one window |
675 | 3879 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
|
3880 curwin_init(); // init current window |
675 | 3881 } |
3882 else | |
3883 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3884 // First window in new tab page, initialize it from "oldwin". |
1822 | 3885 win_init(curwin, oldwin, 0); |
675 | 3886 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3887 // We don't want cursor- and scroll-binding in the first window. |
2583 | 3888 RESET_BINDING(curwin); |
675 | 3889 } |
7 | 3890 |
1906 | 3891 new_frame(curwin); |
3892 if (curwin->w_frame == NULL) | |
667 | 3893 return FAIL; |
1906 | 3894 topframe = curwin->w_frame; |
7 | 3895 topframe->fr_width = Columns; |
3896 topframe->fr_height = Rows - p_ch; | |
667 | 3897 |
3898 return OK; | |
3899 } | |
3900 | |
3901 /* | |
1906 | 3902 * Create a frame for window "wp". |
3903 */ | |
3904 static void | |
3905 new_frame(win_T *wp) | |
3906 { | |
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
|
3907 frame_T *frp = ALLOC_CLEAR_ONE(frame_T); |
1906 | 3908 |
3909 wp->w_frame = frp; | |
3910 if (frp != NULL) | |
3911 { | |
3912 frp->fr_layout = FR_LEAF; | |
3913 frp->fr_win = wp; | |
3914 } | |
3915 } | |
3916 | |
3917 /* | |
667 | 3918 * Initialize the window and frame size to the maximum. |
3919 */ | |
3920 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3921 win_init_size(void) |
667 | 3922 { |
3923 firstwin->w_height = ROWS_AVAIL; | |
30239
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
3924 firstwin->w_prev_height = ROWS_AVAIL; |
667 | 3925 topframe->fr_height = ROWS_AVAIL; |
3926 firstwin->w_width = Columns; | |
3927 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
|
3928 } |
672 | 3929 |
3930 /* | |
3931 * Allocate a new tabpage_T and init the values. | |
3932 * Returns NULL when out of memory. | |
3933 */ | |
3934 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3935 alloc_tabpage(void) |
672 | 3936 { |
3937 tabpage_T *tp; | |
4287 | 3938 # ifdef FEAT_GUI |
3939 int i; | |
3940 # endif | |
3941 | |
672 | 3942 |
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
|
3943 tp = ALLOC_CLEAR_ONE(tabpage_T); |
4287 | 3944 if (tp == NULL) |
3945 return NULL; | |
3946 | |
3947 # ifdef FEAT_EVAL | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3948 // init t: variables |
28289
cdaff4db7760
patch 8.2.4670: memory allocation failures for new tab page not tested
Bram Moolenaar <Bram@vim.org>
parents:
28285
diff
changeset
|
3949 tp->tp_vars = dict_alloc_id(aid_newtabpage_tvars); |
4287 | 3950 if (tp->tp_vars == NULL) |
3951 { | |
3952 vim_free(tp); | |
3953 return NULL; | |
3954 } | |
3955 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); | |
3956 # endif | |
3957 | |
788 | 3958 # ifdef FEAT_GUI |
4287 | 3959 for (i = 0; i < 3; i++) |
3960 tp->tp_prev_which_scrollbars[i] = -1; | |
788 | 3961 # endif |
672 | 3962 # ifdef FEAT_DIFF |
4287 | 3963 tp->tp_diff_invalid = TRUE; |
672 | 3964 # endif |
4287 | 3965 tp->tp_ch_used = p_ch; |
3966 | |
672 | 3967 return tp; |
3968 } | |
3969 | |
852 | 3970 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3971 free_tabpage(tabpage_T *tp) |
672 | 3972 { |
1906 | 3973 int idx; |
3974 | |
672 | 3975 # ifdef FEAT_DIFF |
3976 diff_clear(tp); | |
3977 # endif | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
3978 # 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
|
3979 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
|
3980 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
|
3981 #endif |
1906 | 3982 for (idx = 0; idx < SNAP_COUNT; ++idx) |
3983 clear_snapshot(tp, idx); | |
819 | 3984 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3985 vars_clear(&tp->tp_vars->dv_hashtab); // free all t: variables |
4287 | 3986 hash_init(&tp->tp_vars->dv_hashtab); |
3987 unref_var_dict(tp->tp_vars); | |
819 | 3988 #endif |
4401 | 3989 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3990 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
|
3991 lastused_tabpage = NULL; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3992 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3993 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
|
3994 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
|
3995 |
4401 | 3996 #ifdef FEAT_PYTHON |
3997 python_tabpage_free(tp); | |
3998 #endif | |
3999 | |
4000 #ifdef FEAT_PYTHON3 | |
4001 python3_tabpage_free(tp); | |
4002 #endif | |
4003 | |
672 | 4004 vim_free(tp); |
4005 } | |
4006 | |
667 | 4007 /* |
675 | 4008 * Create a new Tab page with one window. |
4009 * It will edit the current buffer, like after ":split". | |
682 | 4010 * When "after" is 0 put it just after the current Tab page. |
4011 * Otherwise put it just before tab page "after". | |
667 | 4012 * Return FAIL or OK. |
4013 */ | |
4014 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4015 win_new_tabpage(int after) |
667 | 4016 { |
672 | 4017 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
|
4018 tabpage_T *prev_tp = curtab; |
667 | 4019 tabpage_T *newtp; |
682 | 4020 int n; |
667 | 4021 |
27805
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4022 #ifdef FEAT_CMDWIN |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4023 if (cmdwin_type != 0) |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4024 { |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4025 emsg(_(e_invalid_in_cmdline_window)); |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4026 return FAIL; |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4027 } |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4028 #endif |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4029 |
672 | 4030 newtp = alloc_tabpage(); |
667 | 4031 if (newtp == NULL) |
4032 return FAIL; | |
4033 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4034 // Remember the current windows in this Tab page. |
4354 | 4035 if (leave_tabpage(curbuf, TRUE) == FAIL) |
674 | 4036 { |
4037 vim_free(newtp); | |
4038 return FAIL; | |
4039 } | |
672 | 4040 curtab = newtp; |
667 | 4041 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4042 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
|
4043 ? 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
|
4044 // Create a new empty window. |
675 | 4045 if (win_alloc_firstwin(tp->tp_curwin) == OK) |
667 | 4046 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4047 // Make the new Tab page the new topframe. |
682 | 4048 if (after == 1) |
4049 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4050 // New tab page becomes the first one. |
682 | 4051 newtp->tp_next = first_tabpage; |
4052 first_tabpage = newtp; | |
4053 } | |
4054 else | |
4055 { | |
4056 if (after > 0) | |
4057 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4058 // Put new tab page before tab page "after". |
682 | 4059 n = 2; |
4060 for (tp = first_tabpage; tp->tp_next != NULL | |
4061 && n < after; tp = tp->tp_next) | |
4062 ++n; | |
4063 } | |
4064 newtp->tp_next = tp->tp_next; | |
4065 tp->tp_next = newtp; | |
4066 } | |
19155
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
4067 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
|
4068 |
667 | 4069 win_init_size(); |
685 | 4070 firstwin->w_winrow = tabline_height(); |
30239
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
4071 firstwin->w_prev_winrow = firstwin->w_winrow; |
819 | 4072 win_comp_scroll(curwin); |
667 | 4073 |
4074 newtp->tp_topframe = topframe; | |
671 | 4075 last_status(FALSE); |
815 | 4076 |
21727
860cad58f557
patch 8.2.1413: previous tab page not usable from an Ex command
Bram Moolenaar <Bram@vim.org>
parents:
21723
diff
changeset
|
4077 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
|
4078 |
815 | 4079 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4080 // 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
|
4081 // scrollbars. Have to update them anyway. |
1906 | 4082 gui_may_update_scrollbars(); |
815 | 4083 #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
|
4084 #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
|
4085 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
|
4086 #endif |
815 | 4087 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
4088 redraw_all_later(UPD_NOT_VALID); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4089 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 4090 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
|
4091 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf); |
675 | 4092 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
667 | 4093 return OK; |
4094 } | |
4095 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4096 // Failed, get back the previous Tab page |
4354 | 4097 enter_tabpage(curtab, curbuf, TRUE, TRUE); |
667 | 4098 return FAIL; |
4099 } | |
4100 | |
4101 /* | |
682 | 4102 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer, |
4103 * like with ":split". | |
4104 * Returns OK if a new tab page was created, FAIL otherwise. | |
4105 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
4106 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4107 may_open_tabpage(void) |
682 | 4108 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
4109 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
|
4110 ? postponed_split_tab : cmdmod.cmod_tab; |
1090 | 4111 |
4112 if (n != 0) | |
682 | 4113 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
4114 cmdmod.cmod_tab = 0; // reset it to avoid doing it twice |
1090 | 4115 postponed_split_tab = 0; |
682 | 4116 return win_new_tabpage(n); |
4117 } | |
4118 return FAIL; | |
4119 } | |
4120 | |
4121 /* | |
672 | 4122 * Create up to "maxcount" tabpages with empty windows. |
4123 * Returns the number of resulting tab pages. | |
667 | 4124 */ |
672 | 4125 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4126 make_tabpages(int maxcount) |
667 | 4127 { |
672 | 4128 int count = maxcount; |
4129 int todo; | |
4130 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4131 // Limit to 'tabpagemax' tabs. |
698 | 4132 if (count > p_tpm) |
4133 count = p_tpm; | |
672 | 4134 |
4135 /* | |
4136 * Don't execute autocommands while creating the tab pages. Must do that | |
4137 * when putting the buffers in the windows. | |
4138 */ | |
1410 | 4139 block_autocmds(); |
672 | 4140 |
4141 for (todo = count - 1; todo > 0; --todo) | |
682 | 4142 if (win_new_tabpage(0) == FAIL) |
667 | 4143 break; |
672 | 4144 |
1410 | 4145 unblock_autocmds(); |
672 | 4146 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4147 // return actual number of tab pages |
672 | 4148 return (count - todo); |
667 | 4149 } |
4150 | |
4151 /* | |
671 | 4152 * Return TRUE when "tpc" points to a valid tab page. |
4153 */ | |
4154 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4155 valid_tabpage(tabpage_T *tpc) |
671 | 4156 { |
4157 tabpage_T *tp; | |
4158 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4159 FOR_ALL_TABPAGES(tp) |
671 | 4160 if (tp == tpc) |
4161 return TRUE; | |
4162 return FALSE; | |
4163 } | |
4164 | |
4165 /* | |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4166 * 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
|
4167 * valid. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4168 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4169 int |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4170 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
|
4171 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4172 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
|
4173 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
|
4174 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4175 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
|
4176 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4177 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
|
4178 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4179 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
|
4180 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4181 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
|
4182 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
|
4183 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4184 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
|
4185 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4186 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4187 // 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
|
4188 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
|
4189 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4190 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4191 /* |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4192 * 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
|
4193 * 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
|
4194 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4195 void |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4196 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
|
4197 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4198 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
|
4199 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4200 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
|
4201 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4202 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
|
4203 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
|
4204 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4205 else |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4206 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4207 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
|
4208 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
|
4209 ; |
11232
a14090a30a3f
patch 8.0.0502: Coverity complains about possible NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11207
diff
changeset
|
4210 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
|
4211 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
|
4212 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4213 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4214 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
|
4215 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
|
4216 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4217 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4218 /* |
671 | 4219 * Find tab page "n" (first one is 1). Returns NULL when not found. |
4220 */ | |
4221 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4222 find_tabpage(int n) |
671 | 4223 { |
4224 tabpage_T *tp; | |
4225 int i = 1; | |
4226 | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4227 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
|
4228 return curtab; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4229 |
671 | 4230 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next) |
4231 ++i; | |
4232 return tp; | |
4233 } | |
4234 | |
4235 /* | |
685 | 4236 * Get index of tab page "tp". First one has index 1. |
686 | 4237 * When not found returns number of tab pages plus one. |
685 | 4238 */ |
4239 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4240 tabpage_index(tabpage_T *ftp) |
685 | 4241 { |
4242 int i = 1; | |
4243 tabpage_T *tp; | |
4244 | |
4245 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next) | |
4246 ++i; | |
4247 return i; | |
4248 } | |
4249 | |
4250 /* | |
674 | 4251 * Prepare for leaving the current tab page. |
4352 | 4252 * When autocommands change "curtab" we don't leave the tab page and return |
674 | 4253 * FAIL. |
4254 * Careful: When OK is returned need to get a new tab page very very soon! | |
667 | 4255 */ |
674 | 4256 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4257 leave_tabpage( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4258 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
|
4259 // NULL if unknown |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4260 int trigger_leave_autocmds UNUSED) |
667 | 4261 { |
674 | 4262 tabpage_T *tp = curtab; |
4263 | |
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
|
4264 #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
|
4265 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
|
4266 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4267 reset_VIsual_and_resel(); // stop Visual mode |
4354 | 4268 if (trigger_leave_autocmds) |
4269 { | |
4270 if (new_curbuf != curbuf) | |
4271 { | |
4272 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4273 if (curtab != tp) | |
4274 return FAIL; | |
4275 } | |
4276 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
674 | 4277 if (curtab != tp) |
4278 return FAIL; | |
4354 | 4279 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); |
4280 if (curtab != tp) | |
4281 return FAIL; | |
4282 } | |
668 | 4283 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4284 // Remove the scrollbars. They may be added back later. |
668 | 4285 if (gui.in_use) |
4286 gui_remove_scrollbars(); | |
4287 #endif | |
667 | 4288 tp->tp_curwin = curwin; |
671 | 4289 tp->tp_prevwin = prevwin; |
667 | 4290 tp->tp_firstwin = firstwin; |
4291 tp->tp_lastwin = lastwin; | |
668 | 4292 tp->tp_old_Rows = Rows; |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4293 if (tp->tp_old_Columns != -1) |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4294 tp->tp_old_Columns = Columns; |
667 | 4295 firstwin = NULL; |
4296 lastwin = NULL; | |
674 | 4297 return OK; |
667 | 4298 } |
4299 | |
4300 /* | |
4301 * Start using tab page "tp". | |
675 | 4302 * Only to be used after leave_tabpage() or freeing the current tab page. |
4354 | 4303 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4304 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
667 | 4305 */ |
4306 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4307 enter_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4308 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4309 buf_T *old_curbuf UNUSED, |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4310 int trigger_enter_autocmds, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4311 int trigger_leave_autocmds) |
667 | 4312 { |
19143
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4313 int row; |
668 | 4314 int old_off = tp->tp_firstwin->w_winrow; |
870 | 4315 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
|
4316 tabpage_T *last_tab = curtab; |
668 | 4317 |
672 | 4318 curtab = tp; |
667 | 4319 firstwin = tp->tp_firstwin; |
4320 lastwin = tp->tp_lastwin; | |
4321 topframe = tp->tp_topframe; | |
870 | 4322 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4323 // 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
|
4324 // 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
|
4325 // This triggers autocommands, thus may make "tp" invalid. |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4326 (void)win_enter_ext(tp->tp_curwin, WEE_CURWIN_INVALID |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4327 | (trigger_enter_autocmds ? WEE_TRIGGER_ENTER_AUTOCMDS : 0) |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4328 | (trigger_leave_autocmds ? WEE_TRIGGER_LEAVE_AUTOCMDS : 0)); |
870 | 4329 prevwin = next_prevwin; |
4330 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4331 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
|
4332 row = win_comp_pos(); // recompute w_winrow for all windows |
672 | 4333 #ifdef FEAT_DIFF |
4334 diff_need_scrollbind = TRUE; | |
4335 #endif | |
668 | 4336 |
29589
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4337 // Use the stored value of p_ch, so that it can be different for each tab |
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4338 // page. |
16477
8cc31b1b1d23
patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
4339 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
|
4340 clear_cmdline = TRUE; |
824 | 4341 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
|
4342 |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4343 // 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
|
4344 // 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
|
4345 // 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
|
4346 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
|
4347 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
|
4348 |
29589
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4349 // The tabpage line may have appeared or disappeared, may need to resize |
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4350 // the frames for that. When the Vim window was resized need to update |
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4351 // frame sizes too. |
685 | 4352 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow |
4353 #ifdef FEAT_GUI_TABLINE | |
4354 && !gui_use_tabline() | |
4355 #endif | |
4356 )) | |
668 | 4357 shell_new_rows(); |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4358 if (curtab->tp_old_Columns != Columns) |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4359 { |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4360 if (starting == 0) |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4361 { |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4362 shell_new_columns(); // update window widths |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4363 curtab->tp_old_Columns = Columns; |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4364 } |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4365 else |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4366 curtab->tp_old_Columns = -1; // update window widths later |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4367 } |
668 | 4368 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4369 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
|
4370 |
668 | 4371 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4372 // 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
|
4373 // scrollbars. Have to update them anyway. |
1906 | 4374 gui_may_update_scrollbars(); |
667 | 4375 #endif |
4376 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4377 // 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
|
4378 // 'columns' have been set correctly. |
4354 | 4379 if (trigger_enter_autocmds) |
3582 | 4380 { |
4381 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); | |
4382 if (old_curbuf != curbuf) | |
4383 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4384 } | |
3413 | 4385 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
4386 redraw_all_later(UPD_NOT_VALID); |
667 | 4387 } |
4388 | |
4389 /* | |
4390 * Go to tab page "n". For ":tab N" and "Ngt". | |
685 | 4391 * When "n" is 9999 go to the last tab page. |
667 | 4392 */ |
4393 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4394 goto_tabpage(int n) |
667 | 4395 { |
16405
840fa633ad64
patch 8.1.1207: some compilers give warning messages
Bram Moolenaar <Bram@vim.org>
parents:
16401
diff
changeset
|
4396 tabpage_T *tp = NULL; // shut up compiler |
682 | 4397 tabpage_T *ttp; |
667 | 4398 int i; |
4399 | |
857 | 4400 if (text_locked()) |
4401 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4402 // 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
|
4403 text_locked_msg(); |
857 | 4404 return; |
4405 } | |
4406 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4407 // If there is only one it can't work. |
675 | 4408 if (first_tabpage->tp_next == NULL) |
4409 { | |
4410 if (n > 1) | |
4411 beep_flush(); | |
4412 return; | |
4413 } | |
4414 | |
667 | 4415 if (n == 0) |
4416 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4417 // No count, go to next tab page, wrap around end. |
674 | 4418 if (curtab->tp_next == NULL) |
667 | 4419 tp = first_tabpage; |
4420 else | |
674 | 4421 tp = curtab->tp_next; |
667 | 4422 } |
682 | 4423 else if (n < 0) |
4424 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4425 // "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
|
4426 // this N times. |
682 | 4427 ttp = curtab; |
4428 for (i = n; i < 0; ++i) | |
4429 { | |
4430 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL; | |
4431 tp = tp->tp_next) | |
4432 ; | |
4433 ttp = tp; | |
4434 } | |
4435 } | |
685 | 4436 else if (n == 9999) |
4437 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4438 // Go to last tab page. |
685 | 4439 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next) |
4440 ; | |
4441 } | |
667 | 4442 else |
4443 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4444 // Go to tab page "n". |
685 | 4445 tp = find_tabpage(n); |
671 | 4446 if (tp == NULL) |
4447 { | |
4448 beep_flush(); | |
4449 return; | |
4450 } | |
667 | 4451 } |
4452 | |
4354 | 4453 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 4454 |
4455 #ifdef FEAT_GUI_TABLINE | |
4456 if (gui_use_tabline()) | |
690 | 4457 gui_mch_set_curtab(tabpage_index(curtab)); |
685 | 4458 #endif |
4459 } | |
4460 | |
4461 /* | |
4462 * Go to tabpage "tp". | |
4354 | 4463 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4464 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
685 | 4465 * Note: doesn't update the GUI tab. |
4466 */ | |
4467 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4468 goto_tabpage_tp( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4469 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4470 int trigger_enter_autocmds, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4471 int trigger_leave_autocmds) |
685 | 4472 { |
27813
126826449b54
patch 8.2.4432: cannot use settabvar() while the cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
27805
diff
changeset
|
4473 if (trigger_enter_autocmds || trigger_leave_autocmds) |
126826449b54
patch 8.2.4432: cannot use settabvar() while the cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
27805
diff
changeset
|
4474 CHECK_CMDWIN; |
27805
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4475 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4476 // 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
|
4477 set_keep_msg(NULL, 0); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4478 |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
4479 skip_win_fix_scroll = TRUE; |
4354 | 4480 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer, |
4481 trigger_leave_autocmds) == OK) | |
674 | 4482 { |
4483 if (valid_tabpage(tp)) | |
4354 | 4484 enter_tabpage(tp, curbuf, trigger_enter_autocmds, |
4485 trigger_leave_autocmds); | |
674 | 4486 else |
4354 | 4487 enter_tabpage(curtab, curbuf, trigger_enter_autocmds, |
4488 trigger_leave_autocmds); | |
674 | 4489 } |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
4490 skip_win_fix_scroll = FALSE; |
667 | 4491 } |
7 | 4492 |
4493 /* | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4494 * 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
|
4495 * 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
|
4496 */ |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4497 int |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4498 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
|
4499 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4500 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
|
4501 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4502 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
|
4503 return OK; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4504 } |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4505 return FAIL; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4506 } |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4507 |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4508 /* |
825 | 4509 * Enter window "wp" in tab page "tp". |
4510 * Also updates the GUI tab. | |
4511 */ | |
4512 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4513 goto_tabpage_win(tabpage_T *tp, win_T *wp) |
825 | 4514 { |
4354 | 4515 goto_tabpage_tp(tp, TRUE, TRUE); |
825 | 4516 if (curtab == tp && win_valid(wp)) |
4517 { | |
4518 win_enter(wp, TRUE); | |
4519 # ifdef FEAT_GUI_TABLINE | |
4520 if (gui_use_tabline()) | |
4521 gui_mch_set_curtab(tabpage_index(curtab)); | |
4522 # endif | |
4523 } | |
4524 } | |
4525 | |
4526 /* | |
6775 | 4527 * Move the current tab page to after tab page "nr". |
682 | 4528 */ |
4529 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4530 tabpage_move(int nr) |
682 | 4531 { |
6775 | 4532 int n = 1; |
4533 tabpage_T *tp, *tp_dst; | |
682 | 4534 |
4535 if (first_tabpage->tp_next == NULL) | |
4536 return; | |
4537 | |
6775 | 4538 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next) |
4539 ++n; | |
4540 | |
4541 if (tp == curtab || (nr > 0 && tp->tp_next != NULL | |
4542 && tp->tp_next == curtab)) | |
4543 return; | |
4544 | |
4545 tp_dst = tp; | |
4546 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4547 // Remove the current tab page from the list of tab pages. |
682 | 4548 if (curtab == first_tabpage) |
4549 first_tabpage = curtab->tp_next; | |
4550 else | |
4551 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4552 FOR_ALL_TABPAGES(tp) |
682 | 4553 if (tp->tp_next == curtab) |
4554 break; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4555 if (tp == NULL) // "cannot happen" |
682 | 4556 return; |
4557 tp->tp_next = curtab->tp_next; | |
4558 } | |
4559 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4560 // Re-insert it at the specified position. |
6775 | 4561 if (nr <= 0) |
682 | 4562 { |
4563 curtab->tp_next = first_tabpage; | |
4564 first_tabpage = curtab; | |
4565 } | |
4566 else | |
4567 { | |
6775 | 4568 curtab->tp_next = tp_dst->tp_next; |
4569 tp_dst->tp_next = curtab; | |
682 | 4570 } |
4571 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4572 // Need to redraw the tabline. Tab page contents doesn't change. |
682 | 4573 redraw_tabline = TRUE; |
4574 } | |
4575 | |
4576 | |
4577 /* | |
7 | 4578 * Go to another window. |
4579 * When jumping to another buffer, stop Visual mode. Do this before | |
4580 * changing windows so we can yank the selection into the '*' register. | |
4581 * When jumping to another window on the same buffer, adjust its cursor | |
4582 * position to keep the same Visual area. | |
4583 */ | |
4584 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4585 win_goto(win_T *wp) |
7 | 4586 { |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4587 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4588 win_T *owp = curwin; |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4589 #endif |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4590 |
19166
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4591 #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
|
4592 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
|
4593 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
|
4594 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
|
4595 { |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
4596 emsg(_(e_not_allowed_to_enter_popup_window)); |
19166
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4597 return; |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4598 } |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4599 #endif |
29042
e150d0e4701f
patch 8.2.5043: can open a cmdline window from a substitute expression
Bram Moolenaar <Bram@vim.org>
parents:
29026
diff
changeset
|
4600 if (text_or_buf_locked()) |
7 | 4601 { |
4602 beep_flush(); | |
4603 return; | |
4604 } | |
631 | 4605 |
7 | 4606 if (wp->w_buffer != curbuf) |
4607 reset_VIsual_and_resel(); | |
4608 else if (VIsual_active) | |
4609 wp->w_cursor = curwin->w_cursor; | |
4610 | |
4611 #ifdef FEAT_GUI | |
4612 need_mouse_correct = TRUE; | |
4613 #endif | |
4614 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
|
4615 |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4616 #ifdef FEAT_CONCEAL |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15380
diff
changeset
|
4617 // Conceal cursor line in previous window, unconceal in current window. |
4094 | 4618 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
|
4619 redrawWinline(owp, owp->w_cursor.lnum); |
4094 | 4620 if (curwin->w_p_cole > 0 && !msg_scrolled) |
4621 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
|
4622 #endif |
7 | 4623 } |
4624 | |
25567
0082503ff2ff
patch 8.2.3320: some local functions are not static
Bram Moolenaar <Bram@vim.org>
parents:
25553
diff
changeset
|
4625 #if defined(FEAT_PERL) || defined(PROTO) |
7 | 4626 /* |
4627 * Find window number "winnr" (counting top to bottom). | |
4628 */ | |
4629 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4630 win_find_nr(int winnr) |
7 | 4631 { |
4632 win_T *wp; | |
4633 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4634 FOR_ALL_WINDOWS(wp) |
7 | 4635 if (--winnr == 0) |
4636 break; | |
4637 return wp; | |
4638 } | |
4639 #endif | |
4640 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4641 #if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO) |
4429 | 4642 /* |
4643 * Find the tabpage for window "win". | |
4644 */ | |
4645 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4646 win_find_tabpage(win_T *win) |
4429 | 4647 { |
4648 win_T *wp; | |
4649 tabpage_T *tp; | |
4650 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4651 FOR_ALL_TAB_WINDOWS(tp, wp) |
4429 | 4652 if (wp == win) |
4653 return tp; | |
4654 return NULL; | |
4655 } | |
4656 #endif | |
4657 | |
7 | 4658 /* |
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
|
4659 * 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
|
4660 * 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
|
4661 * 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
|
4662 * Returns the specified window if the neighbor is not found. |
7 | 4663 */ |
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
|
4664 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
|
4665 win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count) |
7 | 4666 { |
4667 frame_T *fr; | |
4668 frame_T *nfr; | |
4669 frame_T *foundfr; | |
4670 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4671 #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
|
4672 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
|
4673 // 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
|
4674 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
|
4675 #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
|
4676 foundfr = wp->w_frame; |
7 | 4677 while (count--) |
4678 { | |
4679 /* | |
4680 * First go upwards in the tree of frames until we find a upwards or | |
4681 * downwards neighbor. | |
4682 */ | |
4683 fr = foundfr; | |
4684 for (;;) | |
4685 { | |
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
|
4686 if (fr == tp->tp_topframe) |
7 | 4687 goto end; |
4688 if (up) | |
4689 nfr = fr->fr_prev; | |
4690 else | |
4691 nfr = fr->fr_next; | |
4692 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL) | |
4693 break; | |
4694 fr = fr->fr_parent; | |
4695 } | |
4696 | |
4697 /* | |
4698 * Now go downwards to find the bottom or top frame in it. | |
4699 */ | |
4700 for (;;) | |
4701 { | |
4702 if (nfr->fr_layout == FR_LEAF) | |
4703 { | |
4704 foundfr = nfr; | |
4705 break; | |
4706 } | |
4707 fr = nfr->fr_child; | |
4708 if (nfr->fr_layout == FR_ROW) | |
4709 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4710 // Find the frame at the cursor row. |
7 | 4711 while (fr->fr_next != NULL |
4712 && 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
|
4713 <= wp->w_wincol + wp->w_wcol) |
7 | 4714 fr = fr->fr_next; |
4715 } | |
4716 if (nfr->fr_layout == FR_COL && up) | |
4717 while (fr->fr_next != NULL) | |
4718 fr = fr->fr_next; | |
4719 nfr = fr; | |
4720 } | |
4721 } | |
4722 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
|
4723 return foundfr != NULL ? foundfr->fr_win : NULL; |
7 | 4724 } |
4725 | |
4726 /* | |
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
|
4727 * Move to window above or below "count" times. |
7 | 4728 */ |
4729 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
|
4730 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
|
4731 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
|
4732 long count) |
7 | 4733 { |
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
|
4734 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
|
4735 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4736 #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
|
4737 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
|
4738 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4739 #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
|
4740 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
|
4741 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
|
4742 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
|
4743 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4744 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4745 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4746 * 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
|
4747 * 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
|
4748 * 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
|
4749 * 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
|
4750 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4751 win_T * |
16354
b3bc3ba07bef
patch 8.1.1182: some function prototypes are outdated
Bram Moolenaar <Bram@vim.org>
parents:
16271
diff
changeset
|
4752 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
|
4753 { |
7 | 4754 frame_T *fr; |
4755 frame_T *nfr; | |
4756 frame_T *foundfr; | |
4757 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4758 #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
|
4759 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
|
4760 // 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
|
4761 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
|
4762 #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
|
4763 foundfr = wp->w_frame; |
7 | 4764 while (count--) |
4765 { | |
4766 /* | |
4767 * First go upwards in the tree of frames until we find a left or | |
4768 * right neighbor. | |
4769 */ | |
4770 fr = foundfr; | |
4771 for (;;) | |
4772 { | |
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
|
4773 if (fr == tp->tp_topframe) |
7 | 4774 goto end; |
4775 if (left) | |
4776 nfr = fr->fr_prev; | |
4777 else | |
4778 nfr = fr->fr_next; | |
4779 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL) | |
4780 break; | |
4781 fr = fr->fr_parent; | |
4782 } | |
4783 | |
4784 /* | |
4785 * Now go downwards to find the leftmost or rightmost frame in it. | |
4786 */ | |
4787 for (;;) | |
4788 { | |
4789 if (nfr->fr_layout == FR_LEAF) | |
4790 { | |
4791 foundfr = nfr; | |
4792 break; | |
4793 } | |
4794 fr = nfr->fr_child; | |
4795 if (nfr->fr_layout == FR_COL) | |
4796 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4797 // Find the frame at the cursor row. |
7 | 4798 while (fr->fr_next != NULL |
4799 && 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
|
4800 <= wp->w_winrow + wp->w_wrow) |
7 | 4801 fr = fr->fr_next; |
4802 } | |
4803 if (nfr->fr_layout == FR_ROW && left) | |
4804 while (fr->fr_next != NULL) | |
4805 fr = fr->fr_next; | |
4806 nfr = fr; | |
4807 } | |
4808 } | |
4809 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
|
4810 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
|
4811 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4812 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4813 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4814 * 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
|
4815 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4816 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
|
4817 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
|
4818 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
|
4819 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
|
4820 { |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4821 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
|
4822 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4823 #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
|
4824 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
|
4825 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4826 #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
|
4827 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
|
4828 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
|
4829 win_goto(win); |
7 | 4830 } |
4831 | |
4832 /* | |
4833 * Make window "wp" the current window. | |
4834 */ | |
4835 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4836 win_enter(win_T *wp, int undo_sync) |
7 | 4837 { |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4838 (void)win_enter_ext(wp, (undo_sync ? WEE_UNDO_SYNC : 0) |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4839 | WEE_TRIGGER_ENTER_AUTOCMDS | WEE_TRIGGER_LEAVE_AUTOCMDS); |
7 | 4840 } |
4841 | |
4842 /* | |
27032
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4843 * Used after making another window the current one: change directory if |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4844 * needed. |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4845 */ |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4846 static void |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4847 fix_current_dir(void) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4848 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4849 if (curwin->w_localdir != NULL || curtab->tp_localdir != NULL) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4850 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4851 char_u *dirname; |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4852 |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4853 // Window or tab has a local directory: Save current directory as |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4854 // global directory (unless that was done already) and change to the |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4855 // local directory. |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4856 if (globaldir == NULL) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4857 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4858 char_u cwd[MAXPATHL]; |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4859 |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4860 if (mch_dirname(cwd, MAXPATHL) == OK) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4861 globaldir = vim_strsave(cwd); |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4862 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4863 if (curwin->w_localdir != NULL) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4864 dirname = curwin->w_localdir; |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4865 else |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4866 dirname = curtab->tp_localdir; |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4867 |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4868 if (mch_chdir((char *)dirname) == 0) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4869 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4870 last_chdir_reason = NULL; |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4871 shorten_fnames(TRUE); |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4872 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4873 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4874 else if (globaldir != NULL) |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4875 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4876 // Window doesn't have a local directory and we are not in the global |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4877 // directory: Change to the global directory. |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4878 vim_ignored = mch_chdir((char *)globaldir); |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4879 VIM_CLEAR(globaldir); |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4880 last_chdir_reason = NULL; |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4881 shorten_fnames(TRUE); |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4882 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4883 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4884 |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4885 /* |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4886 * Make window "wp" the current window. |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4887 * Can be called with "flags" containing WEE_CURWIN_INVALID, which means that |
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4888 * curwin has just been closed and isn't valid. |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4889 * Returns TRUE when dont_parse_messages was decremented. |
7 | 4890 */ |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4891 static int |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4892 win_enter_ext(win_T *wp, int flags) |
7 | 4893 { |
4894 int other_buffer = FALSE; | |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4895 int curwin_invalid = (flags & WEE_CURWIN_INVALID); |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4896 int did_decrement = FALSE; |
7 | 4897 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4898 if (wp == curwin && !curwin_invalid) // nothing to do |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4899 return FALSE; |
7 | 4900 |
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
|
4901 #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
|
4902 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
|
4903 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
|
4904 #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
|
4905 |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4906 if (!curwin_invalid && (flags & WEE_TRIGGER_LEAVE_AUTOCMDS)) |
7 | 4907 { |
4908 /* | |
4909 * Be careful: If autocommands delete the window, return now. | |
4910 */ | |
4911 if (wp->w_buffer != curbuf) | |
4912 { | |
4913 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4914 other_buffer = TRUE; | |
4915 if (!win_valid(wp)) | |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4916 return FALSE; |
7 | 4917 } |
4918 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
4919 if (!win_valid(wp)) | |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4920 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4921 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4922 // autocmds may abort script processing |
7 | 4923 if (aborting()) |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4924 return FALSE; |
7 | 4925 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4926 } |
7 | 4927 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4928 // sync undo before leaving the current buffer |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4929 if ((flags & WEE_UNDO_SYNC) && curbuf != wp->w_buffer) |
825 | 4930 u_sync(FALSE); |
5977 | 4931 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4932 // 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
|
4933 // cursor was moved. |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4934 if (p_spsc) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4935 update_topline(); |
5977 | 4936 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4937 // may have to copy the buffer options when 'cpo' contains 'S' |
7 | 4938 if (wp->w_buffer != curbuf) |
4939 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP); | |
4940 if (!curwin_invalid) | |
4941 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4942 prevwin = curwin; // remember for CTRL-W p |
7 | 4943 curwin->w_redr_status = TRUE; |
4944 } | |
4945 curwin = wp; | |
4946 curbuf = wp->w_buffer; | |
4947 check_cursor(); | |
4948 if (!virtual_active()) | |
4949 curwin->w_cursor.coladd = 0; | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4950 if (p_spsc) // assume cursor position needs updating. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4951 changed_line_abv_curs(); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4952 else |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4953 win_fix_cursor(TRUE); |
7 | 4954 |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4955 // Now it is OK to parse messages again, which may be needed in |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4956 // autocommands. |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4957 #ifdef MESSAGE_QUEUE |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4958 if (flags & WEE_ALLOW_PARSE_MESSAGES) |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4959 { |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4960 --dont_parse_messages; |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4961 did_decrement = TRUE; |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4962 } |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4963 #endif |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4964 |
26121
2c64a420ce7e
patch 8.2.3593: directory is wrong after executing "lcd" with win_execute()
Bram Moolenaar <Bram@vim.org>
parents:
26117
diff
changeset
|
4965 fix_current_dir(); |
7 | 4966 |
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
|
4967 #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
|
4968 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
|
4969 #endif |
18283
0cb608fc9c60
patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents:
18255
diff
changeset
|
4970 // Careful: autocommands may close the window and make "wp" invalid |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4971 if (flags & WEE_TRIGGER_NEW_AUTOCMDS) |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4972 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4973 if (flags & WEE_TRIGGER_ENTER_AUTOCMDS) |
4354 | 4974 { |
4975 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); | |
4976 if (other_buffer) | |
4977 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4978 } | |
7 | 4979 |
4980 maketitle(); | |
4981 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
|
4982 #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
|
4983 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
|
4984 // 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
|
4985 redraw_mode = TRUE; |
18255
3f51e026de28
patch 8.1.2122: cannot build without terminal feature
Bram Moolenaar <Bram@vim.org>
parents:
18253
diff
changeset
|
4986 #endif |
672 | 4987 redraw_tabline = TRUE; |
7 | 4988 if (restart_edit) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
4989 redraw_later(UPD_VALID); // causes status line redraw |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4990 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4991 // 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
|
4992 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
|
4993 #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
|
4994 && !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
|
4995 #endif |
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4996 ) |
7 | 4997 win_setheight((int)p_wh); |
4998 else if (curwin->w_height == 0) | |
4999 win_setheight(1); | |
5000 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5001 // set window width to desired minimal value |
779 | 5002 if (curwin->w_width < p_wiw && !curwin->w_p_wfw) |
7 | 5003 win_setwidth((int)p_wiw); |
5004 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
5005 setmouse(); // in case jumped to/from help buffer |
7 | 5006 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5007 // 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
|
5008 DO_AUTOCHDIR; |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
5009 |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
5010 return did_decrement; |
7 | 5011 } |
5012 | |
26121
2c64a420ce7e
patch 8.2.3593: directory is wrong after executing "lcd" with win_execute()
Bram Moolenaar <Bram@vim.org>
parents:
26117
diff
changeset
|
5013 /* |
825 | 5014 * Jump to the first open window that contains buffer "buf", if one exists. |
5015 * Returns a pointer to the window found, otherwise NULL. | |
7 | 5016 */ |
5017 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5018 buf_jump_open_win(buf_T *buf) |
7 | 5019 { |
6307 | 5020 win_T *wp = NULL; |
5021 | |
5022 if (curwin->w_buffer == buf) | |
5023 wp = curwin; | |
5024 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5025 FOR_ALL_WINDOWS(wp) |
6307 | 5026 if (wp->w_buffer == buf) |
5027 break; | |
7 | 5028 if (wp != NULL) |
5029 win_enter(wp, FALSE); | |
5030 return wp; | |
5031 } | |
825 | 5032 |
5033 /* | |
5034 * Jump to the first open window in any tab page that contains buffer "buf", | |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27857
diff
changeset
|
5035 * if one exists. First search in the windows present in the current tab page. |
825 | 5036 * Returns a pointer to the window found, otherwise NULL. |
5037 */ | |
5038 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5039 buf_jump_open_tab(buf_T *buf) |
825 | 5040 { |
6307 | 5041 win_T *wp = buf_jump_open_win(buf); |
825 | 5042 tabpage_T *tp; |
5043 | |
5044 if (wp != NULL) | |
5045 return wp; | |
5046 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5047 FOR_ALL_TABPAGES(tp) |
825 | 5048 if (tp != curtab) |
5049 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
5050 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
825 | 5051 if (wp->w_buffer == buf) |
5052 break; | |
5053 if (wp != NULL) | |
5054 { | |
5055 goto_tabpage_win(tp, wp); | |
5056 if (curwin != wp) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5057 wp = NULL; // something went wrong |
825 | 5058 break; |
5059 } | |
5060 } | |
5061 return wp; | |
5062 } | |
7 | 5063 |
9223
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
5064 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
|
5065 |
7 | 5066 /* |
1906 | 5067 * Allocate a window structure and link it in the window list when "hidden" is |
5068 * FALSE. | |
7 | 5069 */ |
5070 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5071 win_alloc(win_T *after UNUSED, int hidden UNUSED) |
7 | 5072 { |
3263 | 5073 win_T *new_wp; |
7 | 5074 |
5075 /* | |
5076 * allocate window structure and linesizes arrays | |
5077 */ | |
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
|
5078 new_wp = ALLOC_CLEAR_ONE(win_T); |
4287 | 5079 if (new_wp == NULL) |
5080 return NULL; | |
5081 | |
5082 if (win_alloc_lines(new_wp) == FAIL) | |
3263 | 5083 { |
5084 vim_free(new_wp); | |
4287 | 5085 return NULL; |
5086 } | |
5087 | |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
5088 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
|
5089 |
4287 | 5090 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5091 // init w: variables |
28289
cdaff4db7760
patch 8.2.4670: memory allocation failures for new tab page not tested
Bram Moolenaar <Bram@vim.org>
parents:
28285
diff
changeset
|
5092 new_wp->w_vars = dict_alloc_id(aid_newwin_wvars); |
4287 | 5093 if (new_wp->w_vars == NULL) |
5094 { | |
5095 win_free_lsize(new_wp); | |
5096 vim_free(new_wp); | |
5097 return NULL; | |
5098 } | |
5099 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE); | |
5100 #endif | |
5101 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5102 // 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
|
5103 // 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
|
5104 // event. |
4287 | 5105 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
5106 |
4287 | 5107 /* |
5108 * link the window in the window list | |
5109 */ | |
5110 if (!hidden) | |
5111 win_append(after, new_wp); | |
5112 new_wp->w_wincol = 0; | |
5113 new_wp->w_width = Columns; | |
5114 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5115 // position the display and the cursor at the top of the file. |
4287 | 5116 new_wp->w_topline = 1; |
7 | 5117 #ifdef FEAT_DIFF |
4287 | 5118 new_wp->w_topfill = 0; |
5119 #endif | |
5120 new_wp->w_botline = 2; | |
5121 new_wp->w_cursor.lnum = 1; | |
5122 new_wp->w_scbind_pos = 1; | |
5123 | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5124 // 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
|
5125 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
|
5126 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
|
5127 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5128 // We won't calculate w_fraction until resizing the window |
4287 | 5129 new_wp->w_fraction = 0; |
5130 new_wp->w_prev_fraction_row = -1; | |
7 | 5131 |
5132 #ifdef FEAT_GUI | |
4287 | 5133 if (gui.in_use) |
5134 { | |
5135 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT], | |
5136 SBAR_LEFT, new_wp); | |
5137 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT], | |
5138 SBAR_RIGHT, new_wp); | |
5139 } | |
7 | 5140 #endif |
5141 #ifdef FEAT_FOLDING | |
4287 | 5142 foldInitWin(new_wp); |
7 | 5143 #endif |
4287 | 5144 unblock_autocmds(); |
1326 | 5145 #ifdef FEAT_SEARCH_EXTRA |
30574
66de6909e102
patch 9.0.0622: matchaddpos() can get slow when adding many matches
Bram Moolenaar <Bram@vim.org>
parents:
30535
diff
changeset
|
5146 new_wp->w_next_match_id = 1000; // up to 1000 can be picked by the user |
4287 | 5147 #endif |
3263 | 5148 return new_wp; |
7 | 5149 } |
5150 | |
5151 /* | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5152 * Remove window 'wp' from the window list and free the structure. |
7 | 5153 */ |
5154 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5155 win_free( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5156 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5157 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 5158 { |
5159 int i; | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5160 buf_T *buf; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5161 wininfo_T *wip; |
7 | 5162 |
1918 | 5163 #ifdef FEAT_FOLDING |
5164 clearFolding(wp); | |
5165 #endif | |
5166 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5167 // reduce the reference count to the argument list. |
1918 | 5168 alist_unlink(wp->w_alist); |
5169 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5170 // 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
|
5171 // gui_mch_destroy_scrollbar() may trigger a FocusGained event. |
1410 | 5172 block_autocmds(); |
1114 | 5173 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5174 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5175 lua_window_free(wp); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5176 #endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5177 |
14 | 5178 #ifdef FEAT_MZSCHEME |
5179 mzscheme_window_free(wp); | |
5180 #endif | |
5181 | |
7 | 5182 #ifdef FEAT_PERL |
5183 perl_win_free(wp); | |
5184 #endif | |
5185 | |
5186 #ifdef FEAT_PYTHON | |
5187 python_window_free(wp); | |
5188 #endif | |
5189 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5190 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5191 python3_window_free(wp); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5192 #endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5193 |
7 | 5194 #ifdef FEAT_TCL |
5195 tcl_window_free(wp); | |
5196 #endif | |
5197 | |
5198 #ifdef FEAT_RUBY | |
5199 ruby_window_free(wp); | |
5200 #endif | |
5201 | |
5202 clear_winopt(&wp->w_onebuf_opt); | |
5203 clear_winopt(&wp->w_allbuf_opt); | |
5204 | |
26077
ad90d7eee236
patch 8.2.3572: memory leak when closing window and using "multispace"
Bram Moolenaar <Bram@vim.org>
parents:
25567
diff
changeset
|
5205 vim_free(wp->w_lcs_chars.multispace); |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29042
diff
changeset
|
5206 vim_free(wp->w_lcs_chars.leadmultispace); |
26077
ad90d7eee236
patch 8.2.3572: memory leak when closing window and using "multispace"
Bram Moolenaar <Bram@vim.org>
parents:
25567
diff
changeset
|
5207 |
7 | 5208 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5209 vars_clear(&wp->w_vars->dv_hashtab); // free all w: variables |
4287 | 5210 hash_init(&wp->w_vars->dv_hashtab); |
5211 unref_var_dict(wp->w_vars); | |
7 | 5212 #endif |
5213 | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5214 { |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5215 tabpage_T *ttp; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5216 |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5217 if (prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5218 prevwin = NULL; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5219 FOR_ALL_TABPAGES(ttp) |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5220 if (ttp->tp_prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5221 ttp->tp_prevwin = NULL; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5222 } |
7 | 5223 win_free_lsize(wp); |
5224 | |
5225 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
|
5226 { |
7 | 5227 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
|
5228 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
|
5229 } |
7 | 5230 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
|
5231 vim_free(wp->w_prevdir); |
1326 | 5232 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5233 // 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
|
5234 // 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
|
5235 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
|
5236 FOR_ALL_BUF_WININFO(buf, wip) |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5237 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
|
5238 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5239 wininfo_T *wip2; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5240 |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5241 // 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
|
5242 // must be removed, it would never be used. |
25157
9a2e7184b604
patch 8.2.3115: Coverity complains about free_wininfo() use
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
5243 // Skip "wip" itself, otherwise Coverity complains. |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5244 for (wip2 = buf->b_wininfo; wip2 != NULL; wip2 = wip2->wi_next) |
25157
9a2e7184b604
patch 8.2.3115: Coverity complains about free_wininfo() use
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
5245 if (wip2 != wip && wip2->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
|
5246 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5247 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
|
5248 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
|
5249 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
|
5250 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
|
5251 else |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5252 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
|
5253 free_wininfo(wip2); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5254 break; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5255 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5256 |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5257 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
|
5258 } |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5259 |
7 | 5260 #ifdef FEAT_SEARCH_EXTRA |
1326 | 5261 clear_matches(wp); |
5262 #endif | |
5263 | |
7 | 5264 free_jumplist(wp); |
5265 | |
643 | 5266 #ifdef FEAT_QUICKFIX |
5267 qf_free_all(wp); | |
5268 #endif | |
5269 | |
7 | 5270 #ifdef FEAT_GUI |
5271 if (gui.in_use) | |
5272 { | |
5273 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]); | |
5274 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]); | |
5275 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5276 #endif // FEAT_GUI |
7 | 5277 |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5278 #ifdef FEAT_MENU |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5279 remove_winbar(wp); |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5280 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5281 #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
|
5282 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
|
5283 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
|
5284 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
|
5285 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
|
5286 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
|
5287 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
|
5288 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
|
5289 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
|
5290 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
|
5291 #endif |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5292 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5293 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
5294 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
|
5295 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5296 |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5297 if (win_valid_any_tab(wp)) |
1918 | 5298 win_remove(wp, tp); |
5958 | 5299 if (autocmd_busy) |
5300 { | |
5301 wp->w_next = au_pending_free_win; | |
5302 au_pending_free_win = wp; | |
5303 } | |
5304 else | |
5305 vim_free(wp); | |
1114 | 5306 |
1410 | 5307 unblock_autocmds(); |
7 | 5308 } |
5309 | |
5310 /* | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5311 * 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
|
5312 * popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5313 */ |
28167
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27976
diff
changeset
|
5314 int |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5315 win_unlisted(win_T *wp) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5316 { |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5317 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
|
5318 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5319 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5320 #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
|
5321 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5322 * 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
|
5323 * 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
|
5324 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5325 void |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5326 win_free_popup(win_T *win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5327 { |
28285
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5328 if (win->w_buffer != NULL) |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5329 { |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5330 if (bt_popup(win->w_buffer)) |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5331 win_close_buffer(win, DOBUF_WIPE_REUSE, FALSE); |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5332 else |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5333 close_buffer(win, win->w_buffer, 0, FALSE, FALSE); |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5334 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5335 # 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
|
5336 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
|
5337 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
|
5338 # endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5339 vim_free(win->w_frame); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5340 win_free(win, NULL); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5341 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5342 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5343 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5344 /* |
7 | 5345 * Append window "wp" in the window list after window "after". |
5346 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
5347 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5348 win_append(win_T *after, win_T *wp) |
7 | 5349 { |
5350 win_T *before; | |
5351 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5352 if (after == NULL) // after NULL is in front of the first |
7 | 5353 before = firstwin; |
5354 else | |
5355 before = after->w_next; | |
5356 | |
5357 wp->w_next = before; | |
5358 wp->w_prev = after; | |
5359 if (after == NULL) | |
5360 firstwin = wp; | |
5361 else | |
5362 after->w_next = wp; | |
5363 if (before == NULL) | |
5364 lastwin = wp; | |
5365 else | |
5366 before->w_prev = wp; | |
5367 } | |
5368 | |
5369 /* | |
5370 * Remove a window from the window list. | |
5371 */ | |
1906 | 5372 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5373 win_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5374 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5375 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 5376 { |
5377 if (wp->w_prev != NULL) | |
5378 wp->w_prev->w_next = wp->w_next; | |
671 | 5379 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
|
5380 firstwin = curtab->tp_firstwin = wp->w_next; |
7 | 5381 else |
671 | 5382 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
|
5383 |
7 | 5384 if (wp->w_next != NULL) |
5385 wp->w_next->w_prev = wp->w_prev; | |
671 | 5386 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
|
5387 lastwin = curtab->tp_lastwin = wp->w_prev; |
7 | 5388 else |
671 | 5389 tp->tp_lastwin = wp->w_prev; |
7 | 5390 } |
5391 | |
5392 /* | |
5393 * Append frame "frp" in a frame list after frame "after". | |
5394 */ | |
5395 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5396 frame_append(frame_T *after, frame_T *frp) |
7 | 5397 { |
5398 frp->fr_next = after->fr_next; | |
5399 after->fr_next = frp; | |
5400 if (frp->fr_next != NULL) | |
5401 frp->fr_next->fr_prev = frp; | |
5402 frp->fr_prev = after; | |
5403 } | |
5404 | |
5405 /* | |
5406 * Insert frame "frp" in a frame list before frame "before". | |
5407 */ | |
5408 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5409 frame_insert(frame_T *before, frame_T *frp) |
7 | 5410 { |
5411 frp->fr_next = before; | |
5412 frp->fr_prev = before->fr_prev; | |
5413 before->fr_prev = frp; | |
5414 if (frp->fr_prev != NULL) | |
5415 frp->fr_prev->fr_next = frp; | |
5416 else | |
5417 frp->fr_parent->fr_child = frp; | |
5418 } | |
5419 | |
5420 /* | |
5421 * Remove a frame from a frame list. | |
5422 */ | |
5423 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5424 frame_remove(frame_T *frp) |
7 | 5425 { |
5426 if (frp->fr_prev != NULL) | |
5427 frp->fr_prev->fr_next = frp->fr_next; | |
5428 else | |
5429 frp->fr_parent->fr_child = frp->fr_next; | |
5430 if (frp->fr_next != NULL) | |
5431 frp->fr_next->fr_prev = frp->fr_prev; | |
5432 } | |
5433 | |
5434 /* | |
5435 * Allocate w_lines[] for window "wp". | |
5436 * Return FAIL for failure, OK for success. | |
5437 */ | |
5438 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5439 win_alloc_lines(win_T *wp) |
7 | 5440 { |
5441 wp->w_lines_valid = 0; | |
27251
85f56e16da9b
patch 8.2.4154: ml_get error when exchanging windows in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
27032
diff
changeset
|
5442 wp->w_lines = ALLOC_CLEAR_MULT(wline_T, Rows); |
7 | 5443 if (wp->w_lines == NULL) |
5444 return FAIL; | |
5445 return OK; | |
5446 } | |
5447 | |
5448 /* | |
5449 * free lsize arrays for a window | |
5450 */ | |
5451 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5452 win_free_lsize(win_T *wp) |
7 | 5453 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5454 // TODO: why would wp be NULL here? |
5952 | 5455 if (wp != NULL) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
5456 VIM_CLEAR(wp->w_lines); |
7 | 5457 } |
5458 | |
5459 /* | |
5460 * Called from win_new_shellsize() after Rows changed. | |
671 | 5461 * This only does the current tab page, others must be done when made active. |
7 | 5462 */ |
5463 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5464 shell_new_rows(void) |
7 | 5465 { |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5466 int h = (int)ROWS_AVAIL; |
7 | 5467 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5468 if (firstwin == NULL) // not initialized yet |
7 | 5469 return; |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5470 if (h < frame_minheight(topframe, NULL)) |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5471 h = frame_minheight(topframe, NULL); |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5472 |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5473 // First try setting the heights of windows with 'winfixheight'. If |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5474 // that doesn't result in the right height, forget about that option. |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5475 frame_new_height(topframe, h, FALSE, TRUE); |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5476 if (!frame_check_height(topframe, h)) |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5477 frame_new_height(topframe, h, FALSE, FALSE); |
7 | 5478 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5479 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5480 compute_cmdrow(); |
824 | 5481 curtab->tp_ch_used = p_ch; |
170 | 5482 |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
5483 if (!p_spsc && !skip_win_fix_scroll) |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
5484 win_fix_scroll(TRUE); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
5485 |
7 | 5486 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5487 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5488 if (p_ea) |
5489 win_equal(curwin, FALSE, 'v'); | |
5490 #endif | |
5491 } | |
5492 | |
5493 /* | |
5494 * Called from win_new_shellsize() after Columns changed. | |
5495 */ | |
5496 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5497 shell_new_columns(void) |
7 | 5498 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5499 if (firstwin == NULL) // not initialized yet |
7 | 5500 return; |
779 | 5501 |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5502 // First try setting the widths of windows with 'winfixwidth'. If that |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5503 // doesn't result in the right width, forget about that option. |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5504 frame_new_width(topframe, (int)Columns, FALSE, TRUE); |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5505 if (!frame_check_width(topframe, Columns)) |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5506 frame_new_width(topframe, (int)Columns, FALSE, FALSE); |
779 | 5507 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5508 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5509 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5510 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5511 if (p_ea) |
5512 win_equal(curwin, FALSE, 'h'); | |
5513 #endif | |
5514 } | |
5515 | |
5516 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
5517 /* | |
5518 * Save the size of all windows in "gap". | |
5519 */ | |
5520 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5521 win_size_save(garray_T *gap) |
7 | 5522 |
5523 { | |
5524 win_T *wp; | |
5525 | |
27028
c9474ae175f4
patch 8.2.4043: using int for second argument of ga_init2()
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
5526 ga_init2(gap, 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
|
5527 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
|
5528 { |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5529 // 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
|
5530 ((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
|
5531 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5532 FOR_ALL_WINDOWS(wp) |
7 | 5533 { |
5534 ((int *)gap->ga_data)[gap->ga_len++] = | |
5535 wp->w_width + wp->w_vsep_width; | |
5536 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height; | |
5537 } | |
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
|
5538 } |
7 | 5539 } |
5540 | |
5541 /* | |
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
|
5542 * 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
|
5543 * and 'lines' didn't change. |
7 | 5544 * Does not free the growarray. |
5545 */ | |
5546 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5547 win_size_restore(garray_T *gap) |
7 | 5548 { |
5549 win_T *wp; | |
6058 | 5550 int i, j; |
7 | 5551 |
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
|
5552 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
|
5553 && ((int *)gap->ga_data)[0] == Rows) |
7 | 5554 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5555 // 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
|
5556 // difficult to get right. The easy way out is to do it twice. |
6058 | 5557 for (j = 0; j < 2; ++j) |
7 | 5558 { |
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
|
5559 i = 1; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5560 FOR_ALL_WINDOWS(wp) |
6058 | 5561 { |
5562 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]); | |
5563 win_setheight_win(((int *)gap->ga_data)[i++], wp); | |
5564 } | |
7 | 5565 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5566 // recompute the window positions |
7 | 5567 (void)win_comp_pos(); |
5568 } | |
5569 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5570 #endif // FEAT_CMDWIN |
7 | 5571 |
5572 /* | |
5573 * Update the position for all windows, using the width and height of the | |
5574 * frames. | |
5575 * Returns the row just after the last window. | |
5576 */ | |
668 | 5577 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5578 win_comp_pos(void) |
7 | 5579 { |
685 | 5580 int row = tabline_height(); |
7 | 5581 int col = 0; |
5582 | |
5583 frame_comp_pos(topframe, &row, &col); | |
5584 return row; | |
5585 } | |
5586 | |
5587 /* | |
5588 * Update the position of the windows in frame "topfrp", using the width and | |
5589 * height of the frames. | |
5590 * "*row" and "*col" are the top-left position of the frame. They are updated | |
5591 * to the bottom-right position plus one. | |
5592 */ | |
5593 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5594 frame_comp_pos(frame_T *topfrp, int *row, int *col) |
7 | 5595 { |
5596 win_T *wp; | |
5597 frame_T *frp; | |
5598 int startcol; | |
5599 int startrow; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5600 int h; |
7 | 5601 |
5602 wp = topfrp->fr_win; | |
5603 if (wp != NULL) | |
5604 { | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
5605 if (wp->w_winrow != *row || wp->w_wincol != *col) |
7 | 5606 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5607 // position changed, redraw |
7 | 5608 wp->w_winrow = *row; |
5609 wp->w_wincol = *col; | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
5610 redraw_win_later(wp, UPD_NOT_VALID); |
7 | 5611 wp->w_redr_status = TRUE; |
5612 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5613 // 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
|
5614 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
|
5615 *row += h > topfrp->fr_height ? topfrp->fr_height : h; |
7 | 5616 *col += wp->w_width + wp->w_vsep_width; |
5617 } | |
5618 else | |
5619 { | |
5620 startrow = *row; | |
5621 startcol = *col; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5622 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 5623 { |
5624 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
|
5625 *row = startrow; // all frames are at the same row |
7 | 5626 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5627 *col = startcol; // all frames are at the same col |
7 | 5628 frame_comp_pos(frp, row, col); |
5629 } | |
5630 } | |
5631 } | |
5632 | |
5633 /* | |
26468
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5634 * Make the current window show at least one line and one column. |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5635 */ |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5636 void |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5637 win_ensure_size() |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5638 { |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5639 if (curwin->w_height == 0) |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5640 win_setheight(1); |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5641 if (curwin->w_width == 0) |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5642 win_setwidth(1); |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5643 } |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5644 |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
5645 /* |
7 | 5646 * Set current window height and take care of repositioning other windows to |
5647 * fit around it. | |
5648 */ | |
5649 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5650 win_setheight(int height) |
7 | 5651 { |
5652 win_setheight_win(height, curwin); | |
5653 } | |
5654 | |
5655 /* | |
5656 * Set the window height of window "win" and take care of repositioning other | |
5657 * windows to fit around it. | |
5658 */ | |
5659 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5660 win_setheight_win(int height, win_T *win) |
7 | 5661 { |
5662 int row; | |
5663 | |
5664 if (win == curwin) | |
5665 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5666 // 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
|
5667 // 'winminheight' is zero. |
7 | 5668 if (height < p_wmh) |
5669 height = p_wmh; | |
5670 if (height == 0) | |
5671 height = 1; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5672 height += WINBAR_HEIGHT(curwin); |
7 | 5673 } |
5674 | |
5675 frame_setheight(win->w_frame, height + win->w_status_height); | |
5676 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5677 // recompute the window positions |
7 | 5678 row = win_comp_pos(); |
5679 | |
5680 /* | |
5681 * If there is extra space created between the last window and the command | |
5682 * line, clear it. | |
5683 */ | |
5684 if (full_screen && msg_scrolled == 0 && row < cmdline_row) | |
5685 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5686 cmdline_row = row; | |
5687 msg_row = row; | |
5688 msg_col = 0; | |
5689 | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
5690 if (!p_spsc) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
5691 win_fix_scroll(TRUE); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
5692 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
5693 redraw_all_later(UPD_NOT_VALID); |
7 | 5694 } |
5695 | |
5696 /* | |
5697 * Set the height of a frame to "height" and take care that all frames and | |
5698 * windows inside it are resized. Also resize frames on the left and right if | |
5699 * the are in the same FR_ROW frame. | |
5700 * | |
5701 * Strategy: | |
5702 * If the frame is part of a FR_COL frame, try fitting the frame in that | |
5703 * frame. If that doesn't work (the FR_COL frame is too small), recursively | |
5704 * go to containing frames to resize them and make room. | |
5705 * If the frame is part of a FR_ROW frame, all frames must be resized as well. | |
5706 * Check for the minimal height of the FR_ROW frame. | |
5707 * At the top level we can also use change the command line height. | |
5708 */ | |
5709 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5710 frame_setheight(frame_T *curfrp, int height) |
7 | 5711 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5712 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
|
5713 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
|
5714 int room_cmdline; // lines available from cmdline |
7 | 5715 int run; |
5716 frame_T *frp; | |
5717 int h; | |
5718 int room_reserved; | |
5719 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5720 // If the height already is the desired value, nothing to do. |
7 | 5721 if (curfrp->fr_height == height) |
5722 return; | |
5723 | |
5724 if (curfrp->fr_parent == NULL) | |
5725 { | |
29700
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
5726 // topframe: can only change the command line height |
667 | 5727 if (height > ROWS_AVAIL) |
29976
b6b71499d9af
patch 9.0.0326: some changes for cmdheight=0 are not needed
Bram Moolenaar <Bram@vim.org>
parents:
29932
diff
changeset
|
5728 height = ROWS_AVAIL; |
7 | 5729 if (height > 0) |
5730 frame_new_height(curfrp, height, FALSE, FALSE); | |
5731 } | |
5732 else if (curfrp->fr_parent->fr_layout == FR_ROW) | |
5733 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5734 // 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
|
5735 // one. First check for the minimal height of these. |
7 | 5736 h = frame_minheight(curfrp->fr_parent, NULL); |
5737 if (height < h) | |
5738 height = h; | |
5739 frame_setheight(curfrp->fr_parent, height); | |
5740 } | |
5741 else | |
5742 { | |
5743 /* | |
5744 * Column of frames: try to change only frames in this column. | |
5745 */ | |
5746 /* | |
5747 * Do this twice: | |
5748 * 1: compute room available, if it's not enough try resizing the | |
5749 * containing frame. | |
5750 * 2: compute the room available and adjust the height to it. | |
5751 * Try not to reduce the height of a window with 'winfixheight' set. | |
5752 */ | |
5753 for (run = 1; run <= 2; ++run) | |
5754 { | |
5755 room = 0; | |
5756 room_reserved = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5757 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5758 { |
5759 if (frp != curfrp | |
5760 && frp->fr_win != NULL | |
5761 && frp->fr_win->w_p_wfh) | |
5762 room_reserved += frp->fr_height; | |
5763 room += frp->fr_height; | |
5764 if (frp != curfrp) | |
5765 room -= frame_minheight(frp, NULL); | |
5766 } | |
5767 if (curfrp->fr_width != Columns) | |
5768 room_cmdline = 0; | |
5769 else | |
5770 { | |
5771 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
|
5772 + VISIBLE_HEIGHT(lastwin) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5773 + lastwin->w_status_height); |
7 | 5774 if (room_cmdline < 0) |
5775 room_cmdline = 0; | |
5776 } | |
5777 | |
5778 if (height <= room + room_cmdline) | |
5779 break; | |
5780 if (run == 2 || curfrp->fr_width == Columns) | |
5781 { | |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
5782 height = room + room_cmdline; |
7 | 5783 break; |
5784 } | |
5785 frame_setheight(curfrp->fr_parent, height | |
5786 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1); | |
5787 } | |
5788 | |
5789 /* | |
5790 * Compute the number of lines we will take from others frames (can be | |
5791 * negative!). | |
5792 */ | |
5793 take = height - curfrp->fr_height; | |
5794 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5795 // 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
|
5796 // with 'winfixheight' set. |
7 | 5797 if (height > room + room_cmdline - room_reserved) |
5798 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
|
5799 // 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
|
5800 // window smaller, need to make the other window taller. |
7 | 5801 if (take < 0 && room - curfrp->fr_height < room_reserved) |
5802 room_reserved = 0; | |
5803 | |
5804 if (take > 0 && room_cmdline > 0) | |
5805 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5806 // use lines from cmdline first |
7 | 5807 if (take < room_cmdline) |
5808 room_cmdline = take; | |
5809 take -= room_cmdline; | |
5810 topframe->fr_height += room_cmdline; | |
5811 } | |
5812 | |
5813 /* | |
5814 * set the current frame to the new height | |
5815 */ | |
5816 frame_new_height(curfrp, height, FALSE, FALSE); | |
5817 | |
5818 /* | |
5819 * First take lines from the frames after the current frame. If | |
5820 * that is not enough, takes lines from frames above the current | |
5821 * frame. | |
5822 */ | |
5823 for (run = 0; run < 2; ++run) | |
5824 { | |
5825 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5826 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 5827 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5828 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 5829 while (frp != NULL && take != 0) |
5830 { | |
5831 h = frame_minheight(frp, NULL); | |
5832 if (room_reserved > 0 | |
5833 && frp->fr_win != NULL | |
5834 && frp->fr_win->w_p_wfh) | |
5835 { | |
5836 if (room_reserved >= frp->fr_height) | |
5837 room_reserved -= frp->fr_height; | |
5838 else | |
5839 { | |
5840 if (frp->fr_height - room_reserved > take) | |
5841 room_reserved = frp->fr_height - take; | |
5842 take -= frp->fr_height - room_reserved; | |
5843 frame_new_height(frp, room_reserved, FALSE, FALSE); | |
5844 room_reserved = 0; | |
5845 } | |
5846 } | |
5847 else | |
5848 { | |
5849 if (frp->fr_height - take < h) | |
5850 { | |
5851 take -= frp->fr_height - h; | |
5852 frame_new_height(frp, h, FALSE, FALSE); | |
5853 } | |
5854 else | |
5855 { | |
5856 frame_new_height(frp, frp->fr_height - take, | |
5857 FALSE, FALSE); | |
5858 take = 0; | |
5859 } | |
5860 } | |
5861 if (run == 0) | |
5862 frp = frp->fr_next; | |
5863 else | |
5864 frp = frp->fr_prev; | |
5865 } | |
5866 } | |
5867 } | |
5868 } | |
5869 | |
5870 /* | |
5871 * Set current window width and take care of repositioning other windows to | |
5872 * fit around it. | |
5873 */ | |
5874 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5875 win_setwidth(int width) |
7 | 5876 { |
5877 win_setwidth_win(width, curwin); | |
5878 } | |
5879 | |
5880 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5881 win_setwidth_win(int width, win_T *wp) |
7 | 5882 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5883 // 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
|
5884 // 'winminwidth' is zero. |
7 | 5885 if (wp == curwin) |
5886 { | |
5887 if (width < p_wmw) | |
5888 width = p_wmw; | |
5889 if (width == 0) | |
5890 width = 1; | |
5891 } | |
23402
65718283239b
patch 8.2.2244: crash when making the window width negative
Bram Moolenaar <Bram@vim.org>
parents:
23386
diff
changeset
|
5892 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
|
5893 width = 0; |
7 | 5894 |
5895 frame_setwidth(wp->w_frame, width + wp->w_vsep_width); | |
5896 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5897 // recompute the window positions |
7 | 5898 (void)win_comp_pos(); |
5899 | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
5900 redraw_all_later(UPD_NOT_VALID); |
7 | 5901 } |
5902 | |
5903 /* | |
5904 * Set the width of a frame to "width" and take care that all frames and | |
5905 * windows inside it are resized. Also resize frames above and below if the | |
5906 * are in the same FR_ROW frame. | |
5907 * | |
5908 * Strategy is similar to frame_setheight(). | |
5909 */ | |
5910 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5911 frame_setwidth(frame_T *curfrp, int width) |
7 | 5912 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5913 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
|
5914 int take; // number of lines taken from other windows |
7 | 5915 int run; |
5916 frame_T *frp; | |
5917 int w; | |
779 | 5918 int room_reserved; |
7 | 5919 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5920 // If the width already is the desired value, nothing to do. |
7 | 5921 if (curfrp->fr_width == width) |
5922 return; | |
5923 | |
5924 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
|
5925 // topframe: can't change width |
7 | 5926 return; |
5927 | |
5928 if (curfrp->fr_parent->fr_layout == FR_COL) | |
5929 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5930 // 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
|
5931 // this one. First check for the minimal width of these. |
7 | 5932 w = frame_minwidth(curfrp->fr_parent, NULL); |
5933 if (width < w) | |
5934 width = w; | |
5935 frame_setwidth(curfrp->fr_parent, width); | |
5936 } | |
5937 else | |
5938 { | |
5939 /* | |
5940 * Row of frames: try to change only frames in this row. | |
5941 * | |
5942 * Do this twice: | |
5943 * 1: compute room available, if it's not enough try resizing the | |
5944 * containing frame. | |
5945 * 2: compute the room available and adjust the width to it. | |
5946 */ | |
5947 for (run = 1; run <= 2; ++run) | |
5948 { | |
5949 room = 0; | |
779 | 5950 room_reserved = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5951 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5952 { |
779 | 5953 if (frp != curfrp |
5954 && frp->fr_win != NULL | |
5955 && frp->fr_win->w_p_wfw) | |
5956 room_reserved += frp->fr_width; | |
7 | 5957 room += frp->fr_width; |
5958 if (frp != curfrp) | |
5959 room -= frame_minwidth(frp, NULL); | |
5960 } | |
5961 | |
5962 if (width <= room) | |
5963 break; | |
667 | 5964 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL) |
7 | 5965 { |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
5966 width = room; |
7 | 5967 break; |
5968 } | |
5969 frame_setwidth(curfrp->fr_parent, width | |
5970 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1); | |
5971 } | |
5972 | |
5973 /* | |
5974 * Compute the number of lines we will take from others frames (can be | |
5975 * negative!). | |
5976 */ | |
5977 take = width - curfrp->fr_width; | |
5978 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5979 // 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
|
5980 // with 'winfixwidth' set. |
779 | 5981 if (width > room - room_reserved) |
5982 room_reserved = room - width; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5983 // 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
|
5984 // window smaller, need to make the other window narrower. |
779 | 5985 if (take < 0 && room - curfrp->fr_width < room_reserved) |
5986 room_reserved = 0; | |
5987 | |
7 | 5988 /* |
5989 * set the current frame to the new width | |
5990 */ | |
779 | 5991 frame_new_width(curfrp, width, FALSE, FALSE); |
7 | 5992 |
5993 /* | |
5994 * First take lines from the frames right of the current frame. If | |
5995 * that is not enough, takes lines from frames left of the current | |
5996 * frame. | |
5997 */ | |
5998 for (run = 0; run < 2; ++run) | |
5999 { | |
6000 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6001 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 6002 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6003 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 6004 while (frp != NULL && take != 0) |
6005 { | |
6006 w = frame_minwidth(frp, NULL); | |
779 | 6007 if (room_reserved > 0 |
6008 && frp->fr_win != NULL | |
6009 && frp->fr_win->w_p_wfw) | |
7 | 6010 { |
779 | 6011 if (room_reserved >= frp->fr_width) |
6012 room_reserved -= frp->fr_width; | |
6013 else | |
6014 { | |
6015 if (frp->fr_width - room_reserved > take) | |
6016 room_reserved = frp->fr_width - take; | |
6017 take -= frp->fr_width - room_reserved; | |
6018 frame_new_width(frp, room_reserved, FALSE, FALSE); | |
6019 room_reserved = 0; | |
6020 } | |
7 | 6021 } |
6022 else | |
6023 { | |
779 | 6024 if (frp->fr_width - take < w) |
6025 { | |
6026 take -= frp->fr_width - w; | |
6027 frame_new_width(frp, w, FALSE, FALSE); | |
6028 } | |
6029 else | |
6030 { | |
6031 frame_new_width(frp, frp->fr_width - take, | |
6032 FALSE, FALSE); | |
6033 take = 0; | |
6034 } | |
7 | 6035 } |
6036 if (run == 0) | |
6037 frp = frp->fr_next; | |
6038 else | |
6039 frp = frp->fr_prev; | |
6040 } | |
6041 } | |
6042 } | |
6043 } | |
6044 | |
6045 /* | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6046 * Check 'winminheight' for a valid value and reduce it if needed. |
7 | 6047 */ |
6048 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6049 win_setminheight(void) |
7 | 6050 { |
6051 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
|
6052 int needed; |
7 | 6053 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
|
6054 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6055 // loop until there is a 'winminheight' that is possible |
7 | 6056 while (p_wmh > 0) |
6057 { | |
24108
0a5eba7e6660
patch 8.2.2595: setting 'winminheight' may cause 'lines' to change
Bram Moolenaar <Bram@vim.org>
parents:
24037
diff
changeset
|
6058 room = Rows - p_ch; |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6059 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
|
6060 if (room >= needed) |
7 | 6061 break; |
6062 --p_wmh; | |
6063 if (first) | |
6064 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6065 emsg(_(e_not_enough_room)); |
7 | 6066 first = FALSE; |
6067 } | |
6068 } | |
6069 } | |
6070 | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6071 /* |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6072 * 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
|
6073 */ |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6074 void |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6075 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
|
6076 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6077 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
|
6078 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
|
6079 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
|
6080 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6081 // 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
|
6082 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
|
6083 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6084 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
|
6085 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
|
6086 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
|
6087 break; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6088 --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
|
6089 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
|
6090 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6091 emsg(_(e_not_enough_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
|
6092 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
|
6093 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6094 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6095 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6096 |
7 | 6097 /* |
6098 * Status line of dragwin is dragged "offset" lines down (negative is up). | |
6099 */ | |
6100 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6101 win_drag_status_line(win_T *dragwin, int offset) |
7 | 6102 { |
6103 frame_T *curfr; | |
6104 frame_T *fr; | |
6105 int room; | |
6106 int row; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6107 int up; // if TRUE, drag status line up, otherwise down |
7 | 6108 int n; |
6109 | |
6110 fr = dragwin->w_frame; | |
6111 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6112 if (fr != topframe) // more than one window |
7 | 6113 { |
6114 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6115 // 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
|
6116 // be. |
7 | 6117 if (fr->fr_layout != FR_COL) |
6118 { | |
6119 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6120 if (fr != topframe) // only a row of windows, may drag statusline |
7 | 6121 fr = fr->fr_parent; |
6122 } | |
6123 } | |
6124 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6125 // 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
|
6126 // frame instead (go two up to skip a row of frames). |
7 | 6127 while (curfr != topframe && curfr->fr_next == NULL) |
6128 { | |
6129 if (fr != topframe) | |
6130 fr = fr->fr_parent; | |
6131 curfr = fr; | |
6132 if (fr != topframe) | |
6133 fr = fr->fr_parent; | |
6134 } | |
6135 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6136 if (offset < 0) // drag up |
7 | 6137 { |
6138 up = TRUE; | |
6139 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6140 // sum up the room of the current frame and above it |
7 | 6141 if (fr == curfr) |
6142 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6143 // only one window |
7 | 6144 room = fr->fr_height - frame_minheight(fr, NULL); |
6145 } | |
6146 else | |
6147 { | |
6148 room = 0; | |
6149 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
6150 { | |
6151 room += fr->fr_height - frame_minheight(fr, NULL); | |
6152 if (fr == curfr) | |
6153 break; | |
6154 } | |
6155 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6156 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
|
6157 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6158 else // drag down |
7 | 6159 { |
6160 up = FALSE; | |
6161 /* | |
6162 * Only dragging the last status line can reduce p_ch. | |
6163 */ | |
6164 room = Rows - cmdline_row; | |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6165 if (curfr->fr_next == NULL) |
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6166 --room; |
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6167 else |
7 | 6168 room -= p_ch; |
6169 if (room < 0) | |
6170 room = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6171 // 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
|
6172 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 6173 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
|
6174 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
|
6175 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6176 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6177 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
|
6178 offset = room; // Move as far as we can |
7 | 6179 if (offset <= 0) |
6180 return; | |
6181 | |
6182 /* | |
6183 * Grow frame fr by "offset" lines. | |
6184 * Doesn't happen when dragging the last status line up. | |
6185 */ | |
6186 if (fr != NULL) | |
6187 frame_new_height(fr, fr->fr_height + offset, up, FALSE); | |
6188 | |
6189 if (up) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6190 fr = curfr; // current frame gets smaller |
7 | 6191 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6192 fr = curfr->fr_next; // next frame gets smaller |
7 | 6193 |
6194 /* | |
6195 * Now make the other frames smaller. | |
6196 */ | |
6197 while (fr != NULL && offset > 0) | |
6198 { | |
6199 n = frame_minheight(fr, NULL); | |
6200 if (fr->fr_height - offset <= n) | |
6201 { | |
6202 offset -= fr->fr_height - n; | |
6203 frame_new_height(fr, n, !up, FALSE); | |
6204 } | |
6205 else | |
6206 { | |
6207 frame_new_height(fr, fr->fr_height - offset, !up, FALSE); | |
6208 break; | |
6209 } | |
6210 if (up) | |
6211 fr = fr->fr_prev; | |
6212 else | |
6213 fr = fr->fr_next; | |
6214 } | |
6215 row = win_comp_pos(); | |
6216 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
6217 cmdline_row = row; | |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6218 p_ch = MAX(Rows - cmdline_row, 1); |
824 | 6219 curtab->tp_ch_used = p_ch; |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6220 |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6221 if (!p_spsc) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6222 win_fix_scroll(TRUE); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6223 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6224 redraw_all_later(UPD_SOME_VALID); |
7 | 6225 showmode(); |
6226 } | |
6227 | |
6228 /* | |
6229 * Separator line of dragwin is dragged "offset" lines right (negative is left). | |
6230 */ | |
6231 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6232 win_drag_vsep_line(win_T *dragwin, int offset) |
7 | 6233 { |
6234 frame_T *curfr; | |
6235 frame_T *fr; | |
6236 int room; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6237 int left; // if TRUE, drag separator line left, otherwise right |
7 | 6238 int n; |
6239 | |
6240 fr = dragwin->w_frame; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6241 if (fr == topframe) // only one window (cannot happen?) |
7 | 6242 return; |
6243 curfr = fr; | |
6244 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6245 // When the parent frame is not a row of frames, its parent should be. |
7 | 6246 if (fr->fr_layout != FR_ROW) |
6247 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6248 if (fr == topframe) // only a column of windows (cannot happen?) |
7 | 6249 return; |
6250 curfr = fr; | |
6251 fr = fr->fr_parent; | |
6252 } | |
6253 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6254 // 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
|
6255 // frame instead. |
7 | 6256 while (curfr->fr_next == NULL) |
6257 { | |
6258 if (fr == topframe) | |
6259 break; | |
6260 curfr = fr; | |
6261 fr = fr->fr_parent; | |
6262 if (fr != topframe) | |
6263 { | |
6264 curfr = fr; | |
6265 fr = fr->fr_parent; | |
6266 } | |
6267 } | |
6268 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6269 if (offset < 0) // drag left |
7 | 6270 { |
6271 left = TRUE; | |
6272 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6273 // sum up the room of the current frame and left of it |
7 | 6274 room = 0; |
6275 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
6276 { | |
6277 room += fr->fr_width - frame_minwidth(fr, NULL); | |
6278 if (fr == curfr) | |
6279 break; | |
6280 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6281 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
|
6282 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6283 else // drag right |
7 | 6284 { |
6285 left = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6286 // sum up the room of frames right of the current one |
7 | 6287 room = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6288 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 6289 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
|
6290 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
|
6291 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6292 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6293 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
|
6294 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
|
6295 if (offset <= 0) // No room at all, quit. |
7 | 6296 return; |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
6297 if (fr == NULL) |
27440
1118a65c9bc7
patch 8.2.4248: no proper test for moving the window separator
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6298 // This can happen when calling win_move_separator() on the rightmost |
1118a65c9bc7
patch 8.2.4248: no proper test for moving the window separator
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6299 // window. Just don't do anything. |
1118a65c9bc7
patch 8.2.4248: no proper test for moving the window separator
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
6300 return; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6301 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6302 // grow frame fr by offset lines |
779 | 6303 frame_new_width(fr, fr->fr_width + offset, left, FALSE); |
7 | 6304 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6305 // shrink other frames: current and at the left or at the right |
7 | 6306 if (left) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6307 fr = curfr; // current frame gets smaller |
7 | 6308 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6309 fr = curfr->fr_next; // next frame gets smaller |
7 | 6310 |
6311 while (fr != NULL && offset > 0) | |
6312 { | |
6313 n = frame_minwidth(fr, NULL); | |
6314 if (fr->fr_width - offset <= n) | |
6315 { | |
6316 offset -= fr->fr_width - n; | |
779 | 6317 frame_new_width(fr, n, !left, FALSE); |
7 | 6318 } |
6319 else | |
6320 { | |
779 | 6321 frame_new_width(fr, fr->fr_width - offset, !left, FALSE); |
7 | 6322 break; |
6323 } | |
6324 if (left) | |
6325 fr = fr->fr_prev; | |
6326 else | |
6327 fr = fr->fr_next; | |
6328 } | |
6329 (void)win_comp_pos(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6330 redraw_all_later(UPD_NOT_VALID); |
7 | 6331 } |
6332 | |
2665 | 6333 #define FRACTION_MULT 16384L |
6334 | |
6335 /* | |
6336 * 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
|
6337 * Has no effect when the window is less than two lines. |
2665 | 6338 */ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
6339 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6340 set_fraction(win_T *wp) |
2665 | 6341 { |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
6342 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
|
6343 // 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
|
6344 // 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
|
6345 // 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
|
6346 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
|
6347 + FRACTION_MULT / 2) / (long)wp->w_height; |
2665 | 6348 } |
6349 | |
7 | 6350 /* |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6351 * Handle scroll position for 'nosplitscroll'. Replaces scroll_to_fraction() |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6352 * call from win_new_height(). Instead we iterate over all windows in a |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6353 * tabpage and calculate the new scroll position. |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6354 * TODO: Ensure this also works with wrapped lines. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6355 * Requires topline to be able to be set to a bufferline with some |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6356 * offset(row-wise scrolling/smoothscroll). |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6357 */ |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6358 static void |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6359 win_fix_scroll(int resize) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6360 { |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6361 int diff; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6362 win_T *wp; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6363 linenr_T lnum; |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6364 |
30439
e3091fc473a1
patch 9.0.0555: scrolling with 'nosplitscroll' in callback changing curwin
Bram Moolenaar <Bram@vim.org>
parents:
30429
diff
changeset
|
6365 skip_update_topline = TRUE; // avoid scrolling in curs_columns() |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6366 FOR_ALL_WINDOWS(wp) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6367 { |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
6368 // Skip when window height has not changed. |
30300
b9d07900b0b8
patch 9.0.0486: text scrolled with 'nosplitscroll', autocmd win and help
Bram Moolenaar <Bram@vim.org>
parents:
30285
diff
changeset
|
6369 if (wp->w_height != wp->w_prev_height) |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6370 { |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6371 // If window has moved update botline to keep the same screenlines. |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6372 if (wp->w_winrow != wp->w_prev_winrow) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6373 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6374 lnum = wp->w_cursor.lnum; |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6375 diff = (wp->w_winrow - wp->w_prev_winrow) |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6376 + (wp->w_height - wp->w_prev_height); |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6377 wp->w_cursor.lnum = wp->w_botline - 1; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6378 // Add difference in height and row to botline. |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6379 if (diff > 0) |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6380 cursor_down_inner(wp, diff); |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6381 else |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6382 cursor_up_inner(wp, -diff); |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6383 // Bring the new cursor position to the bottom of the screen. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6384 wp->w_fraction = FRACTION_MULT; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6385 scroll_to_fraction(wp, wp->w_prev_height); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6386 wp->w_cursor.lnum = lnum; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6387 } |
30439
e3091fc473a1
patch 9.0.0555: scrolling with 'nosplitscroll' in callback changing curwin
Bram Moolenaar <Bram@vim.org>
parents:
30429
diff
changeset
|
6388 else if (wp == curwin) |
e3091fc473a1
patch 9.0.0555: scrolling with 'nosplitscroll' in callback changing curwin
Bram Moolenaar <Bram@vim.org>
parents:
30429
diff
changeset
|
6389 wp->w_valid &= ~VALID_CROW; |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6390 invalidate_botline_win(wp); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6391 validate_botline_win(wp); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6392 } |
30251
0288baaedf91
patch 9.0.0461: 'scroll' is not always updated
Bram Moolenaar <Bram@vim.org>
parents:
30239
diff
changeset
|
6393 win_comp_scroll(wp); |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6394 wp->w_prev_height = wp->w_height; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6395 wp->w_prev_winrow = wp->w_winrow; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6396 } |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
6397 skip_update_topline = FALSE; |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6398 // Ensure cursor is valid when not in normal mode or when resized. |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
6399 if (!(get_real_state() & (MODE_NORMAL|MODE_CMDLINE|MODE_TERMINAL))) |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6400 win_fix_cursor(FALSE); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6401 else if (resize) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6402 win_fix_cursor(TRUE); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6403 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6404 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6405 /* |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6406 * Make sure the cursor position is valid for 'nosplitscroll'. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6407 * If it is not, put the cursor position in the jumplist and move it. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6408 * If we are not in normal mode, scroll to make valid instead. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6409 */ |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6410 static void |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6411 win_fix_cursor(int normal) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6412 { |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6413 long so = get_scrolloff_value(); |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6414 win_T *wp = curwin; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6415 linenr_T nlnum = 0; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6416 linenr_T lnum = wp->w_cursor.lnum; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6417 linenr_T bot; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6418 linenr_T top; |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6419 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6420 if (wp->w_buffer->b_ml.ml_line_count < wp->w_height) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6421 return; |
30267
be97adfeac3a
patch 9.0.0469: cursor moves if cmdwin is closed when 'splitscroll' is off
Bram Moolenaar <Bram@vim.org>
parents:
30251
diff
changeset
|
6422 #ifdef FEAT_CMDWIN |
be97adfeac3a
patch 9.0.0469: cursor moves if cmdwin is closed when 'splitscroll' is off
Bram Moolenaar <Bram@vim.org>
parents:
30251
diff
changeset
|
6423 if (skip_win_fix_cursor) |
be97adfeac3a
patch 9.0.0469: cursor moves if cmdwin is closed when 'splitscroll' is off
Bram Moolenaar <Bram@vim.org>
parents:
30251
diff
changeset
|
6424 return; |
be97adfeac3a
patch 9.0.0469: cursor moves if cmdwin is closed when 'splitscroll' is off
Bram Moolenaar <Bram@vim.org>
parents:
30251
diff
changeset
|
6425 #endif |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6426 // Determine valid cursor range. |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6427 so = MIN(wp->w_height / 2, so); |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6428 wp->w_cursor.lnum = wp->w_topline; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6429 top = cursor_down_inner(wp, so); |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6430 wp->w_cursor.lnum = wp->w_botline - 1; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6431 bot = cursor_up_inner(wp, so); |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6432 // Check if cursor position is above or below valid cursor range. |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6433 if (lnum > bot && (wp->w_botline - wp->w_buffer->b_ml.ml_line_count) != 1) |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6434 nlnum = bot; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6435 else if (lnum < top && wp->w_topline != 1) |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6436 nlnum = (so == wp->w_height / 2) ? bot : top; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6437 |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6438 wp->w_cursor.lnum = lnum; |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6439 |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6440 if (nlnum) // Cursor is invalid for current scroll position. |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6441 { |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6442 if (normal) // Save to jumplist and set cursor to avoid scrolling. |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6443 { |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6444 setmark('\''); |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6445 wp->w_cursor.lnum = nlnum; |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6446 curs_columns(TRUE); // validate w_wrow |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6447 } |
30535
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6448 else // Scroll instead when not in normal mode. |
04df44c52d65
patch 9.0.0603: with 'nosplitscroll' folds are not handled correctly
Bram Moolenaar <Bram@vim.org>
parents:
30525
diff
changeset
|
6449 { |
30285
9edb1a8161ac
patch 9.0.0478: test for 'splitscroll' takes too much time
Bram Moolenaar <Bram@vim.org>
parents:
30267
diff
changeset
|
6450 wp->w_fraction = 0.5 * FRACTION_MULT; |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6451 scroll_to_fraction(wp, wp->w_prev_height); |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
6452 validate_botline_win(curwin); |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6453 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6454 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6455 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6456 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6457 /* |
7 | 6458 * 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
|
6459 * "height" excludes any window toolbar. |
7 | 6460 * This takes care of the things inside the window, not what happens to the |
6461 * window position, the frame or to other windows. | |
6462 */ | |
3697 | 6463 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6464 win_new_height(win_T *wp, int height) |
7 | 6465 { |
5875 | 6466 int prev_height = wp->w_height; |
7 | 6467 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6468 // 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
|
6469 // Will equalize heights soon to fix it. |
7 | 6470 if (height < 0) |
6471 height = 0; | |
826 | 6472 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
|
6473 return; // nothing to do |
7 | 6474 |
5875 | 6475 if (wp->w_height > 0) |
6476 { | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6477 if (wp == curwin && p_spsc) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6478 // 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
|
6479 // call win_new_height() recursively. |
5969 | 6480 validate_cursor(); |
6481 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
|
6482 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
|
6483 // to avoid the following to mess things up. |
5875 | 6484 if (wp->w_wrow != wp->w_prev_fraction_row) |
6485 set_fraction(wp); | |
6486 } | |
7 | 6487 |
6488 wp->w_height = height; | |
6489 wp->w_skipcol = 0; | |
6490 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6491 // 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
|
6492 // values might be invalid. |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6493 if (!exiting && p_spsc) |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
6494 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
|
6495 } |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6496 |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6497 void |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6498 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
|
6499 { |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6500 linenr_T lnum; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6501 int sline, line_size; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6502 int height = wp->w_height; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6503 |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6504 // 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
|
6505 // - window height is 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6506 // - '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
|
6507 // - 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
|
6508 // is visible. |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6509 if (height > 0 |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
6510 && (!wp->w_p_scb || wp == curwin) |
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
6511 && (height < wp->w_buffer->b_ml.ml_line_count || wp->w_topline > 1)) |
7 | 6512 { |
47 | 6513 /* |
6514 * Find a value for w_topline that shows the cursor at the same | |
6515 * relative position in the window as before (more or less). | |
6516 */ | |
7 | 6517 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
|
6518 if (lnum < 1) // can happen when starting up |
7 | 6519 lnum = 1; |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6520 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
|
6521 / FRACTION_MULT; |
7 | 6522 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1; |
6523 sline = wp->w_wrow - line_size; | |
1023 | 6524 |
6525 if (sline >= 0) | |
6526 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6527 // Make sure the whole cursor line is visible, if possible. |
1023 | 6528 int rows = plines_win(wp, lnum, FALSE); |
6529 | |
6530 if (sline > wp->w_height - rows) | |
6531 { | |
6532 sline = wp->w_height - rows; | |
6533 wp->w_wrow -= rows - line_size; | |
6534 } | |
6535 } | |
6536 | |
7 | 6537 if (sline < 0) |
6538 { | |
6539 /* | |
6540 * Cursor line would go off top of screen if w_wrow was this high. | |
1023 | 6541 * Make cursor line the first line in the window. If not enough |
6542 * room use w_skipcol; | |
7 | 6543 */ |
6544 wp->w_wrow = line_size; | |
1023 | 6545 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
|
6546 && (wp->w_width - win_col_off(wp)) > 0) |
1023 | 6547 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6548 wp->w_skipcol += wp->w_width - win_col_off(wp); |
1023 | 6549 --wp->w_wrow; |
6550 while (wp->w_wrow >= wp->w_height) | |
6551 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6552 wp->w_skipcol += wp->w_width - win_col_off(wp) |
1023 | 6553 + win_col_off2(wp); |
6554 --wp->w_wrow; | |
6555 } | |
6556 } | |
7 | 6557 } |
5936 | 6558 else if (sline > 0) |
7 | 6559 { |
1023 | 6560 while (sline > 0 && lnum > 1) |
7 | 6561 { |
6562 #ifdef FEAT_FOLDING | |
6563 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); | |
6564 if (lnum == 1) | |
6565 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6566 // first line in buffer is folded |
7 | 6567 line_size = 1; |
6568 --sline; | |
6569 break; | |
6570 } | |
6571 #endif | |
6572 --lnum; | |
6573 #ifdef FEAT_DIFF | |
6574 if (lnum == wp->w_topline) | |
6575 line_size = plines_win_nofill(wp, lnum, TRUE) | |
6576 + wp->w_topfill; | |
6577 else | |
6578 #endif | |
6579 line_size = plines_win(wp, lnum, TRUE); | |
6580 sline -= line_size; | |
6581 } | |
47 | 6582 |
7 | 6583 if (sline < 0) |
6584 { | |
6585 /* | |
6586 * Line we want at top would go off top of screen. Use next | |
6587 * line instead. | |
6588 */ | |
6589 #ifdef FEAT_FOLDING | |
6590 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); | |
6591 #endif | |
6592 lnum++; | |
6593 wp->w_wrow -= line_size + sline; | |
6594 } | |
5936 | 6595 else if (sline > 0) |
7 | 6596 { |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6597 // First line of file reached, use that as topline. |
7 | 6598 lnum = 1; |
6599 wp->w_wrow -= sline; | |
6600 } | |
6601 } | |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6602 set_topline(wp, lnum); |
7 | 6603 } |
6604 | |
6605 if (wp == curwin) | |
6606 { | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6607 if (p_spsc && get_scrolloff_value()) |
7 | 6608 update_topline(); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6609 curs_columns(FALSE); // validate w_wrow |
7 | 6610 } |
5875 | 6611 if (prev_height > 0) |
6612 wp->w_prev_fraction_row = wp->w_wrow; | |
7 | 6613 |
6614 win_comp_scroll(wp); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6615 redraw_win_later(wp, UPD_SOME_VALID); |
7 | 6616 wp->w_redr_status = TRUE; |
6617 invalidate_botline_win(wp); | |
6618 } | |
6619 | |
6620 /* | |
6621 * Set the width of a window. | |
6622 */ | |
3697 | 6623 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6624 win_new_width(win_T *wp, int width) |
7 | 6625 { |
30525
6fa498af368d
patch 9.0.0598: using negative array index with negative width window
Bram Moolenaar <Bram@vim.org>
parents:
30439
diff
changeset
|
6626 // Should we give an error if width < 0? |
6fa498af368d
patch 9.0.0598: using negative array index with negative width window
Bram Moolenaar <Bram@vim.org>
parents:
30439
diff
changeset
|
6627 wp->w_width = width < 0 ? 0 : width; |
7 | 6628 wp->w_lines_valid = 0; |
6629 changed_line_abv_curs_win(wp); | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6630 // Handled in win_fix_scroll() |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6631 if (p_spsc) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6632 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6633 invalidate_botline_win(wp); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6634 if (wp == curwin) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6635 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6636 update_topline(); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6637 curs_columns(TRUE); // validate w_wrow |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6638 } |
7 | 6639 } |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6640 redraw_win_later(wp, UPD_NOT_VALID); |
7 | 6641 wp->w_redr_status = TRUE; |
6642 } | |
6643 | |
6644 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6645 win_comp_scroll(win_T *wp) |
7 | 6646 { |
23386
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6647 #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
|
6648 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
|
6649 #endif |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6650 |
7 | 6651 wp->w_p_scr = ((unsigned)wp->w_height >> 1); |
6652 if (wp->w_p_scr == 0) | |
6653 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
|
6654 #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
|
6655 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
|
6656 { |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6657 // 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
|
6658 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
|
6659 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
|
6660 } |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6661 #endif |
7 | 6662 } |
6663 | |
6664 /* | |
6665 * command_height: called whenever p_ch has been changed | |
6666 */ | |
6667 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6668 command_height(void) |
7 | 6669 { |
6670 int h; | |
6671 frame_T *frp; | |
824 | 6672 int old_p_ch = curtab->tp_ch_used; |
6673 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6674 // 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
|
6675 // 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
|
6676 // p_ch was changed in another tab page. |
824 | 6677 curtab->tp_ch_used = p_ch; |
170 | 6678 |
29700
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6679 // If the space for the command line is already more than 'cmdheight' there |
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6680 // is nothing to do (window size must have decreased). |
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6681 if (p_ch > old_p_ch && cmdline_row <= Rows - p_ch) |
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6682 return; |
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6683 |
29702
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6684 // If cmdline_row is smaller than what it is supposed to be for 'cmdheight' |
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6685 // then set old_p_ch to what it would be, so that the windows get resized |
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6686 // properly for the new value. |
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6687 if (cmdline_row < Rows - p_ch) |
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6688 old_p_ch = Rows - cmdline_row; |
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6689 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6690 // Find bottom frame with width of screen. |
7 | 6691 frp = lastwin->w_frame; |
6692 while (frp->fr_width != Columns && frp->fr_parent != NULL) | |
6693 frp = frp->fr_parent; | |
6694 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6695 // Avoid changing the height of a window with 'winfixheight' set. |
7 | 6696 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF |
6697 && frp->fr_win->w_p_wfh) | |
6698 frp = frp->fr_prev; | |
6699 | |
6700 if (starting != NO_SCREEN) | |
6701 { | |
6702 cmdline_row = Rows - p_ch; | |
6703 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6704 if (p_ch > old_p_ch) // p_ch got bigger |
7 | 6705 { |
6706 while (p_ch > old_p_ch) | |
6707 { | |
6708 if (frp == NULL) | |
6709 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6710 emsg(_(e_not_enough_room)); |
7 | 6711 p_ch = old_p_ch; |
1404 | 6712 curtab->tp_ch_used = p_ch; |
7 | 6713 cmdline_row = Rows - p_ch; |
6714 break; | |
6715 } | |
6716 h = frp->fr_height - frame_minheight(frp, NULL); | |
6717 if (h > p_ch - old_p_ch) | |
6718 h = p_ch - old_p_ch; | |
6719 old_p_ch += h; | |
6720 frame_add_height(frp, -h); | |
6721 frp = frp->fr_prev; | |
6722 } | |
6723 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6724 // Recompute window positions. |
7 | 6725 (void)win_comp_pos(); |
6726 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6727 // clear the lines added to cmdline |
7 | 6728 if (full_screen) |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27251
diff
changeset
|
6729 screen_fill(cmdline_row, (int)Rows, 0, |
7 | 6730 (int)Columns, ' ', ' ', 0); |
6731 msg_row = cmdline_row; | |
6732 redraw_cmdline = TRUE; | |
6733 return; | |
6734 } | |
6735 | |
6736 if (msg_row < cmdline_row) | |
6737 msg_row = cmdline_row; | |
6738 redraw_cmdline = TRUE; | |
6739 } | |
6740 frame_add_height(frp, (int)(old_p_ch - p_ch)); | |
6741 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6742 // Recompute window positions. |
7 | 6743 if (frp != lastwin->w_frame) |
6744 (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
|
6745 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6746 |
7 | 6747 /* |
6748 * Resize frame "frp" to be "n" lines higher (negative for less high). | |
6749 * Also resize the frames it is contained in. | |
6750 */ | |
6751 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6752 frame_add_height(frame_T *frp, int n) |
7 | 6753 { |
6754 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE); | |
6755 for (;;) | |
6756 { | |
6757 frp = frp->fr_parent; | |
6758 if (frp == NULL) | |
6759 break; | |
6760 frp->fr_height += n; | |
6761 } | |
6762 } | |
6763 | |
6764 /* | |
6765 * Add or remove a status line for the bottom window(s), according to the | |
6766 * value of 'laststatus'. | |
6767 */ | |
6768 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6769 last_status( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6770 int morewin) // pretend there are two or more windows |
7 | 6771 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6772 // Don't make a difference between horizontal or vertical split. |
7 | 6773 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
|
6774 || (p_ls == 1 && (morewin || !ONE_WINDOW)))); |
7 | 6775 } |
6776 | |
6777 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6778 last_status_rec(frame_T *fr, int statusline) |
7 | 6779 { |
6780 frame_T *fp; | |
6781 win_T *wp; | |
6782 | |
6783 if (fr->fr_layout == FR_LEAF) | |
6784 { | |
6785 wp = fr->fr_win; | |
6786 if (wp->w_status_height != 0 && !statusline) | |
6787 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6788 // remove status line |
7 | 6789 win_new_height(wp, wp->w_height + 1); |
6790 wp->w_status_height = 0; | |
6791 comp_col(); | |
6792 } | |
6793 else if (wp->w_status_height == 0 && statusline) | |
6794 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6795 // Find a frame to take a line from. |
7 | 6796 fp = fr; |
6797 while (fp->fr_height <= frame_minheight(fp, NULL)) | |
6798 { | |
6799 if (fp == topframe) | |
6800 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6801 emsg(_(e_not_enough_room)); |
7 | 6802 return; |
6803 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6804 // 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
|
6805 // the top or in a row of frames: go to parent. |
7 | 6806 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL) |
6807 fp = fp->fr_prev; | |
6808 else | |
6809 fp = fp->fr_parent; | |
6810 } | |
6811 wp->w_status_height = 1; | |
6812 if (fp != fr) | |
6813 { | |
6814 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE); | |
6815 frame_fix_height(wp); | |
6816 (void)win_comp_pos(); | |
6817 } | |
6818 else | |
6819 win_new_height(wp, wp->w_height - 1); | |
6820 comp_col(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6821 redraw_all_later(UPD_SOME_VALID); |
7 | 6822 } |
30239
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
6823 // Set prev_height when difference is due to 'laststatus'. |
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
6824 if (abs(wp->w_height - wp->w_prev_height) == 1) |
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
6825 wp->w_prev_height = wp->w_height; |
7 | 6826 } |
6827 else if (fr->fr_layout == FR_ROW) | |
6828 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6829 // 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
|
6830 FOR_ALL_FRAMES(fp, fr->fr_child) |
7 | 6831 last_status_rec(fp, statusline); |
6832 } | |
6833 else | |
6834 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6835 // horizontally split window, set status line for last one |
7 | 6836 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
6837 ; | |
6838 last_status_rec(fp, statusline); | |
6839 } | |
6840 } | |
6841 | |
667 | 6842 /* |
668 | 6843 * Return the number of lines used by the tab page line. |
667 | 6844 */ |
6845 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6846 tabline_height(void) |
667 | 6847 { |
685 | 6848 #ifdef FEAT_GUI_TABLINE |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6849 // When the GUI has the tabline then this always returns zero. |
685 | 6850 if (gui_use_tabline()) |
6851 return 0; | |
6852 #endif | |
675 | 6853 switch (p_stal) |
668 | 6854 { |
6855 case 0: return 0; | |
6856 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1; | |
6857 } | |
667 | 6858 return 1; |
6859 } | |
6860 | |
7 | 6861 /* |
6862 * Return the minimal number of rows that is needed on the screen to display | |
6863 * the current number of windows. | |
6864 */ | |
6865 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6866 min_rows(void) |
7 | 6867 { |
6868 int total; | |
671 | 6869 tabpage_T *tp; |
6870 int n; | |
7 | 6871 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6872 if (firstwin == NULL) // not initialized yet |
7 | 6873 return MIN_LINES; |
6874 | |
671 | 6875 total = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6876 FOR_ALL_TABPAGES(tp) |
671 | 6877 { |
6878 n = frame_minheight(tp->tp_topframe, NULL); | |
6879 if (total < n) | |
6880 total = n; | |
6881 } | |
685 | 6882 total += tabline_height(); |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6883 total += 1; // count the room for the command line |
7 | 6884 return total; |
6885 } | |
6886 | |
6887 /* | |
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
|
6888 * Return TRUE if there is only one window and only one tab page, not |
672 | 6889 * 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
|
6890 * Does not count unlisted windows. |
7 | 6891 */ |
6892 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6893 only_one_window(void) |
7 | 6894 { |
6895 int count = 0; | |
6896 win_T *wp; | |
6897 | |
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
|
6898 #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
|
6899 // 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
|
6900 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
|
6901 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
|
6902 #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
|
6903 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6904 // If there is another tab page there always is another window. |
667 | 6905 if (first_tabpage->tp_next != NULL) |
6906 return FALSE; | |
6907 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6908 FOR_ALL_WINDOWS(wp) |
4021 | 6909 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
|
6910 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf)) |
7 | 6911 # ifdef FEAT_QUICKFIX |
6912 || wp->w_p_pvw | |
6913 # endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
6914 ) || wp == curwin) && wp != aucmd_win) |
7 | 6915 ++count; |
6916 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
|
6917 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6918 |
7 | 6919 /* |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6920 * Implementation of check_lnums() and check_lnums_nested(). |
7 | 6921 */ |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6922 static void |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6923 check_lnums_both(int do_curwin, int nested) |
7 | 6924 { |
6925 win_T *wp; | |
671 | 6926 tabpage_T *tp; |
6927 | |
6928 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7 | 6929 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf) |
6930 { | |
29505
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6931 int need_adjust; |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6932 |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6933 if (!nested) |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6934 { |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6935 // save the original cursor position and topline |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6936 wp->w_save_cursor.w_cursor_save = wp->w_cursor; |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6937 wp->w_save_cursor.w_topline_save = wp->w_topline; |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6938 } |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6939 |
29505
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6940 need_adjust = wp->w_cursor.lnum > curbuf->b_ml.ml_line_count; |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6941 if (need_adjust) |
7 | 6942 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
29505
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6943 if (need_adjust || !nested) |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6944 // save the (corrected) cursor position |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6945 wp->w_save_cursor.w_cursor_corr = wp->w_cursor; |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6946 |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6947 need_adjust = wp->w_topline > curbuf->b_ml.ml_line_count; |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6948 if (need_adjust) |
7 | 6949 wp->w_topline = curbuf->b_ml.ml_line_count; |
29505
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6950 if (need_adjust || !nested) |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6951 // save the (corrected) topline |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6952 wp->w_save_cursor.w_topline_corr = wp->w_topline; |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6953 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6954 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6955 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6956 /* |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6957 * Correct the cursor line number in other windows. Used after changing the |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6958 * current buffer, and before applying autocommands. |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6959 * When "do_curwin" is TRUE, also check current window. |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6960 */ |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6961 void |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6962 check_lnums(int do_curwin) |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6963 { |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6964 check_lnums_both(do_curwin, FALSE); |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6965 } |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6966 |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6967 /* |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6968 * Like check_lnums() but for when check_lnums() was already called. |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6969 */ |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6970 void |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6971 check_lnums_nested(int do_curwin) |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6972 { |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6973 check_lnums_both(do_curwin, TRUE); |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6974 } |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6975 |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6976 /* |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6977 * 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
|
6978 * 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
|
6979 */ |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6980 void |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6981 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
|
6982 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6983 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
|
6984 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
|
6985 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6986 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
|
6987 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
|
6988 { |
29471
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6989 // Restore the value if the autocommand didn't change it and it was |
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6990 // set. |
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6991 if (EQUAL_POS(wp->w_save_cursor.w_cursor_corr, wp->w_cursor) |
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6992 && wp->w_save_cursor.w_cursor_save.lnum != 0) |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6993 wp->w_cursor = wp->w_save_cursor.w_cursor_save; |
29471
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6994 if (wp->w_save_cursor.w_topline_corr == wp->w_topline |
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6995 && wp->w_save_cursor.w_topline_save != 0) |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6996 wp->w_topline = wp->w_save_cursor.w_topline_save; |
7 | 6997 } |
6998 } | |
6999 | |
7000 /* | |
7001 * A snapshot of the window sizes, to restore them after closing the help | |
7002 * window. | |
7003 * Only these fields are used: | |
7004 * fr_layout | |
7005 * fr_width | |
7006 * fr_height | |
7007 * fr_next | |
7008 * fr_child | |
7009 * fr_win (only valid for the old curwin, NULL otherwise) | |
7010 */ | |
7011 | |
7012 /* | |
7013 * Create a snapshot of the current frame sizes. | |
7014 */ | |
1906 | 7015 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7016 make_snapshot(int idx) |
7 | 7017 { |
1906 | 7018 clear_snapshot(curtab, idx); |
7019 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); | |
7 | 7020 } |
7021 | |
7022 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7023 make_snapshot_rec(frame_T *fr, frame_T **frp) |
7 | 7024 { |
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
|
7025 *frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 7026 if (*frp == NULL) |
7027 return; | |
7028 (*frp)->fr_layout = fr->fr_layout; | |
7029 (*frp)->fr_width = fr->fr_width; | |
7030 (*frp)->fr_height = fr->fr_height; | |
7031 if (fr->fr_next != NULL) | |
7032 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next)); | |
7033 if (fr->fr_child != NULL) | |
7034 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child)); | |
7035 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin) | |
7036 (*frp)->fr_win = curwin; | |
7037 } | |
7038 | |
7039 /* | |
7040 * Remove any existing snapshot. | |
7041 */ | |
7042 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7043 clear_snapshot(tabpage_T *tp, int idx) |
7 | 7044 { |
1906 | 7045 clear_snapshot_rec(tp->tp_snapshot[idx]); |
7046 tp->tp_snapshot[idx] = NULL; | |
7 | 7047 } |
7048 | |
7049 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7050 clear_snapshot_rec(frame_T *fr) |
7 | 7051 { |
7052 if (fr != NULL) | |
7053 { | |
7054 clear_snapshot_rec(fr->fr_next); | |
7055 clear_snapshot_rec(fr->fr_child); | |
7056 vim_free(fr); | |
7057 } | |
7058 } | |
7059 | |
7060 /* | |
28688
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7061 * Traverse a snapshot to find the previous curwin. |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7062 */ |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7063 static win_T * |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7064 get_snapshot_curwin_rec(frame_T *ft) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7065 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7066 win_T *wp; |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7067 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7068 if (ft->fr_next != NULL) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7069 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7070 if ((wp = get_snapshot_curwin_rec(ft->fr_next)) != NULL) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7071 return wp; |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7072 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7073 if (ft->fr_child != NULL) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7074 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7075 if ((wp = get_snapshot_curwin_rec(ft->fr_child)) != NULL) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7076 return wp; |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7077 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7078 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7079 return ft->fr_win; |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7080 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7081 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7082 /* |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7083 * Return the current window stored in the snapshot or NULL. |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7084 */ |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7085 static win_T * |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7086 get_snapshot_curwin(int idx) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7087 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7088 if (curtab->tp_snapshot[idx] == NULL) |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7089 return NULL; |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7090 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7091 return get_snapshot_curwin_rec(curtab->tp_snapshot[idx]); |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7092 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7093 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7094 /* |
7 | 7095 * Restore a previously created snapshot, if there is any. |
7096 * This is only done if the screen size didn't change and the window layout is | |
7097 * still the same. | |
7098 */ | |
1906 | 7099 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7100 restore_snapshot( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7101 int idx, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
7102 int close_curwin) // closing current window |
7 | 7103 { |
7104 win_T *wp; | |
7105 | |
1906 | 7106 if (curtab->tp_snapshot[idx] != NULL |
7107 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width | |
7108 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height | |
7109 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) | |
7110 { | |
7111 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); | |
7 | 7112 win_comp_pos(); |
7113 if (wp != NULL && close_curwin) | |
7114 win_goto(wp); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
7115 redraw_all_later(UPD_NOT_VALID); |
7 | 7116 } |
1906 | 7117 clear_snapshot(curtab, idx); |
7 | 7118 } |
7119 | |
7120 /* | |
7121 * 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
|
7122 * and same children. And the window pointer is valid. |
7 | 7123 */ |
7124 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7125 check_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 7126 { |
7127 if (sn->fr_layout != fr->fr_layout | |
7128 || (sn->fr_next == NULL) != (fr->fr_next == NULL) | |
7129 || (sn->fr_child == NULL) != (fr->fr_child == NULL) | |
7130 || (sn->fr_next != NULL | |
7131 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL) | |
7132 || (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
|
7133 && 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
|
7134 || (sn->fr_win != NULL && !win_valid(sn->fr_win))) |
7 | 7135 return FAIL; |
7136 return OK; | |
7137 } | |
7138 | |
7139 /* | |
7140 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all | |
7141 * following frames and children. | |
7142 * Returns a pointer to the old current window, or NULL. | |
7143 */ | |
7144 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7145 restore_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 7146 { |
7147 win_T *wp = NULL; | |
7148 win_T *wp2; | |
7149 | |
7150 fr->fr_height = sn->fr_height; | |
7151 fr->fr_width = sn->fr_width; | |
7152 if (fr->fr_layout == FR_LEAF) | |
7153 { | |
7154 frame_new_height(fr, fr->fr_height, FALSE, FALSE); | |
779 | 7155 frame_new_width(fr, fr->fr_width, FALSE, FALSE); |
7 | 7156 wp = sn->fr_win; |
7157 } | |
7158 if (sn->fr_next != NULL) | |
7159 { | |
7160 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next); | |
7161 if (wp2 != NULL) | |
7162 wp = wp2; | |
7163 } | |
7164 if (sn->fr_child != NULL) | |
7165 { | |
7166 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child); | |
7167 if (wp2 != NULL) | |
7168 wp = wp2; | |
7169 } | |
7170 return wp; | |
7171 } | |
7172 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
7173 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 7174 /* |
7175 * Return TRUE if there is any vertically split window. | |
7176 */ | |
7177 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7178 win_hasvertsplit(void) |
7 | 7179 { |
7180 frame_T *fr; | |
7181 | |
7182 if (topframe->fr_layout == FR_ROW) | |
7183 return TRUE; | |
7184 | |
7185 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
|
7186 FOR_ALL_FRAMES(fr, topframe->fr_child) |
7 | 7187 if (fr->fr_layout == FR_ROW) |
7188 return TRUE; | |
7189 | |
7190 return FALSE; | |
7191 } | |
7192 #endif | |
1326 | 7193 |
4379 | 7194 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
7195 int | |
4401 | 7196 get_win_number(win_T *wp, win_T *first_win) |
4379 | 7197 { |
7198 int i = 1; | |
7199 win_T *w; | |
7200 | |
4401 | 7201 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w)) |
4379 | 7202 ++i; |
7203 | |
7204 if (w == NULL) | |
7205 return 0; | |
7206 else | |
7207 return i; | |
7208 } | |
4401 | 7209 |
7210 int | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4918
diff
changeset
|
7211 get_tab_number(tabpage_T *tp UNUSED) |
4401 | 7212 { |
7213 int i = 1; | |
7214 tabpage_T *t; | |
7215 | |
7216 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next) | |
7217 ++i; | |
7218 | |
7219 if (t == NULL) | |
7220 return 0; | |
7221 else | |
7222 return i; | |
7223 } | |
7224 #endif | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7225 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7226 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7227 * 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
|
7228 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7229 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7230 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
|
7231 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7232 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7233 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7234 if (topfrp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7235 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7236 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7237 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
|
7238 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7239 if (frp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7240 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7241 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7242 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7243 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
7244 |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7245 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7246 * 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
|
7247 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7248 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7249 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
|
7250 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7251 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7252 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7253 if (topfrp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7254 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7255 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7256 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
|
7257 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7258 if (frp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7259 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7260 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7261 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7262 } |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7263 |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7264 #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
|
7265 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7266 * 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
|
7267 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7268 static int |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7269 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
|
7270 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7271 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
|
7272 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7273 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7274 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7275 * 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
|
7276 * 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
|
7277 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7278 char * |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7279 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
|
7280 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7281 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
|
7282 int col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7283 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
|
7284 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
|
7285 int i; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7286 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
|
7287 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7288 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
|
7289 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
|
7290 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7291 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
|
7292 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7293 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
|
7294 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7295 // -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
|
7296 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
|
7297 ++s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7298 if (!VIM_ISDIGIT(*s)) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7299 return e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7300 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
|
7301 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
|
7302 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
|
7303 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
|
7304 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
|
7305 goto skip; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7306 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7307 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
|
7308 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
|
7309 else |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7310 return e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7311 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
|
7312 skip: |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7313 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
|
7314 break; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7315 if (*s != ',') |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7316 return e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7317 if (*++s == NUL) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7318 return e_invalid_argument; // illegal trailing comma as in "set cc=80," |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7319 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7320 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7321 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
|
7322 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
|
7323 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
|
7324 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7325 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7326 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
|
7327 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
|
7328 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7329 // 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
|
7330 // win_line() |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7331 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
|
7332 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7333 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
|
7334 // skip duplicates |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7335 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
|
7336 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
|
7337 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
|
7338 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7339 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7340 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7341 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
|
7342 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7343 #endif |