Mercurial > vim
annotate src/window.c @ 30500:cd643d74e4e0
Added tag v9.0.0585 for changeset e24aa4284df62cc6f2993fb9ddbbf1147d002bfd
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 25 Sep 2022 19:45:05 +0200 |
parents | e3091fc473a1 |
children | 6fa498af368d |
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); | |
2092 new_size += next_curwin_size; | |
779 | 2093 room -= new_size - next_curwin_size; |
7 | 2094 } |
779 | 2095 else |
2096 room -= new_size; | |
2097 new_size += n; | |
7 | 2098 } |
2099 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2100 // 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
|
2101 // window, unless equalizing all frames. |
7 | 2102 if (!current || dir != 'v' || topfr->fr_parent != NULL |
2103 || (new_size != fr->fr_width) | |
2104 || frame_has_win(fr, next_curwin)) | |
2105 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
779 | 2106 new_size, height); |
2107 col += new_size; | |
2108 width -= new_size; | |
7 | 2109 totwincount -= wincount; |
2110 } | |
2111 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2112 else // topfr->fr_layout == FR_COL |
7 | 2113 { |
2114 topfr->fr_width = width; | |
2115 topfr->fr_height = height; | |
2116 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2117 if (dir != 'h') // equalize frame heights |
7 | 2118 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2119 // Compute maximum number of windows vertically in this frame. |
7 | 2120 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
|
2121 // add one for the bottom window if it doesn't have a statusline |
7 | 2122 if (row + height == cmdline_row && p_ls == 0) |
2123 extra_sep = 1; | |
2124 else | |
2125 extra_sep = 0; | |
2126 totwincount = (n + extra_sep) / (p_wmh + 1); | |
2127 has_next_curwin = frame_has_win(topfr, next_curwin); | |
2128 | |
2129 /* | |
2130 * Compute height for "next_curwin" window and room available for | |
2131 * other windows. | |
2132 * "m" is the minimal height when counting p_wh for "next_curwin". | |
2133 */ | |
2134 m = frame_minheight(topfr, next_curwin); | |
2135 room = height - m; | |
2136 if (room < 0) | |
2137 { | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2138 // 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
|
2139 // current window. |
7 | 2140 next_curwin_size = p_wh + room; |
2141 room = 0; | |
2142 } | |
2143 else | |
2144 { | |
2145 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
|
2146 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2147 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2148 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
|
2149 continue; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2150 // 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
|
2151 // possible. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2152 // 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
|
2153 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
|
2154 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
|
2155 if (frame_has_win(fr, next_curwin)) |
7 | 2156 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2157 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
|
2158 next_curwin_size = 0; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2159 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
|
2160 new_size = p_wh; |
7 | 2161 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2162 else |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2163 // 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
|
2164 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
|
2165 ? 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
|
2166 room -= new_size - n; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2167 if (room < 0) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2168 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2169 new_size += room; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2170 room = 0; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2171 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
2172 fr->fr_newheight = new_size; |
7 | 2173 } |
2174 if (next_curwin_size == -1) | |
2175 { | |
2176 if (!has_next_curwin) | |
2177 next_curwin_size = 0; | |
2178 else if (totwincount > 1 | |
2179 && (room + (totwincount - 2)) | |
2180 / (totwincount - 1) > p_wh) | |
2181 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2182 // 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
|
2183 // spread the room equally. |
834 | 2184 next_curwin_size = (room + p_wh |
2185 + (totwincount - 1) * p_wmh | |
7 | 2186 + (totwincount - 1)) / totwincount; |
2187 room -= next_curwin_size - p_wh; | |
2188 } | |
2189 else | |
2190 next_curwin_size = p_wh; | |
2191 } | |
2192 } | |
2193 | |
2194 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2195 --totwincount; // don't count curwin |
7 | 2196 } |
2197 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2198 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2199 { |
2200 wincount = 1; | |
2201 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
|
2202 // last frame gets all that remains (avoid roundoff error) |
7 | 2203 new_size = height; |
2204 else if (dir == 'h') | |
2205 new_size = fr->fr_height; | |
2206 else if (frame_fixed_height(fr)) | |
2207 { | |
2208 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
|
2209 wincount = 0; // doesn't count as a sizeable window |
7 | 2210 } |
2211 else | |
2212 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2213 // Compute the maximum number of windows vert. in "fr". |
7 | 2214 n = frame_minheight(fr, NOWIN); |
2215 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2216 / (p_wmh + 1); | |
2217 m = frame_minheight(fr, next_curwin); | |
2218 if (has_next_curwin) | |
2219 hnc = frame_has_win(fr, next_curwin); | |
2220 else | |
2221 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2222 if (hnc) // don't count next_curwin |
7 | 2223 --wincount; |
2224 if (totwincount == 0) | |
2225 new_size = room; | |
2226 else | |
2227 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
2228 / totwincount; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2229 if (hnc) // add next_curwin size |
7 | 2230 { |
2231 next_curwin_size -= p_wh - (m - n); | |
2232 new_size += next_curwin_size; | |
2233 room -= new_size - next_curwin_size; | |
2234 } | |
2235 else | |
2236 room -= new_size; | |
2237 new_size += n; | |
2238 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2239 // 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
|
2240 // window, unless equalizing all frames. |
7 | 2241 if (!current || dir != 'h' || topfr->fr_parent != NULL |
2242 || (new_size != fr->fr_height) | |
2243 || frame_has_win(fr, next_curwin)) | |
2244 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
2245 width, new_size); | |
2246 row += new_size; | |
2247 height -= new_size; | |
2248 totwincount -= wincount; | |
2249 } | |
2250 } | |
2251 } | |
2252 | |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2253 #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
|
2254 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
|
2255 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
|
2256 { |
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
|
2257 // 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
|
2258 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
|
2259 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
|
2260 |
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
|
2261 // 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
|
2262 // 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
|
2263 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
|
2264 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
|
2265 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
|
2266 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
|
2267 |
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 // 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
|
2269 // 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
|
2270 // 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
|
2271 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
|
2272 { |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2273 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
|
2274 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
|
2275 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
|
2276 } |
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
|
2277 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2278 |
22470
f7471450243c
patch 8.2.1783: try-catch test fails
Bram Moolenaar <Bram@vim.org>
parents:
22464
diff
changeset
|
2279 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
|
2280 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
|
2281 { |
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
|
2282 // 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
|
2283 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
|
2284 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
|
2285 |
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
|
2286 // 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
|
2287 // 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
|
2288 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
|
2289 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
|
2290 |
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
|
2291 // 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
|
2292 // 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
|
2293 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
|
2294 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
|
2295 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2296 #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
|
2297 |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2298 static void |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2299 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
|
2300 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
2301 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
|
2302 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
|
2303 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
|
2304 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
|
2305 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
|
2306 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
|
2307 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
|
2308 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
|
2309 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
|
2310 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
|
2311 #ifdef FEAT_DIFF |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2312 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
|
2313 #endif |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2314 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
|
2315 #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
|
2316 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
|
2317 #endif |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2318 #ifdef FEAT_TERMINAL |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2319 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
|
2320 #endif |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2321 } |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2322 |
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 * 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
|
2325 * 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
|
2326 */ |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2327 void |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2328 curwin_init(void) |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2329 { |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2330 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
|
2331 } |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2332 |
7 | 2333 /* |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2334 * Close all windows for buffer "buf". |
7 | 2335 */ |
2336 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2337 close_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2338 buf_T *buf, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2339 int keep_curwin) // don't close "curwin" |
7 | 2340 { |
671 | 2341 win_T *wp; |
2342 tabpage_T *tp, *nexttp; | |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2343 int count = tabpage_index(NULL); |
7 | 2344 |
2345 ++RedrawingDisabled; | |
671 | 2346 |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
2347 for (wp = firstwin; wp != NULL && !ONE_WINDOW; ) |
7 | 2348 { |
3570 | 2349 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
|
2350 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
7 | 2351 { |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2352 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
|
2353 // 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
|
2354 // 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
|
2355 break; |
671 | 2356 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2357 // Start all over, autocommands may change the window layout. |
671 | 2358 wp = firstwin; |
7 | 2359 } |
2360 else | |
671 | 2361 wp = wp->w_next; |
7 | 2362 } |
671 | 2363 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2364 // Also check windows in other tab pages. |
671 | 2365 for (tp = first_tabpage; tp != NULL; tp = nexttp) |
2366 { | |
2367 nexttp = tp->tp_next; | |
672 | 2368 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
|
2369 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
3570 | 2370 if (wp->w_buffer == buf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2371 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
671 | 2372 { |
2373 win_close_othertab(wp, FALSE, tp); | |
2374 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2375 // 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
|
2376 // autocommands may change the window layout. |
671 | 2377 nexttp = first_tabpage; |
2378 break; | |
2379 } | |
2380 } | |
2381 | |
7 | 2382 --RedrawingDisabled; |
671 | 2383 |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2384 if (count != tabpage_index(NULL)) |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2385 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
7 | 2386 } |
2387 | |
2388 /* | |
1906 | 2389 * Return TRUE if the current window is the only window that exists (ignoring |
2390 * "aucmd_win"). | |
672 | 2391 * Returns FALSE if there is a window, possibly in another tab page. |
667 | 2392 */ |
672 | 2393 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2394 last_window(void) |
667 | 2395 { |
1906 | 2396 return (one_window() && first_tabpage->tp_next == NULL); |
2397 } | |
2398 | |
2399 /* | |
2400 * Return TRUE if there is only one window other than "aucmd_win" in the | |
2401 * current tab page. | |
2402 */ | |
3365 | 2403 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2404 one_window(void) |
1906 | 2405 { |
2406 win_T *wp; | |
2407 int seen_one = FALSE; | |
2408 | |
2409 FOR_ALL_WINDOWS(wp) | |
2410 { | |
2411 if (wp != aucmd_win) | |
2412 { | |
2413 if (seen_one) | |
2414 return FALSE; | |
2415 seen_one = TRUE; | |
2416 } | |
2417 } | |
2418 return TRUE; | |
667 | 2419 } |
2420 | |
2421 /* | |
3535 | 2422 * Close the possibly last window in a tab page. |
2423 * Returns TRUE when the window was closed already. | |
2424 */ | |
2425 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2426 close_last_window_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2427 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2428 int free_buf, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2429 tabpage_T *prev_curtab) |
3535 | 2430 { |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2431 if (ONE_WINDOW) |
3535 | 2432 { |
4354 | 2433 buf_T *old_curbuf = curbuf; |
2434 | |
3535 | 2435 /* |
2436 * Closing the last window in a tab page. First go to another tab | |
2437 * page and then close the window and the tab page. This avoids that | |
2438 * curwin and curtab are invalid while we are freeing memory, they may | |
2439 * be used in GUI events. | |
3582 | 2440 * Don't trigger autocommands yet, they may use wrong values, so do |
2441 * that below. | |
3535 | 2442 */ |
4354 | 2443 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE); |
3535 | 2444 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2445 // 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
|
2446 // to the other tab page. |
3535 | 2447 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win) |
2448 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
|
2449 #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
|
2450 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
|
2451 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2452 // 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
|
2453 // that now. |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2454 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
4354 | 2455 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
3582 | 2456 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
4354 | 2457 if (old_curbuf != curbuf) |
2458 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3535 | 2459 return TRUE; |
2460 } | |
2461 return FALSE; | |
2462 } | |
2463 | |
2464 /* | |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2465 * 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
|
2466 * "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
|
2467 * "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
|
2468 * windows are closed. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2469 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2470 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
|
2471 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
|
2472 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2473 #ifdef FEAT_SYN_HL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2474 // 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
|
2475 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2476 reset_synblock(win); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2477 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2478 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2479 #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
|
2480 // 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
|
2481 // 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
|
2482 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
|
2483 && 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
|
2484 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
|
2485 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2486 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2487 // Close the link to the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2488 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2489 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2490 bufref_T bufref; |
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 set_bufref(&bufref, curbuf); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2493 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
|
2494 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
|
2495 if (win_valid_any_tab(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2496 win->w_closing = FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2497 // 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
|
2498 // "wipe". |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2499 if (!bufref_valid(&bufref)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2500 curbuf = firstbuf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2501 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2502 } |
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 /* |
819 | 2505 * Close window "win". Only works for the current tab page. |
7 | 2506 * If "free_buf" is TRUE related buffer may be unloaded. |
2507 * | |
3365 | 2508 * Called by :quit, :close, :xit, :wq and findtag(). |
5302 | 2509 * Returns FAIL when the window was not closed. |
7 | 2510 */ |
5302 | 2511 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2512 win_close(win_T *win, int free_buf) |
7 | 2513 { |
2514 win_T *wp; | |
2515 int other_buffer = FALSE; | |
2516 int close_curwin = FALSE; | |
2517 int dir; | |
2518 int help_window = FALSE; | |
847 | 2519 tabpage_T *prev_curtab = curtab; |
11593
c4e7fe672a72
patch 8.0.0679: using freed memory
Christian Brabandt <cb@256bit.org>
parents:
11591
diff
changeset
|
2520 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
|
2521 #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
|
2522 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
|
2523 #endif |
25505
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2524 #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
|
2525 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
|
2526 #endif |
7 | 2527 |
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
|
2528 #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
|
2529 // 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
|
2530 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
|
2531 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
|
2532 #endif |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
2533 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
|
2534 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
2535 |
667 | 2536 if (last_window()) |
7 | 2537 { |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
2538 emsg(_(e_cannot_close_last_window)); |
5302 | 2539 return FAIL; |
7 | 2540 } |
2541 | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2542 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
|
2543 && 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
|
2544 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
|
2545 if (win_unlisted(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2546 { |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2547 emsg(_(e_cannot_close_autocmd_or_popup_window)); |
5302 | 2548 return FAIL; |
1906 | 2549 } |
2550 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) | |
2551 { | |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2552 emsg(_(e_cannot_close_window_only_autocmd_window_would_remain)); |
5302 | 2553 return FAIL; |
1906 | 2554 } |
2555 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2556 // 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
|
2557 // 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
|
2558 // curtab are invalid while we are freeing memory. |
3535 | 2559 if (close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2560 return FAIL; |
856 | 2561 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2562 // 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
|
2563 // 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
|
2564 if (bt_help(win->w_buffer)) |
7 | 2565 help_window = TRUE; |
2566 else | |
1906 | 2567 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 2568 |
2569 if (win == curwin) | |
2570 { | |
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
|
2571 #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
|
2572 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
|
2573 #endif |
7 | 2574 /* |
2575 * Guess which window is going to be the new current window. | |
2576 * This may change because of the autocommands (sigh). | |
2577 */ | |
671 | 2578 wp = frame2win(win_altframe(win, NULL)); |
7 | 2579 |
2580 /* | |
3570 | 2581 * Be careful: If autocommands delete the window or cause this window |
2582 * to be the last one left, return now. | |
7 | 2583 */ |
2584 if (wp->w_buffer != curbuf) | |
2585 { | |
29348
05ac4ab2c282
patch 9.0.0017: accessing memory beyond the end of the line
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2586 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
|
2587 |
7 | 2588 other_buffer = TRUE; |
3570 | 2589 win->w_closing = TRUE; |
7 | 2590 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2591 if (!win_valid(win)) |
5302 | 2592 return FAIL; |
3570 | 2593 win->w_closing = FALSE; |
2594 if (last_window()) | |
5302 | 2595 return FAIL; |
7 | 2596 } |
3570 | 2597 win->w_closing = TRUE; |
7 | 2598 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2599 if (!win_valid(win)) |
5302 | 2600 return FAIL; |
3570 | 2601 win->w_closing = FALSE; |
2602 if (last_window()) | |
5302 | 2603 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2604 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2605 // autocmds may abort script processing |
7 | 2606 if (aborting()) |
5302 | 2607 return FAIL; |
7 | 2608 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2609 } |
7 | 2610 |
1101 | 2611 #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
|
2612 // 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
|
2613 // win_free(). |
1101 | 2614 if (gui.in_use) |
2615 out_flush(); | |
2616 #endif | |
2617 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
2618 #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
|
2619 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
|
2620 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
|
2621 #endif |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2622 |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2623 // 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
|
2624 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
|
2625 // 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
|
2626 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
|
2627 return OK; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2628 |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2629 win_close_buffer(win, free_buf ? DOBUF_UNLOAD : 0, TRUE); |
847 | 2630 |
4021 | 2631 if (only_one_window() && win_valid(win) && win->w_buffer == NULL |
2632 && (last_window() || curtab != prev_curtab | |
2633 || 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
|
2634 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2635 // 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
|
2636 // 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
|
2637 if (curwin->w_buffer == NULL) |
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2638 curwin->w_buffer = curbuf; |
4021 | 2639 getout(0); |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2640 } |
4021 | 2641 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2642 // 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
|
2643 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
|
2644 && win->w_buffer == NULL) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2645 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2646 // 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
|
2647 // 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
|
2648 block_autocmds(); |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2649 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
|
2650 unblock_autocmds(); |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2651 return FAIL; |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2652 } |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2653 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2654 // 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
|
2655 // other window. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2656 if (!win_valid(win) || last_window() |
3535 | 2657 || close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2658 return FAIL; |
7 | 2659 |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2660 // 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
|
2661 // 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
|
2662 // 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
|
2663 // screen. |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2664 ++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
|
2665 #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
|
2666 ++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
|
2667 #endif |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2668 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2669 // 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
|
2670 // the screen space. |
847 | 2671 wp = win_free_mem(win, &dir, NULL); |
2672 | |
28688
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2673 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
|
2674 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2675 // 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
|
2676 // 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
|
2677 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
|
2678 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2679 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
|
2680 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
|
2681 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
2682 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2683 // 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
|
2684 // 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
|
2685 // too. |
847 | 2686 if (win == curwin) |
7 | 2687 { |
2688 curwin = wp; | |
2689 #ifdef FEAT_QUICKFIX | |
2690 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer)) | |
2691 { | |
2692 /* | |
1346 | 2693 * If the cursor goes to the preview or the quickfix window, try |
7 | 2694 * finding another window to go to. |
2695 */ | |
2696 for (;;) | |
2697 { | |
2698 if (wp->w_next == NULL) | |
2699 wp = firstwin; | |
2700 else | |
2701 wp = wp->w_next; | |
2702 if (wp == curwin) | |
2703 break; | |
2704 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer)) | |
2705 { | |
2706 curwin = wp; | |
2707 break; | |
2708 } | |
2709 } | |
2710 } | |
2711 #endif | |
2712 curbuf = curwin->w_buffer; | |
2713 close_curwin = TRUE; | |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2714 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2715 // 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
|
2716 // using the window. |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2717 check_cursor(); |
7 | 2718 } |
30134
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2719 |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2720 /* |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2721 * 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
|
2722 * 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
|
2723 * 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
|
2724 */ |
0211a930d873
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
Bram Moolenaar <Bram@vim.org>
parents:
30009
diff
changeset
|
2725 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
|
2726 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2727 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
|
2728 // 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
|
2729 // 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
|
2730 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir); |
7 | 2731 else |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
2732 { |
7 | 2733 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
|
2734 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
|
2735 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
|
2736 } |
7 | 2737 if (close_curwin) |
2738 { | |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2739 // 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
|
2740 // 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
|
2741 #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
|
2742 did_decrement = |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2743 #else |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2744 (void) |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2745 #endif |
040a45d39570
patch 8.2.3289: compiler warning for unused variable with small features
Bram Moolenaar <Bram@vim.org>
parents:
25501
diff
changeset
|
2746 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
|
2747 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
|
2748 | WEE_TRIGGER_LEAVE_AUTOCMDS | WEE_ALLOW_PARSE_MESSAGES); |
7 | 2749 if (other_buffer) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2750 // careful: after this wp and win may be invalid! |
7 | 2751 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
2752 } | |
2753 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2754 --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
|
2755 #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
|
2756 if (!did_decrement) |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
2757 --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
|
2758 #endif |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2759 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2760 // 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
|
2761 // before it was opened. |
7 | 2762 if (help_window) |
1906 | 2763 restore_snapshot(SNAP_HELP_IDX, close_curwin); |
7 | 2764 |
18590
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2765 #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
|
2766 // 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
|
2767 // 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
|
2768 // 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
|
2769 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
|
2770 { |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2771 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
|
2772 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
|
2773 |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2774 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
|
2775 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
|
2776 ++diffcount; |
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 (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
|
2778 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
|
2779 } |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2780 #endif |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2781 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2782 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2783 // When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. |
7 | 2784 if (gui.in_use && !win_hasvertsplit()) |
2785 gui_init_which_components(NULL); | |
2786 #endif | |
2787 | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
2788 redraw_all_later(UPD_NOT_VALID); |
5302 | 2789 return OK; |
7 | 2790 } |
2791 | |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2792 static void |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2793 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
|
2794 { |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2795 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
|
2796 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
|
2797 |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2798 if (recursive) |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2799 return; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2800 recursive = TRUE; |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2801 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
|
2802 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
|
2803 recursive = FALSE; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2804 } |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2805 |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2806 /* |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2807 * 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
|
2808 */ |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2809 void |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2810 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
|
2811 { |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2812 win_T *wp = curwin; |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2813 static int recursive = FALSE; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2814 char_u winid[NUMBUFLEN]; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2815 |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2816 if (recursive || !has_winscrolled()) |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2817 return; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2818 |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2819 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
|
2820 || 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
|
2821 || 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
|
2822 || 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
|
2823 || 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
|
2824 { |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2825 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
|
2826 |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2827 recursive = TRUE; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2828 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
|
2829 recursive = FALSE; |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2830 |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2831 // 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
|
2832 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
|
2833 { |
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
2834 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
|
2835 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
|
2836 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
|
2837 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
|
2838 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
|
2839 } |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2840 } |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2841 } |
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28361
diff
changeset
|
2842 |
7 | 2843 /* |
671 | 2844 * Close window "win" in tab page "tp", which is not the current tab page. |
3535 | 2845 * This may be the last window in that tab page and result in closing the tab, |
671 | 2846 * thus "tp" may become invalid! |
856 | 2847 * Caller must check if buffer is hidden and whether the tabline needs to be |
2848 * updated. | |
671 | 2849 */ |
2850 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2851 win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) |
671 | 2852 { |
2853 win_T *wp; | |
2854 int dir; | |
2855 tabpage_T *ptp = NULL; | |
2191 | 2856 int free_tp = FALSE; |
671 | 2857 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2858 // 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
|
2859 // page changed. |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2860 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
|
2861 && 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
|
2862 return; // window is already being closed |
3570 | 2863 |
26117
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2864 // 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
|
2865 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
|
2866 // 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
|
2867 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
|
2868 return; |
d4d9c7c55a5f
patch 8.2.3591: no event is triggered when closing a window
Bram Moolenaar <Bram@vim.org>
parents:
26077
diff
changeset
|
2869 |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2870 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
|
2871 // 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
|
2872 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
|
2873 FALSE, TRUE); |
671 | 2874 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2875 // 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
|
2876 // current tab page. |
671 | 2877 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) |
2878 ; | |
672 | 2879 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
|
2880 { |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2881 // 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
|
2882 // buffer. |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2883 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
|
2884 { |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2885 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
|
2886 ++firstbuf->b_nwindows; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2887 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
|
2888 } |
671 | 2889 return; |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2890 } |
671 | 2891 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2892 // Autocommands may have closed the window already. |
671 | 2893 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next) |
2894 ; | |
2895 if (wp == NULL) | |
2896 return; | |
2897 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2898 // When closing the last window in a tab page remove the tab page. |
7009 | 2899 if (tp->tp_firstwin == tp->tp_lastwin) |
671 | 2900 { |
30429
69ff2bd737a9
patch 9.0.0550: crash when closing a tabpage and buffer is NULL
Bram Moolenaar <Bram@vim.org>
parents:
30339
diff
changeset
|
2901 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
|
2902 |
671 | 2903 if (tp == first_tabpage) |
2904 first_tabpage = tp->tp_next; | |
2905 else | |
2906 { | |
2907 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; | |
2908 ptp = ptp->tp_next) | |
2909 ; | |
2910 if (ptp == NULL) | |
2911 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2912 internal_error("win_close_othertab()"); |
671 | 2913 return; |
2914 } | |
2915 ptp->tp_next = tp->tp_next; | |
2916 } | |
2191 | 2917 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
|
2918 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
|
2919 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
|
2920 shell_new_rows(); |
2191 | 2921 } |
2922 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2923 // Free the memory used for the window. |
2191 | 2924 win_free_mem(win, &dir, tp); |
2925 | |
2926 if (free_tp) | |
847 | 2927 free_tabpage(tp); |
671 | 2928 } |
2929 | |
2930 /* | |
355 | 2931 * Free the memory used for a window. |
2932 * Returns a pointer to the window that got the freed up space. | |
2933 */ | |
2934 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2935 win_free_mem( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2936 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2937 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
|
2938 tabpage_T *tp) // tab page "win" is in, NULL for current |
355 | 2939 { |
2940 frame_T *frp; | |
2941 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
|
2942 tabpage_T *win_tp = tp == NULL ? curtab : tp; |
355 | 2943 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2944 // Remove the window and its frame from the tree of frames. |
355 | 2945 frp = win->w_frame; |
671 | 2946 wp = winframe_remove(win, dirp, tp); |
355 | 2947 vim_free(frp); |
671 | 2948 win_free(win, tp); |
355 | 2949 |
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
|
2950 // 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
|
2951 // 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
|
2952 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
|
2953 win_tp->tp_curwin = wp; |
819 | 2954 |
355 | 2955 return wp; |
2956 } | |
2957 | |
2958 #if defined(EXITFREE) || defined(PROTO) | |
2959 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2960 win_free_all(void) |
355 | 2961 { |
2962 int dummy; | |
2963 | |
27857
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2964 #ifdef FEAT_CMDWIN |
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2965 // 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
|
2966 cmdwin_type = 0; |
8c8fabf093bb
patch 8.2.4454: resetting cmdwin_type only for one situation
Bram Moolenaar <Bram@vim.org>
parents:
27817
diff
changeset
|
2967 #endif |
671 | 2968 while (first_tabpage->tp_next != NULL) |
2969 tabpage_close(TRUE); | |
2970 | |
1906 | 2971 if (aucmd_win != NULL) |
2972 { | |
2973 (void)win_free_mem(aucmd_win, &dummy, NULL); | |
2974 aucmd_win = NULL; | |
2975 } | |
1918 | 2976 |
2977 while (firstwin != NULL) | |
2978 (void)win_free_mem(firstwin, &dummy, NULL); | |
6060 | 2979 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2980 // 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
|
2981 // instead of using freed memory. |
6060 | 2982 curwin = NULL; |
355 | 2983 } |
2984 #endif | |
2985 | |
2986 /* | |
7 | 2987 * Remove a window and its frame from the tree of frames. |
2988 * Returns a pointer to the window that got the freed up space. | |
2989 */ | |
1906 | 2990 win_T * |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2991 winframe_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2992 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2993 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
|
2994 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 2995 { |
2996 frame_T *frp, *frp2, *frp3; | |
2997 frame_T *frp_close = win->w_frame; | |
2998 win_T *wp; | |
2999 | |
3000 /* | |
671 | 3001 * If there is only one window there is nothing to remove. |
3002 */ | |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
3003 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
671 | 3004 return NULL; |
3005 | |
3006 /* | |
7 | 3007 * Remove the window from its frame. |
3008 */ | |
671 | 3009 frp2 = win_altframe(win, tp); |
7 | 3010 wp = frame2win(frp2); |
3011 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3012 // Remove this frame from the list of frames. |
7 | 3013 frame_remove(frp_close); |
3014 | |
3015 if (frp_close->fr_parent->fr_layout == FR_COL) | |
3016 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3017 // 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
|
3018 // (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
|
3019 // to. |
1346 | 3020 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh) |
3021 { | |
3022 frp = frp_close->fr_prev; | |
3023 frp3 = frp_close->fr_next; | |
3024 while (frp != NULL || frp3 != NULL) | |
3025 { | |
3026 if (frp != NULL) | |
3027 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
3028 if (!frame_fixed_height(frp)) |
1346 | 3029 { |
3030 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
|
3031 wp = frame2win(frp2); |
1346 | 3032 break; |
3033 } | |
3034 frp = frp->fr_prev; | |
3035 } | |
3036 if (frp3 != NULL) | |
3037 { | |
3038 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh) | |
3039 { | |
3040 frp2 = frp3; | |
3041 wp = frp3->fr_win; | |
3042 break; | |
3043 } | |
3044 frp3 = frp3->fr_next; | |
3045 } | |
3046 } | |
3047 } | |
7 | 3048 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height, |
3049 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); | |
3050 *dirp = 'v'; | |
3051 } | |
3052 else | |
3053 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3054 // 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
|
3055 // (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
|
3056 // to. |
1346 | 3057 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw) |
3058 { | |
3059 frp = frp_close->fr_prev; | |
3060 frp3 = frp_close->fr_next; | |
3061 while (frp != NULL || frp3 != NULL) | |
3062 { | |
3063 if (frp != NULL) | |
3064 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
3065 if (!frame_fixed_width(frp)) |
1346 | 3066 { |
3067 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
|
3068 wp = frame2win(frp2); |
1346 | 3069 break; |
3070 } | |
3071 frp = frp->fr_prev; | |
3072 } | |
3073 if (frp3 != NULL) | |
3074 { | |
3075 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw) | |
3076 { | |
3077 frp2 = frp3; | |
3078 wp = frp3->fr_win; | |
3079 break; | |
3080 } | |
3081 frp3 = frp3->fr_next; | |
3082 } | |
3083 } | |
3084 } | |
7 | 3085 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width, |
779 | 3086 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); |
7 | 3087 *dirp = 'h'; |
3088 } | |
3089 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3090 // 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
|
3091 // updated. Can only be done after the sizes have been updated. |
7 | 3092 if (frp2 == frp_close->fr_next) |
3093 { | |
3094 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
|
3095 int col = win->w_wincol; |
7 | 3096 |
3097 frame_comp_pos(frp2, &row, &col); | |
3098 } | |
3099 | |
3100 if (frp2->fr_next == NULL && frp2->fr_prev == NULL) | |
3101 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3102 // 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
|
3103 // and remove it. |
7 | 3104 frp2->fr_parent->fr_layout = frp2->fr_layout; |
3105 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
|
3106 FOR_ALL_FRAMES(frp, frp2->fr_child) |
7 | 3107 frp->fr_parent = frp2->fr_parent; |
3108 frp2->fr_parent->fr_win = frp2->fr_win; | |
3109 if (frp2->fr_win != NULL) | |
3110 frp2->fr_win->w_frame = frp2->fr_parent; | |
3111 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
|
3112 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
|
3113 topframe->fr_child = frp; |
7 | 3114 vim_free(frp2); |
3115 | |
3116 frp2 = frp->fr_parent; | |
3117 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout) | |
3118 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3119 // 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
|
3120 // the frames into this list. |
7 | 3121 if (frp2->fr_child == frp) |
3122 frp2->fr_child = frp->fr_child; | |
3123 frp->fr_child->fr_prev = frp->fr_prev; | |
3124 if (frp->fr_prev != NULL) | |
3125 frp->fr_prev->fr_next = frp->fr_child; | |
3126 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next) | |
3127 { | |
3128 frp3->fr_parent = frp2; | |
3129 if (frp3->fr_next == NULL) | |
3130 { | |
3131 frp3->fr_next = frp->fr_next; | |
3132 if (frp->fr_next != NULL) | |
3133 frp->fr_next->fr_prev = frp3; | |
3134 break; | |
3135 } | |
3136 } | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
3137 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
|
3138 topframe->fr_child = frp2; |
7 | 3139 vim_free(frp); |
3140 } | |
3141 } | |
3142 | |
3143 return wp; | |
3144 } | |
3145 | |
3146 /* | |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3147 * 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
|
3148 * 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
|
3149 * |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3150 * 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
|
3151 * 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
|
3152 * 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
|
3153 * 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
|
3154 * respected when possible. |
7 | 3155 */ |
3156 static frame_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3157 win_altframe( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3158 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3159 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 3160 { |
3161 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
|
3162 frame_T *other_fr, *target_fr; |
7 | 3163 |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
3164 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
667 | 3165 return alt_tabpage()->tp_curwin->w_frame; |
3166 | |
7 | 3167 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
|
3168 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3169 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
|
3170 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
|
3171 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
|
3172 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
|
3173 |
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
|
3174 // 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
|
3175 // window |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3176 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
|
3177 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
|
3178 |
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
|
3179 // 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
|
3180 // 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
|
3181 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
|
3182 { |
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 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
|
3184 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
|
3185 } |
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 |
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 // 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
|
3188 // 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
|
3189 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
|
3190 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3191 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
|
3192 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
|
3193 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3194 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3195 // 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
|
3196 // window, reverse the selection. |
355 | 3197 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
|
3198 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3199 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
|
3200 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
|
3201 } |
7 | 3202 else |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3203 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3204 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
|
3205 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
|
3206 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3207 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3208 return target_fr; |
7 | 3209 } |
3210 | |
3211 /* | |
667 | 3212 * Return the tabpage that will be used if the current one is closed. |
3213 */ | |
3214 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3215 alt_tabpage(void) |
667 | 3216 { |
672 | 3217 tabpage_T *tp; |
3218 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3219 // Use the next tab page if possible. |
682 | 3220 if (curtab->tp_next != NULL) |
672 | 3221 return curtab->tp_next; |
3222 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3223 // Find the last but one tab page. |
682 | 3224 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next) |
3225 ; | |
674 | 3226 return tp; |
667 | 3227 } |
3228 | |
3229 /* | |
7 | 3230 * Find the left-upper window in frame "frp". |
3231 */ | |
3232 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3233 frame2win(frame_T *frp) |
7 | 3234 { |
3235 while (frp->fr_win == NULL) | |
3236 frp = frp->fr_child; | |
3237 return frp->fr_win; | |
3238 } | |
3239 | |
3240 /* | |
3241 * Return TRUE if frame "frp" contains window "wp". | |
3242 */ | |
3243 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3244 frame_has_win(frame_T *frp, win_T *wp) |
7 | 3245 { |
3246 frame_T *p; | |
3247 | |
3248 if (frp->fr_layout == FR_LEAF) | |
3249 return frp->fr_win == wp; | |
3250 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3251 FOR_ALL_FRAMES(p, frp->fr_child) |
7 | 3252 if (frame_has_win(p, wp)) |
3253 return TRUE; | |
3254 return FALSE; | |
3255 } | |
3256 | |
3257 /* | |
3258 * Set a new height for a frame. Recursively sets the height for contained | |
3259 * frames and windows. Caller must take care of positions. | |
3260 */ | |
3261 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3262 frame_new_height( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3263 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3264 int height, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3265 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
|
3266 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
|
3267 // may cause the height not to be set |
7 | 3268 { |
3269 frame_T *frp; | |
3270 int extra_lines; | |
3271 int h; | |
3272 | |
3273 if (topfrp->fr_win != NULL) | |
3274 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3275 // Simple case: just one window. |
7 | 3276 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
|
3277 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
|
3278 - WINBAR_HEIGHT(topfrp->fr_win)); |
7 | 3279 } |
3280 else if (topfrp->fr_layout == FR_ROW) | |
3281 { | |
3282 do | |
3283 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3284 // 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
|
3285 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3286 { |
3287 frame_new_height(frp, height, topfirst, wfh); | |
3288 if (frp->fr_height > height) | |
3289 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3290 // Could not fit the windows, make the whole row higher. |
7 | 3291 height = frp->fr_height; |
3292 break; | |
3293 } | |
3294 } | |
3295 } | |
3296 while (frp != NULL); | |
3297 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3298 else // fr_layout == FR_COL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3299 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3300 // 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
|
3301 // frame first, frames above that when needed. |
7 | 3302 |
3303 frp = topfrp->fr_child; | |
3304 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3305 // Advance past frames with one window with 'wfh' set. |
7 | 3306 while (frame_fixed_height(frp)) |
3307 { | |
3308 frp = frp->fr_next; | |
3309 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3310 return; // no frame without 'wfh', give up |
7 | 3311 } |
3312 if (!topfirst) | |
3313 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3314 // Find the bottom frame of this column |
7 | 3315 while (frp->fr_next != NULL) |
3316 frp = frp->fr_next; | |
3317 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3318 // Advance back for frames with one window with 'wfh' set. |
7 | 3319 while (frame_fixed_height(frp)) |
3320 frp = frp->fr_prev; | |
3321 } | |
3322 | |
3323 extra_lines = height - topfrp->fr_height; | |
3324 if (extra_lines < 0) | |
3325 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3326 // reduce height of contained frames, bottom or top frame first |
7 | 3327 while (frp != NULL) |
3328 { | |
3329 h = frame_minheight(frp, NULL); | |
3330 if (frp->fr_height + extra_lines < h) | |
3331 { | |
3332 extra_lines += frp->fr_height - h; | |
3333 frame_new_height(frp, h, topfirst, wfh); | |
3334 } | |
3335 else | |
3336 { | |
3337 frame_new_height(frp, frp->fr_height + extra_lines, | |
3338 topfirst, wfh); | |
3339 break; | |
3340 } | |
3341 if (topfirst) | |
3342 { | |
3343 do | |
3344 frp = frp->fr_next; | |
3345 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3346 } | |
3347 else | |
3348 { | |
3349 do | |
3350 frp = frp->fr_prev; | |
3351 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3352 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3353 // Increase "height" if we could not reduce enough frames. |
7 | 3354 if (frp == NULL) |
3355 height -= extra_lines; | |
3356 } | |
3357 } | |
3358 else if (extra_lines > 0) | |
3359 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3360 // increase height of bottom or top frame |
7 | 3361 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh); |
3362 } | |
3363 } | |
3364 topfrp->fr_height = height; | |
3365 } | |
3366 | |
3367 /* | |
3368 * Return TRUE if height of frame "frp" should not be changed because of | |
3369 * the 'winfixheight' option. | |
3370 */ | |
3371 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3372 frame_fixed_height(frame_T *frp) |
7 | 3373 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3374 // frame with one window: fixed height if 'winfixheight' set. |
7 | 3375 if (frp->fr_win != NULL) |
3376 return frp->fr_win->w_p_wfh; | |
3377 | |
3378 if (frp->fr_layout == FR_ROW) | |
3379 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3380 // 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
|
3381 // height. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3382 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3383 if (frame_fixed_height(frp)) |
3384 return TRUE; | |
3385 return FALSE; | |
3386 } | |
3387 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3388 // 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
|
3389 // 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
|
3390 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3391 if (!frame_fixed_height(frp)) |
3392 return FALSE; | |
3393 return TRUE; | |
3394 } | |
3395 | |
3396 /* | |
779 | 3397 * Return TRUE if width of frame "frp" should not be changed because of |
3398 * the 'winfixwidth' option. | |
3399 */ | |
3400 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3401 frame_fixed_width(frame_T *frp) |
779 | 3402 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3403 // frame with one window: fixed width if 'winfixwidth' set. |
779 | 3404 if (frp->fr_win != NULL) |
3405 return frp->fr_win->w_p_wfw; | |
3406 | |
3407 if (frp->fr_layout == FR_COL) | |
3408 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3409 // 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
|
3410 // width. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3411 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3412 if (frame_fixed_width(frp)) |
3413 return TRUE; | |
3414 return FALSE; | |
3415 } | |
3416 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3417 // 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
|
3418 // 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
|
3419 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3420 if (!frame_fixed_width(frp)) |
3421 return FALSE; | |
3422 return TRUE; | |
3423 } | |
3424 | |
3425 /* | |
7 | 3426 * Add a status line to windows at the bottom of "frp". |
3427 * Note: Does not check if there is room! | |
3428 */ | |
3429 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3430 frame_add_statusline(frame_T *frp) |
7 | 3431 { |
3432 win_T *wp; | |
3433 | |
3434 if (frp->fr_layout == FR_LEAF) | |
3435 { | |
3436 wp = frp->fr_win; | |
3437 if (wp->w_status_height == 0) | |
3438 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3439 if (wp->w_height > 0) // don't make it negative |
7 | 3440 --wp->w_height; |
3441 wp->w_status_height = STATUS_HEIGHT; | |
3442 } | |
3443 } | |
3444 else if (frp->fr_layout == FR_ROW) | |
3445 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3446 // 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
|
3447 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3448 frame_add_statusline(frp); |
3449 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3450 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
|
3451 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3452 // Only need to handle the last frame in the column. |
7 | 3453 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next) |
3454 ; | |
3455 frame_add_statusline(frp); | |
3456 } | |
3457 } | |
3458 | |
3459 /* | |
3460 * Set width of a frame. Handles recursively going through contained frames. | |
3461 * May remove separator line for windows at the right side (for win_close()). | |
3462 */ | |
3463 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3464 frame_new_width( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3465 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3466 int width, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3467 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
|
3468 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
|
3469 // may cause the width not to be set |
7 | 3470 { |
3471 frame_T *frp; | |
3472 int extra_cols; | |
3473 int w; | |
3474 win_T *wp; | |
3475 | |
3476 if (topfrp->fr_layout == FR_LEAF) | |
3477 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3478 // Simple case: just one window. |
7 | 3479 wp = topfrp->fr_win; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3480 // Find out if there are any windows right of this one. |
7 | 3481 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent) |
3482 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL) | |
3483 break; | |
3484 if (frp->fr_parent == NULL) | |
3485 wp->w_vsep_width = 0; | |
3486 win_new_width(wp, width - wp->w_vsep_width); | |
3487 } | |
3488 else if (topfrp->fr_layout == FR_COL) | |
3489 { | |
779 | 3490 do |
3491 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3492 // 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
|
3493 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
779 | 3494 { |
3495 frame_new_width(frp, width, leftfirst, wfw); | |
3496 if (frp->fr_width > width) | |
3497 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3498 // Could not fit the windows, make whole column wider. |
779 | 3499 width = frp->fr_width; |
3500 break; | |
3501 } | |
3502 } | |
3503 } while (frp != NULL); | |
7 | 3504 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3505 else // fr_layout == FR_ROW |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3506 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3507 // 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
|
3508 // frame first, frames left of it when needed. |
7 | 3509 |
3510 frp = topfrp->fr_child; | |
779 | 3511 if (wfw) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3512 // Advance past frames with one window with 'wfw' set. |
779 | 3513 while (frame_fixed_width(frp)) |
3514 { | |
3515 frp = frp->fr_next; | |
3516 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3517 return; // no frame without 'wfw', give up |
779 | 3518 } |
7 | 3519 if (!leftfirst) |
779 | 3520 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3521 // Find the rightmost frame of this row |
7 | 3522 while (frp->fr_next != NULL) |
3523 frp = frp->fr_next; | |
779 | 3524 if (wfw) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3525 // Advance back for frames with one window with 'wfw' set. |
779 | 3526 while (frame_fixed_width(frp)) |
3527 frp = frp->fr_prev; | |
3528 } | |
7 | 3529 |
3530 extra_cols = width - topfrp->fr_width; | |
3531 if (extra_cols < 0) | |
3532 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3533 // reduce frame width, rightmost frame first |
7 | 3534 while (frp != NULL) |
3535 { | |
3536 w = frame_minwidth(frp, NULL); | |
3537 if (frp->fr_width + extra_cols < w) | |
3538 { | |
3539 extra_cols += frp->fr_width - w; | |
779 | 3540 frame_new_width(frp, w, leftfirst, wfw); |
7 | 3541 } |
3542 else | |
3543 { | |
779 | 3544 frame_new_width(frp, frp->fr_width + extra_cols, |
3545 leftfirst, wfw); | |
7 | 3546 break; |
3547 } | |
3548 if (leftfirst) | |
779 | 3549 { |
3550 do | |
3551 frp = frp->fr_next; | |
3552 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3553 } | |
7 | 3554 else |
779 | 3555 { |
3556 do | |
3557 frp = frp->fr_prev; | |
3558 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3559 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3560 // Increase "width" if we could not reduce enough frames. |
779 | 3561 if (frp == NULL) |
3562 width -= extra_cols; | |
7 | 3563 } |
3564 } | |
3565 else if (extra_cols > 0) | |
3566 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3567 // increase width of rightmost frame |
779 | 3568 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw); |
7 | 3569 } |
3570 } | |
3571 topfrp->fr_width = width; | |
3572 } | |
3573 | |
3574 /* | |
3575 * Add the vertical separator to windows at the right side of "frp". | |
3576 * Note: Does not check if there is room! | |
3577 */ | |
3578 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3579 frame_add_vsep(frame_T *frp) |
7 | 3580 { |
3581 win_T *wp; | |
3582 | |
3583 if (frp->fr_layout == FR_LEAF) | |
3584 { | |
3585 wp = frp->fr_win; | |
3586 if (wp->w_vsep_width == 0) | |
3587 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3588 if (wp->w_width > 0) // don't make it negative |
7 | 3589 --wp->w_width; |
3590 wp->w_vsep_width = 1; | |
3591 } | |
3592 } | |
3593 else if (frp->fr_layout == FR_COL) | |
3594 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3595 // 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
|
3596 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3597 frame_add_vsep(frp); |
3598 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3599 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
|
3600 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3601 // Only need to handle the last frame in the row. |
7 | 3602 frp = frp->fr_child; |
3603 while (frp->fr_next != NULL) | |
3604 frp = frp->fr_next; | |
3605 frame_add_vsep(frp); | |
3606 } | |
3607 } | |
3608 | |
3609 /* | |
3610 * Set frame width from the window it contains. | |
3611 */ | |
3612 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3613 frame_fix_width(win_T *wp) |
7 | 3614 { |
3615 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width; | |
3616 } | |
3617 | |
3618 /* | |
3619 * Set frame height from the window it contains. | |
3620 */ | |
3621 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3622 frame_fix_height(win_T *wp) |
7 | 3623 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3624 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height; |
7 | 3625 } |
3626 | |
3627 /* | |
3628 * Compute the minimal height for frame "topfrp". | |
3629 * Uses the 'winminheight' option. | |
3630 * When "next_curwin" isn't NULL, use p_wh for this window. | |
3631 * When "next_curwin" is NOWIN, don't use at least one line for the current | |
3632 * window. | |
3633 */ | |
3634 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3635 frame_minheight(frame_T *topfrp, win_T *next_curwin) |
7 | 3636 { |
3637 frame_T *frp; | |
3638 int m; | |
3639 int n; | |
3640 | |
3641 if (topfrp->fr_win != NULL) | |
3642 { | |
3643 if (topfrp->fr_win == next_curwin) | |
3644 m = p_wh + topfrp->fr_win->w_status_height; | |
3645 else | |
3646 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3647 // window: minimal height of the window plus status line |
7 | 3648 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
|
3649 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
|
3650 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3651 // 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
|
3652 // visible. |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3653 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
|
3654 ++m; |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3655 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
|
3656 } |
7 | 3657 } |
3658 } | |
3659 else if (topfrp->fr_layout == FR_ROW) | |
3660 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3661 // get the minimal height from each frame in this row |
7 | 3662 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3663 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3664 { |
3665 n = frame_minheight(frp, next_curwin); | |
3666 if (n > m) | |
3667 m = n; | |
3668 } | |
3669 } | |
3670 else | |
3671 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3672 // Add up the minimal heights for all frames in this column. |
7 | 3673 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3674 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3675 m += frame_minheight(frp, next_curwin); |
3676 } | |
3677 | |
3678 return m; | |
3679 } | |
3680 | |
3681 /* | |
3682 * Compute the minimal width for frame "topfrp". | |
3683 * When "next_curwin" isn't NULL, use p_wiw for this window. | |
3684 * When "next_curwin" is NOWIN, don't use at least one column for the current | |
3685 * window. | |
3686 */ | |
3687 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3688 frame_minwidth( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3689 frame_T *topfrp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3690 win_T *next_curwin) // use p_wh and p_wiw for next_curwin |
7 | 3691 { |
3692 frame_T *frp; | |
3693 int m, n; | |
3694 | |
3695 if (topfrp->fr_win != NULL) | |
3696 { | |
3697 if (topfrp->fr_win == next_curwin) | |
3698 m = p_wiw + topfrp->fr_win->w_vsep_width; | |
3699 else | |
3700 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3701 // window: minimal width of the window plus separator column |
7 | 3702 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
|
3703 // Current window is minimal one column wide |
7 | 3704 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL) |
3705 ++m; | |
3706 } | |
3707 } | |
3708 else if (topfrp->fr_layout == FR_COL) | |
3709 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3710 // get the minimal width from each frame in this column |
7 | 3711 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3712 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3713 { |
3714 n = frame_minwidth(frp, next_curwin); | |
3715 if (n > m) | |
3716 m = n; | |
3717 } | |
3718 } | |
3719 else | |
3720 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3721 // Add up the minimal widths for all frames in this row. |
7 | 3722 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3723 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3724 m += frame_minwidth(frp, next_curwin); |
3725 } | |
3726 | |
3727 return m; | |
3728 } | |
3729 | |
3730 | |
3731 /* | |
3732 * Try to close all windows except current one. | |
3733 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is | |
3734 * used and the buffer was modified. | |
3735 * | |
3736 * Used by ":bdel" and ":only". | |
3737 */ | |
3738 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3739 close_others( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3740 int message, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3741 int forceit) // always hide all other windows |
7 | 3742 { |
3743 win_T *wp; | |
3744 win_T *nextwp; | |
3745 int r; | |
3746 | |
1906 | 3747 if (one_window()) |
7 | 3748 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
3749 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
|
3750 msg(_(m_onlyone)); |
7 | 3751 return; |
3752 } | |
3753 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3754 // Be very careful here: autocommands may change the window layout. |
7 | 3755 for (wp = firstwin; win_valid(wp); wp = nextwp) |
3756 { | |
3757 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
|
3758 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
|
3759 continue; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3760 |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3761 // 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
|
3762 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
|
3763 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3764 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3765 nextwp = firstwin; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3766 continue; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3767 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3768 if (!r) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3769 { |
7 | 3770 #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
|
3771 if (message && (p_confirm |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3772 || (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
|
3773 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3774 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
|
3775 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3776 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3777 nextwp = firstwin; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3778 continue; |
7 | 3779 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3780 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3781 if (bufIsChanged(wp->w_buffer)) |
7 | 3782 #endif |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3783 continue; |
7 | 3784 } |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29548
diff
changeset
|
3785 win_close(wp, !buf_hide(wp->w_buffer) && !bufIsChanged(wp->w_buffer)); |
7 | 3786 } |
3787 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
3788 if (message && !ONE_WINDOW) |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
3789 emsg(_(e_other_window_contains_changes)); |
7 | 3790 } |
3791 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3792 /* |
7 | 3793 * Allocate the first window and put an empty buffer in it. |
3794 * Called from main(). | |
667 | 3795 * Return FAIL when something goes wrong (out of memory). |
7 | 3796 */ |
667 | 3797 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3798 win_alloc_first(void) |
7 | 3799 { |
675 | 3800 if (win_alloc_firstwin(NULL) == FAIL) |
667 | 3801 return FAIL; |
3802 | |
672 | 3803 first_tabpage = alloc_tabpage(); |
667 | 3804 if (first_tabpage == NULL) |
3805 return FAIL; | |
3806 first_tabpage->tp_topframe = topframe; | |
672 | 3807 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
|
3808 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
|
3809 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
|
3810 curtab->tp_curwin = curwin; |
1906 | 3811 |
667 | 3812 return OK; |
3813 } | |
3814 | |
1906 | 3815 /* |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3816 * 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
|
3817 * 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
|
3818 * 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
|
3819 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3820 win_T * |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3821 win_alloc_popup_win(void) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3822 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3823 win_T *wp; |
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 wp = win_alloc(NULL, TRUE); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3826 if (wp != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3827 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3828 // 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
|
3829 // window makes most sense. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3830 win_init_some(wp, curwin); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3831 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3832 RESET_BINDING(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3833 new_frame(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3834 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3835 return 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 |
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 * Initialize window "wp" to display buffer "buf". |
1906 | 3840 */ |
3841 void | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3842 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
|
3843 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3844 wp->w_buffer = buf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3845 ++buf->b_nwindows; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3846 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
|
3847 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3848 // 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
|
3849 // win_enter_ext(). |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3850 VIM_CLEAR(wp->w_localdir); |
1906 | 3851 } |
3852 | |
667 | 3853 /* |
675 | 3854 * Allocate the first window or the first window in a new tab page. |
3855 * 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
|
3856 * When "oldwin" is not NULL copy info from it to the new window. |
667 | 3857 * Return FAIL when something goes wrong (out of memory). |
3858 */ | |
3859 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3860 win_alloc_firstwin(win_T *oldwin) |
667 | 3861 { |
1906 | 3862 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
|
3863 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
|
3864 return FAIL; |
675 | 3865 if (oldwin == NULL) |
3866 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3867 // 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
|
3868 // initialize from scratch. |
675 | 3869 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); |
3870 if (curwin == NULL || curbuf == NULL) | |
3871 return FAIL; | |
3872 curwin->w_buffer = curbuf; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3873 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3874 curwin->w_s = &(curbuf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3875 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3876 curbuf->b_nwindows = 1; // there is one window |
675 | 3877 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
|
3878 curwin_init(); // init current window |
675 | 3879 } |
3880 else | |
3881 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3882 // First window in new tab page, initialize it from "oldwin". |
1822 | 3883 win_init(curwin, oldwin, 0); |
675 | 3884 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3885 // We don't want cursor- and scroll-binding in the first window. |
2583 | 3886 RESET_BINDING(curwin); |
675 | 3887 } |
7 | 3888 |
1906 | 3889 new_frame(curwin); |
3890 if (curwin->w_frame == NULL) | |
667 | 3891 return FAIL; |
1906 | 3892 topframe = curwin->w_frame; |
7 | 3893 topframe->fr_width = Columns; |
3894 topframe->fr_height = Rows - p_ch; | |
667 | 3895 |
3896 return OK; | |
3897 } | |
3898 | |
3899 /* | |
1906 | 3900 * Create a frame for window "wp". |
3901 */ | |
3902 static void | |
3903 new_frame(win_T *wp) | |
3904 { | |
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
|
3905 frame_T *frp = ALLOC_CLEAR_ONE(frame_T); |
1906 | 3906 |
3907 wp->w_frame = frp; | |
3908 if (frp != NULL) | |
3909 { | |
3910 frp->fr_layout = FR_LEAF; | |
3911 frp->fr_win = wp; | |
3912 } | |
3913 } | |
3914 | |
3915 /* | |
667 | 3916 * Initialize the window and frame size to the maximum. |
3917 */ | |
3918 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3919 win_init_size(void) |
667 | 3920 { |
3921 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
|
3922 firstwin->w_prev_height = ROWS_AVAIL; |
667 | 3923 topframe->fr_height = ROWS_AVAIL; |
3924 firstwin->w_width = Columns; | |
3925 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
|
3926 } |
672 | 3927 |
3928 /* | |
3929 * Allocate a new tabpage_T and init the values. | |
3930 * Returns NULL when out of memory. | |
3931 */ | |
3932 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3933 alloc_tabpage(void) |
672 | 3934 { |
3935 tabpage_T *tp; | |
4287 | 3936 # ifdef FEAT_GUI |
3937 int i; | |
3938 # endif | |
3939 | |
672 | 3940 |
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
|
3941 tp = ALLOC_CLEAR_ONE(tabpage_T); |
4287 | 3942 if (tp == NULL) |
3943 return NULL; | |
3944 | |
3945 # ifdef FEAT_EVAL | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3946 // 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
|
3947 tp->tp_vars = dict_alloc_id(aid_newtabpage_tvars); |
4287 | 3948 if (tp->tp_vars == NULL) |
3949 { | |
3950 vim_free(tp); | |
3951 return NULL; | |
3952 } | |
3953 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); | |
3954 # endif | |
3955 | |
788 | 3956 # ifdef FEAT_GUI |
4287 | 3957 for (i = 0; i < 3; i++) |
3958 tp->tp_prev_which_scrollbars[i] = -1; | |
788 | 3959 # endif |
672 | 3960 # ifdef FEAT_DIFF |
4287 | 3961 tp->tp_diff_invalid = TRUE; |
672 | 3962 # endif |
4287 | 3963 tp->tp_ch_used = p_ch; |
3964 | |
672 | 3965 return tp; |
3966 } | |
3967 | |
852 | 3968 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3969 free_tabpage(tabpage_T *tp) |
672 | 3970 { |
1906 | 3971 int idx; |
3972 | |
672 | 3973 # ifdef FEAT_DIFF |
3974 diff_clear(tp); | |
3975 # endif | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
3976 # 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
|
3977 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
|
3978 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
|
3979 #endif |
1906 | 3980 for (idx = 0; idx < SNAP_COUNT; ++idx) |
3981 clear_snapshot(tp, idx); | |
819 | 3982 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3983 vars_clear(&tp->tp_vars->dv_hashtab); // free all t: variables |
4287 | 3984 hash_init(&tp->tp_vars->dv_hashtab); |
3985 unref_var_dict(tp->tp_vars); | |
819 | 3986 #endif |
4401 | 3987 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3988 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
|
3989 lastused_tabpage = NULL; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
3990 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3991 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
|
3992 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
|
3993 |
4401 | 3994 #ifdef FEAT_PYTHON |
3995 python_tabpage_free(tp); | |
3996 #endif | |
3997 | |
3998 #ifdef FEAT_PYTHON3 | |
3999 python3_tabpage_free(tp); | |
4000 #endif | |
4001 | |
672 | 4002 vim_free(tp); |
4003 } | |
4004 | |
667 | 4005 /* |
675 | 4006 * Create a new Tab page with one window. |
4007 * It will edit the current buffer, like after ":split". | |
682 | 4008 * When "after" is 0 put it just after the current Tab page. |
4009 * Otherwise put it just before tab page "after". | |
667 | 4010 * Return FAIL or OK. |
4011 */ | |
4012 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4013 win_new_tabpage(int after) |
667 | 4014 { |
672 | 4015 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
|
4016 tabpage_T *prev_tp = curtab; |
667 | 4017 tabpage_T *newtp; |
682 | 4018 int n; |
667 | 4019 |
27805
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4020 #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
|
4021 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
|
4022 { |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4023 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
|
4024 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
|
4025 } |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4026 #endif |
afbe86e8b24a
patch 8.2.4428: crash when switching tabpage while in the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
4027 |
672 | 4028 newtp = alloc_tabpage(); |
667 | 4029 if (newtp == NULL) |
4030 return FAIL; | |
4031 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4032 // Remember the current windows in this Tab page. |
4354 | 4033 if (leave_tabpage(curbuf, TRUE) == FAIL) |
674 | 4034 { |
4035 vim_free(newtp); | |
4036 return FAIL; | |
4037 } | |
672 | 4038 curtab = newtp; |
667 | 4039 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4040 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
|
4041 ? 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
|
4042 // Create a new empty window. |
675 | 4043 if (win_alloc_firstwin(tp->tp_curwin) == OK) |
667 | 4044 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4045 // Make the new Tab page the new topframe. |
682 | 4046 if (after == 1) |
4047 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4048 // New tab page becomes the first one. |
682 | 4049 newtp->tp_next = first_tabpage; |
4050 first_tabpage = newtp; | |
4051 } | |
4052 else | |
4053 { | |
4054 if (after > 0) | |
4055 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4056 // Put new tab page before tab page "after". |
682 | 4057 n = 2; |
4058 for (tp = first_tabpage; tp->tp_next != NULL | |
4059 && n < after; tp = tp->tp_next) | |
4060 ++n; | |
4061 } | |
4062 newtp->tp_next = tp->tp_next; | |
4063 tp->tp_next = newtp; | |
4064 } | |
19155
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
4065 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
|
4066 |
667 | 4067 win_init_size(); |
685 | 4068 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
|
4069 firstwin->w_prev_winrow = firstwin->w_winrow; |
819 | 4070 win_comp_scroll(curwin); |
667 | 4071 |
4072 newtp->tp_topframe = topframe; | |
671 | 4073 last_status(FALSE); |
815 | 4074 |
21727
860cad58f557
patch 8.2.1413: previous tab page not usable from an Ex command
Bram Moolenaar <Bram@vim.org>
parents:
21723
diff
changeset
|
4075 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
|
4076 |
815 | 4077 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4078 // 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
|
4079 // scrollbars. Have to update them anyway. |
1906 | 4080 gui_may_update_scrollbars(); |
815 | 4081 #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
|
4082 #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
|
4083 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
|
4084 #endif |
815 | 4085 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
4086 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
|
4087 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 4088 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
|
4089 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf); |
675 | 4090 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
667 | 4091 return OK; |
4092 } | |
4093 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4094 // Failed, get back the previous Tab page |
4354 | 4095 enter_tabpage(curtab, curbuf, TRUE, TRUE); |
667 | 4096 return FAIL; |
4097 } | |
4098 | |
4099 /* | |
682 | 4100 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer, |
4101 * like with ":split". | |
4102 * Returns OK if a new tab page was created, FAIL otherwise. | |
4103 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
4104 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4105 may_open_tabpage(void) |
682 | 4106 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
4107 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
|
4108 ? postponed_split_tab : cmdmod.cmod_tab; |
1090 | 4109 |
4110 if (n != 0) | |
682 | 4111 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22470
diff
changeset
|
4112 cmdmod.cmod_tab = 0; // reset it to avoid doing it twice |
1090 | 4113 postponed_split_tab = 0; |
682 | 4114 return win_new_tabpage(n); |
4115 } | |
4116 return FAIL; | |
4117 } | |
4118 | |
4119 /* | |
672 | 4120 * Create up to "maxcount" tabpages with empty windows. |
4121 * Returns the number of resulting tab pages. | |
667 | 4122 */ |
672 | 4123 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4124 make_tabpages(int maxcount) |
667 | 4125 { |
672 | 4126 int count = maxcount; |
4127 int todo; | |
4128 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4129 // Limit to 'tabpagemax' tabs. |
698 | 4130 if (count > p_tpm) |
4131 count = p_tpm; | |
672 | 4132 |
4133 /* | |
4134 * Don't execute autocommands while creating the tab pages. Must do that | |
4135 * when putting the buffers in the windows. | |
4136 */ | |
1410 | 4137 block_autocmds(); |
672 | 4138 |
4139 for (todo = count - 1; todo > 0; --todo) | |
682 | 4140 if (win_new_tabpage(0) == FAIL) |
667 | 4141 break; |
672 | 4142 |
1410 | 4143 unblock_autocmds(); |
672 | 4144 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4145 // return actual number of tab pages |
672 | 4146 return (count - todo); |
667 | 4147 } |
4148 | |
4149 /* | |
671 | 4150 * Return TRUE when "tpc" points to a valid tab page. |
4151 */ | |
4152 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4153 valid_tabpage(tabpage_T *tpc) |
671 | 4154 { |
4155 tabpage_T *tp; | |
4156 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4157 FOR_ALL_TABPAGES(tp) |
671 | 4158 if (tp == tpc) |
4159 return TRUE; | |
4160 return FALSE; | |
4161 } | |
4162 | |
4163 /* | |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4164 * 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
|
4165 * valid. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4166 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4167 int |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4168 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
|
4169 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4170 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
|
4171 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
|
4172 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4173 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
|
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 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
|
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 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
|
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 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
|
4180 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
|
4181 } |
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 FALSE; |
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 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4185 // 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
|
4186 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
|
4187 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4188 |
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 * 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
|
4191 * 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
|
4192 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4193 void |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4194 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
|
4195 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4196 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
|
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 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
|
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 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
|
4201 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
|
4202 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4203 else |
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 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
|
4206 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
|
4207 ; |
11232
a14090a30a3f
patch 8.0.0502: Coverity complains about possible NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11207
diff
changeset
|
4208 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
|
4209 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
|
4210 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4211 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4212 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
|
4213 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
|
4214 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4215 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4216 /* |
671 | 4217 * Find tab page "n" (first one is 1). Returns NULL when not found. |
4218 */ | |
4219 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4220 find_tabpage(int n) |
671 | 4221 { |
4222 tabpage_T *tp; | |
4223 int i = 1; | |
4224 | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4225 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
|
4226 return curtab; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4227 |
671 | 4228 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next) |
4229 ++i; | |
4230 return tp; | |
4231 } | |
4232 | |
4233 /* | |
685 | 4234 * Get index of tab page "tp". First one has index 1. |
686 | 4235 * When not found returns number of tab pages plus one. |
685 | 4236 */ |
4237 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4238 tabpage_index(tabpage_T *ftp) |
685 | 4239 { |
4240 int i = 1; | |
4241 tabpage_T *tp; | |
4242 | |
4243 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next) | |
4244 ++i; | |
4245 return i; | |
4246 } | |
4247 | |
4248 /* | |
674 | 4249 * Prepare for leaving the current tab page. |
4352 | 4250 * When autocommands change "curtab" we don't leave the tab page and return |
674 | 4251 * FAIL. |
4252 * Careful: When OK is returned need to get a new tab page very very soon! | |
667 | 4253 */ |
674 | 4254 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4255 leave_tabpage( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4256 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
|
4257 // NULL if unknown |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4258 int trigger_leave_autocmds UNUSED) |
667 | 4259 { |
674 | 4260 tabpage_T *tp = curtab; |
4261 | |
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
|
4262 #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
|
4263 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
|
4264 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4265 reset_VIsual_and_resel(); // stop Visual mode |
4354 | 4266 if (trigger_leave_autocmds) |
4267 { | |
4268 if (new_curbuf != curbuf) | |
4269 { | |
4270 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4271 if (curtab != tp) | |
4272 return FAIL; | |
4273 } | |
4274 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
674 | 4275 if (curtab != tp) |
4276 return FAIL; | |
4354 | 4277 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); |
4278 if (curtab != tp) | |
4279 return FAIL; | |
4280 } | |
668 | 4281 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4282 // Remove the scrollbars. They may be added back later. |
668 | 4283 if (gui.in_use) |
4284 gui_remove_scrollbars(); | |
4285 #endif | |
667 | 4286 tp->tp_curwin = curwin; |
671 | 4287 tp->tp_prevwin = prevwin; |
667 | 4288 tp->tp_firstwin = firstwin; |
4289 tp->tp_lastwin = lastwin; | |
668 | 4290 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
|
4291 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
|
4292 tp->tp_old_Columns = Columns; |
667 | 4293 firstwin = NULL; |
4294 lastwin = NULL; | |
674 | 4295 return OK; |
667 | 4296 } |
4297 | |
4298 /* | |
4299 * Start using tab page "tp". | |
675 | 4300 * Only to be used after leave_tabpage() or freeing the current tab page. |
4354 | 4301 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4302 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
667 | 4303 */ |
4304 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4305 enter_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4306 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4307 buf_T *old_curbuf UNUSED, |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4308 int trigger_enter_autocmds, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4309 int trigger_leave_autocmds) |
667 | 4310 { |
19143
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4311 int row; |
668 | 4312 int old_off = tp->tp_firstwin->w_winrow; |
870 | 4313 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
|
4314 tabpage_T *last_tab = curtab; |
668 | 4315 |
672 | 4316 curtab = tp; |
667 | 4317 firstwin = tp->tp_firstwin; |
4318 lastwin = tp->tp_lastwin; | |
4319 topframe = tp->tp_topframe; | |
870 | 4320 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4321 // 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
|
4322 // 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
|
4323 // 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
|
4324 (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
|
4325 | (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
|
4326 | (trigger_leave_autocmds ? WEE_TRIGGER_LEAVE_AUTOCMDS : 0)); |
870 | 4327 prevwin = next_prevwin; |
4328 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4329 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
|
4330 row = win_comp_pos(); // recompute w_winrow for all windows |
672 | 4331 #ifdef FEAT_DIFF |
4332 diff_need_scrollbind = TRUE; | |
4333 #endif | |
668 | 4334 |
29589
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4335 // 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
|
4336 // page. |
16477
8cc31b1b1d23
patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
4337 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
|
4338 clear_cmdline = TRUE; |
824 | 4339 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
|
4340 |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4341 // 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
|
4342 // 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
|
4343 // 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
|
4344 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
|
4345 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
|
4346 |
29589
150a39f639d9
patch 9.0.0135: comment about tabpage line above the wrong code
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4347 // 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
|
4348 // 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
|
4349 // frame sizes too. |
685 | 4350 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow |
4351 #ifdef FEAT_GUI_TABLINE | |
4352 && !gui_use_tabline() | |
4353 #endif | |
4354 )) | |
668 | 4355 shell_new_rows(); |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4356 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
|
4357 { |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4358 if (starting == 0) |
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 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
|
4361 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
|
4362 } |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4363 else |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
4364 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
|
4365 } |
668 | 4366 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4367 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
|
4368 |
668 | 4369 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4370 // 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
|
4371 // scrollbars. Have to update them anyway. |
1906 | 4372 gui_may_update_scrollbars(); |
667 | 4373 #endif |
4374 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4375 // 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
|
4376 // 'columns' have been set correctly. |
4354 | 4377 if (trigger_enter_autocmds) |
3582 | 4378 { |
4379 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); | |
4380 if (old_curbuf != curbuf) | |
4381 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4382 } | |
3413 | 4383 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
4384 redraw_all_later(UPD_NOT_VALID); |
667 | 4385 } |
4386 | |
4387 /* | |
4388 * Go to tab page "n". For ":tab N" and "Ngt". | |
685 | 4389 * When "n" is 9999 go to the last tab page. |
667 | 4390 */ |
4391 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4392 goto_tabpage(int n) |
667 | 4393 { |
16405
840fa633ad64
patch 8.1.1207: some compilers give warning messages
Bram Moolenaar <Bram@vim.org>
parents:
16401
diff
changeset
|
4394 tabpage_T *tp = NULL; // shut up compiler |
682 | 4395 tabpage_T *ttp; |
667 | 4396 int i; |
4397 | |
857 | 4398 if (text_locked()) |
4399 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4400 // 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
|
4401 text_locked_msg(); |
857 | 4402 return; |
4403 } | |
4404 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4405 // If there is only one it can't work. |
675 | 4406 if (first_tabpage->tp_next == NULL) |
4407 { | |
4408 if (n > 1) | |
4409 beep_flush(); | |
4410 return; | |
4411 } | |
4412 | |
667 | 4413 if (n == 0) |
4414 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4415 // No count, go to next tab page, wrap around end. |
674 | 4416 if (curtab->tp_next == NULL) |
667 | 4417 tp = first_tabpage; |
4418 else | |
674 | 4419 tp = curtab->tp_next; |
667 | 4420 } |
682 | 4421 else if (n < 0) |
4422 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4423 // "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
|
4424 // this N times. |
682 | 4425 ttp = curtab; |
4426 for (i = n; i < 0; ++i) | |
4427 { | |
4428 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL; | |
4429 tp = tp->tp_next) | |
4430 ; | |
4431 ttp = tp; | |
4432 } | |
4433 } | |
685 | 4434 else if (n == 9999) |
4435 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4436 // Go to last tab page. |
685 | 4437 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next) |
4438 ; | |
4439 } | |
667 | 4440 else |
4441 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4442 // Go to tab page "n". |
685 | 4443 tp = find_tabpage(n); |
671 | 4444 if (tp == NULL) |
4445 { | |
4446 beep_flush(); | |
4447 return; | |
4448 } | |
667 | 4449 } |
4450 | |
4354 | 4451 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 4452 |
4453 #ifdef FEAT_GUI_TABLINE | |
4454 if (gui_use_tabline()) | |
690 | 4455 gui_mch_set_curtab(tabpage_index(curtab)); |
685 | 4456 #endif |
4457 } | |
4458 | |
4459 /* | |
4460 * Go to tabpage "tp". | |
4354 | 4461 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4462 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
685 | 4463 * Note: doesn't update the GUI tab. |
4464 */ | |
4465 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4466 goto_tabpage_tp( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4467 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4468 int trigger_enter_autocmds, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4469 int trigger_leave_autocmds) |
685 | 4470 { |
27813
126826449b54
patch 8.2.4432: cannot use settabvar() while the cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
27805
diff
changeset
|
4471 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
|
4472 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
|
4473 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4474 // 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
|
4475 set_keep_msg(NULL, 0); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4476 |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
4477 skip_win_fix_scroll = TRUE; |
4354 | 4478 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer, |
4479 trigger_leave_autocmds) == OK) | |
674 | 4480 { |
4481 if (valid_tabpage(tp)) | |
4354 | 4482 enter_tabpage(tp, curbuf, trigger_enter_autocmds, |
4483 trigger_leave_autocmds); | |
674 | 4484 else |
4354 | 4485 enter_tabpage(curtab, curbuf, trigger_enter_autocmds, |
4486 trigger_leave_autocmds); | |
674 | 4487 } |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
4488 skip_win_fix_scroll = FALSE; |
667 | 4489 } |
7 | 4490 |
4491 /* | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4492 * 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
|
4493 * 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
|
4494 */ |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4495 int |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4496 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
|
4497 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4498 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
|
4499 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4500 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
|
4501 return OK; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4502 } |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4503 return FAIL; |
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 |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21020
diff
changeset
|
4506 /* |
825 | 4507 * Enter window "wp" in tab page "tp". |
4508 * Also updates the GUI tab. | |
4509 */ | |
4510 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4511 goto_tabpage_win(tabpage_T *tp, win_T *wp) |
825 | 4512 { |
4354 | 4513 goto_tabpage_tp(tp, TRUE, TRUE); |
825 | 4514 if (curtab == tp && win_valid(wp)) |
4515 { | |
4516 win_enter(wp, TRUE); | |
4517 # ifdef FEAT_GUI_TABLINE | |
4518 if (gui_use_tabline()) | |
4519 gui_mch_set_curtab(tabpage_index(curtab)); | |
4520 # endif | |
4521 } | |
4522 } | |
4523 | |
4524 /* | |
6775 | 4525 * Move the current tab page to after tab page "nr". |
682 | 4526 */ |
4527 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4528 tabpage_move(int nr) |
682 | 4529 { |
6775 | 4530 int n = 1; |
4531 tabpage_T *tp, *tp_dst; | |
682 | 4532 |
4533 if (first_tabpage->tp_next == NULL) | |
4534 return; | |
4535 | |
6775 | 4536 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next) |
4537 ++n; | |
4538 | |
4539 if (tp == curtab || (nr > 0 && tp->tp_next != NULL | |
4540 && tp->tp_next == curtab)) | |
4541 return; | |
4542 | |
4543 tp_dst = tp; | |
4544 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4545 // Remove the current tab page from the list of tab pages. |
682 | 4546 if (curtab == first_tabpage) |
4547 first_tabpage = curtab->tp_next; | |
4548 else | |
4549 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4550 FOR_ALL_TABPAGES(tp) |
682 | 4551 if (tp->tp_next == curtab) |
4552 break; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4553 if (tp == NULL) // "cannot happen" |
682 | 4554 return; |
4555 tp->tp_next = curtab->tp_next; | |
4556 } | |
4557 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4558 // Re-insert it at the specified position. |
6775 | 4559 if (nr <= 0) |
682 | 4560 { |
4561 curtab->tp_next = first_tabpage; | |
4562 first_tabpage = curtab; | |
4563 } | |
4564 else | |
4565 { | |
6775 | 4566 curtab->tp_next = tp_dst->tp_next; |
4567 tp_dst->tp_next = curtab; | |
682 | 4568 } |
4569 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4570 // Need to redraw the tabline. Tab page contents doesn't change. |
682 | 4571 redraw_tabline = TRUE; |
4572 } | |
4573 | |
4574 | |
4575 /* | |
7 | 4576 * Go to another window. |
4577 * When jumping to another buffer, stop Visual mode. Do this before | |
4578 * changing windows so we can yank the selection into the '*' register. | |
4579 * When jumping to another window on the same buffer, adjust its cursor | |
4580 * position to keep the same Visual area. | |
4581 */ | |
4582 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4583 win_goto(win_T *wp) |
7 | 4584 { |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4585 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4586 win_T *owp = curwin; |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4587 #endif |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4588 |
19166
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4589 #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
|
4590 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
|
4591 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
|
4592 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
|
4593 { |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
4594 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
|
4595 return; |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4596 } |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4597 #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
|
4598 if (text_or_buf_locked()) |
7 | 4599 { |
4600 beep_flush(); | |
4601 return; | |
4602 } | |
631 | 4603 |
7 | 4604 if (wp->w_buffer != curbuf) |
4605 reset_VIsual_and_resel(); | |
4606 else if (VIsual_active) | |
4607 wp->w_cursor = curwin->w_cursor; | |
4608 | |
4609 #ifdef FEAT_GUI | |
4610 need_mouse_correct = TRUE; | |
4611 #endif | |
4612 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
|
4613 |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4614 #ifdef FEAT_CONCEAL |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15380
diff
changeset
|
4615 // Conceal cursor line in previous window, unconceal in current window. |
4094 | 4616 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
|
4617 redrawWinline(owp, owp->w_cursor.lnum); |
4094 | 4618 if (curwin->w_p_cole > 0 && !msg_scrolled) |
4619 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
|
4620 #endif |
7 | 4621 } |
4622 | |
25567
0082503ff2ff
patch 8.2.3320: some local functions are not static
Bram Moolenaar <Bram@vim.org>
parents:
25553
diff
changeset
|
4623 #if defined(FEAT_PERL) || defined(PROTO) |
7 | 4624 /* |
4625 * Find window number "winnr" (counting top to bottom). | |
4626 */ | |
4627 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4628 win_find_nr(int winnr) |
7 | 4629 { |
4630 win_T *wp; | |
4631 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4632 FOR_ALL_WINDOWS(wp) |
7 | 4633 if (--winnr == 0) |
4634 break; | |
4635 return wp; | |
4636 } | |
4637 #endif | |
4638 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4639 #if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO) |
4429 | 4640 /* |
4641 * Find the tabpage for window "win". | |
4642 */ | |
4643 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4644 win_find_tabpage(win_T *win) |
4429 | 4645 { |
4646 win_T *wp; | |
4647 tabpage_T *tp; | |
4648 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4649 FOR_ALL_TAB_WINDOWS(tp, wp) |
4429 | 4650 if (wp == win) |
4651 return tp; | |
4652 return NULL; | |
4653 } | |
4654 #endif | |
4655 | |
7 | 4656 /* |
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
|
4657 * 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
|
4658 * 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
|
4659 * 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
|
4660 * Returns the specified window if the neighbor is not found. |
7 | 4661 */ |
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
|
4662 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
|
4663 win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count) |
7 | 4664 { |
4665 frame_T *fr; | |
4666 frame_T *nfr; | |
4667 frame_T *foundfr; | |
4668 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4669 #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
|
4670 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
|
4671 // 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
|
4672 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
|
4673 #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
|
4674 foundfr = wp->w_frame; |
7 | 4675 while (count--) |
4676 { | |
4677 /* | |
4678 * First go upwards in the tree of frames until we find a upwards or | |
4679 * downwards neighbor. | |
4680 */ | |
4681 fr = foundfr; | |
4682 for (;;) | |
4683 { | |
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
|
4684 if (fr == tp->tp_topframe) |
7 | 4685 goto end; |
4686 if (up) | |
4687 nfr = fr->fr_prev; | |
4688 else | |
4689 nfr = fr->fr_next; | |
4690 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL) | |
4691 break; | |
4692 fr = fr->fr_parent; | |
4693 } | |
4694 | |
4695 /* | |
4696 * Now go downwards to find the bottom or top frame in it. | |
4697 */ | |
4698 for (;;) | |
4699 { | |
4700 if (nfr->fr_layout == FR_LEAF) | |
4701 { | |
4702 foundfr = nfr; | |
4703 break; | |
4704 } | |
4705 fr = nfr->fr_child; | |
4706 if (nfr->fr_layout == FR_ROW) | |
4707 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4708 // Find the frame at the cursor row. |
7 | 4709 while (fr->fr_next != NULL |
4710 && 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
|
4711 <= wp->w_wincol + wp->w_wcol) |
7 | 4712 fr = fr->fr_next; |
4713 } | |
4714 if (nfr->fr_layout == FR_COL && up) | |
4715 while (fr->fr_next != NULL) | |
4716 fr = fr->fr_next; | |
4717 nfr = fr; | |
4718 } | |
4719 } | |
4720 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
|
4721 return foundfr != NULL ? foundfr->fr_win : NULL; |
7 | 4722 } |
4723 | |
4724 /* | |
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
|
4725 * Move to window above or below "count" times. |
7 | 4726 */ |
4727 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
|
4728 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
|
4729 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
|
4730 long count) |
7 | 4731 { |
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
|
4732 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
|
4733 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4734 #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
|
4735 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
|
4736 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4737 #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
|
4738 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
|
4739 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
|
4740 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
|
4741 } |
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 |
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 * 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
|
4745 * 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
|
4746 * 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
|
4747 * 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
|
4748 */ |
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 win_T * |
16354
b3bc3ba07bef
patch 8.1.1182: some function prototypes are outdated
Bram Moolenaar <Bram@vim.org>
parents:
16271
diff
changeset
|
4750 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
|
4751 { |
7 | 4752 frame_T *fr; |
4753 frame_T *nfr; | |
4754 frame_T *foundfr; | |
4755 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4756 #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
|
4757 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
|
4758 // 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
|
4759 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
|
4760 #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
|
4761 foundfr = wp->w_frame; |
7 | 4762 while (count--) |
4763 { | |
4764 /* | |
4765 * First go upwards in the tree of frames until we find a left or | |
4766 * right neighbor. | |
4767 */ | |
4768 fr = foundfr; | |
4769 for (;;) | |
4770 { | |
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
|
4771 if (fr == tp->tp_topframe) |
7 | 4772 goto end; |
4773 if (left) | |
4774 nfr = fr->fr_prev; | |
4775 else | |
4776 nfr = fr->fr_next; | |
4777 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL) | |
4778 break; | |
4779 fr = fr->fr_parent; | |
4780 } | |
4781 | |
4782 /* | |
4783 * Now go downwards to find the leftmost or rightmost frame in it. | |
4784 */ | |
4785 for (;;) | |
4786 { | |
4787 if (nfr->fr_layout == FR_LEAF) | |
4788 { | |
4789 foundfr = nfr; | |
4790 break; | |
4791 } | |
4792 fr = nfr->fr_child; | |
4793 if (nfr->fr_layout == FR_COL) | |
4794 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4795 // Find the frame at the cursor row. |
7 | 4796 while (fr->fr_next != NULL |
4797 && 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
|
4798 <= wp->w_winrow + wp->w_wrow) |
7 | 4799 fr = fr->fr_next; |
4800 } | |
4801 if (nfr->fr_layout == FR_ROW && left) | |
4802 while (fr->fr_next != NULL) | |
4803 fr = fr->fr_next; | |
4804 nfr = fr; | |
4805 } | |
4806 } | |
4807 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
|
4808 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
|
4809 } |
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 |
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 * 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
|
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 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
|
4815 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
|
4816 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
|
4817 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
|
4818 { |
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 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
|
4820 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4821 #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
|
4822 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
|
4823 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4824 #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
|
4825 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
|
4826 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
|
4827 win_goto(win); |
7 | 4828 } |
4829 | |
4830 /* | |
4831 * Make window "wp" the current window. | |
4832 */ | |
4833 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4834 win_enter(win_T *wp, int undo_sync) |
7 | 4835 { |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4836 (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
|
4837 | WEE_TRIGGER_ENTER_AUTOCMDS | WEE_TRIGGER_LEAVE_AUTOCMDS); |
7 | 4838 } |
4839 | |
4840 /* | |
27032
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4841 * 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
|
4842 * needed. |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4843 */ |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4844 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
|
4845 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
|
4846 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4847 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
|
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 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
|
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 // 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
|
4852 // 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
|
4853 // 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
|
4854 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
|
4855 { |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4856 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
|
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 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
|
4859 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
|
4860 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4861 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
|
4862 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
|
4863 else |
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 = 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
|
4865 |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4866 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
|
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 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
|
4869 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
|
4870 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4871 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4872 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
|
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 // 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
|
4875 // 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
|
4876 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
|
4877 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
|
4878 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
|
4879 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
|
4880 } |
18cafa092e8d
patch 8.2.4045: some global functions are only used in one file
Bram Moolenaar <Bram@vim.org>
parents:
27028
diff
changeset
|
4881 } |
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 /* |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4884 * 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
|
4885 * 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
|
4886 * 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
|
4887 * Returns TRUE when dont_parse_messages was decremented. |
7 | 4888 */ |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4889 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
|
4890 win_enter_ext(win_T *wp, int flags) |
7 | 4891 { |
4892 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
|
4893 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
|
4894 int did_decrement = FALSE; |
7 | 4895 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4896 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
|
4897 return FALSE; |
7 | 4898 |
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
|
4899 #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
|
4900 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
|
4901 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
|
4902 #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
|
4903 |
25499
5ebf9bb1cbcd
patch 8.2.3286: win_enter_ext() has too many boolean arguments
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
4904 if (!curwin_invalid && (flags & WEE_TRIGGER_LEAVE_AUTOCMDS)) |
7 | 4905 { |
4906 /* | |
4907 * Be careful: If autocommands delete the window, return now. | |
4908 */ | |
4909 if (wp->w_buffer != curbuf) | |
4910 { | |
4911 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4912 other_buffer = TRUE; | |
4913 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
|
4914 return FALSE; |
7 | 4915 } |
4916 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
4917 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
|
4918 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4919 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4920 // autocmds may abort script processing |
7 | 4921 if (aborting()) |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4922 return FALSE; |
7 | 4923 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4924 } |
7 | 4925 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4926 // 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
|
4927 if ((flags & WEE_UNDO_SYNC) && curbuf != wp->w_buffer) |
825 | 4928 u_sync(FALSE); |
5977 | 4929 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4930 // 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
|
4931 // 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
|
4932 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
|
4933 update_topline(); |
5977 | 4934 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4935 // may have to copy the buffer options when 'cpo' contains 'S' |
7 | 4936 if (wp->w_buffer != curbuf) |
4937 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP); | |
4938 if (!curwin_invalid) | |
4939 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4940 prevwin = curwin; // remember for CTRL-W p |
7 | 4941 curwin->w_redr_status = TRUE; |
4942 } | |
4943 curwin = wp; | |
4944 curbuf = wp->w_buffer; | |
4945 check_cursor(); | |
4946 if (!virtual_active()) | |
4947 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
|
4948 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
|
4949 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
|
4950 else |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
4951 win_fix_cursor(TRUE); |
7 | 4952 |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4953 // 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
|
4954 // autocommands. |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4955 #ifdef MESSAGE_QUEUE |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4956 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
|
4957 { |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4958 --dont_parse_messages; |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4959 did_decrement = TRUE; |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4960 } |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4961 #endif |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
4962 |
26121
2c64a420ce7e
patch 8.2.3593: directory is wrong after executing "lcd" with win_execute()
Bram Moolenaar <Bram@vim.org>
parents:
26117
diff
changeset
|
4963 fix_current_dir(); |
7 | 4964 |
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
|
4965 #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
|
4966 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
|
4967 #endif |
18283
0cb608fc9c60
patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents:
18255
diff
changeset
|
4968 // 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
|
4969 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
|
4970 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
|
4971 if (flags & WEE_TRIGGER_ENTER_AUTOCMDS) |
4354 | 4972 { |
4973 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); | |
4974 if (other_buffer) | |
4975 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4976 } | |
7 | 4977 |
4978 maketitle(); | |
4979 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
|
4980 #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
|
4981 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
|
4982 // 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
|
4983 redraw_mode = TRUE; |
18255
3f51e026de28
patch 8.1.2122: cannot build without terminal feature
Bram Moolenaar <Bram@vim.org>
parents:
18253
diff
changeset
|
4984 #endif |
672 | 4985 redraw_tabline = TRUE; |
7 | 4986 if (restart_edit) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
4987 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
|
4988 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4989 // 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
|
4990 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
|
4991 #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
|
4992 && !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
|
4993 #endif |
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4994 ) |
7 | 4995 win_setheight((int)p_wh); |
4996 else if (curwin->w_height == 0) | |
4997 win_setheight(1); | |
4998 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4999 // set window width to desired minimal value |
779 | 5000 if (curwin->w_width < p_wiw && !curwin->w_p_wfw) |
7 | 5001 win_setwidth((int)p_wiw); |
5002 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
5003 setmouse(); // in case jumped to/from help buffer |
7 | 5004 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5005 // 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
|
5006 DO_AUTOCHDIR; |
25501
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
5007 |
a1ed55c02e80
patch 8.2.3287: channel events not handled in BufEnter autocommand
Bram Moolenaar <Bram@vim.org>
parents:
25499
diff
changeset
|
5008 return did_decrement; |
7 | 5009 } |
5010 | |
26121
2c64a420ce7e
patch 8.2.3593: directory is wrong after executing "lcd" with win_execute()
Bram Moolenaar <Bram@vim.org>
parents:
26117
diff
changeset
|
5011 /* |
825 | 5012 * Jump to the first open window that contains buffer "buf", if one exists. |
5013 * Returns a pointer to the window found, otherwise NULL. | |
7 | 5014 */ |
5015 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5016 buf_jump_open_win(buf_T *buf) |
7 | 5017 { |
6307 | 5018 win_T *wp = NULL; |
5019 | |
5020 if (curwin->w_buffer == buf) | |
5021 wp = curwin; | |
5022 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5023 FOR_ALL_WINDOWS(wp) |
6307 | 5024 if (wp->w_buffer == buf) |
5025 break; | |
7 | 5026 if (wp != NULL) |
5027 win_enter(wp, FALSE); | |
5028 return wp; | |
5029 } | |
825 | 5030 |
5031 /* | |
5032 * 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
|
5033 * if one exists. First search in the windows present in the current tab page. |
825 | 5034 * Returns a pointer to the window found, otherwise NULL. |
5035 */ | |
5036 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5037 buf_jump_open_tab(buf_T *buf) |
825 | 5038 { |
6307 | 5039 win_T *wp = buf_jump_open_win(buf); |
825 | 5040 tabpage_T *tp; |
5041 | |
5042 if (wp != NULL) | |
5043 return wp; | |
5044 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5045 FOR_ALL_TABPAGES(tp) |
825 | 5046 if (tp != curtab) |
5047 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
5048 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
825 | 5049 if (wp->w_buffer == buf) |
5050 break; | |
5051 if (wp != NULL) | |
5052 { | |
5053 goto_tabpage_win(tp, wp); | |
5054 if (curwin != wp) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5055 wp = NULL; // something went wrong |
825 | 5056 break; |
5057 } | |
5058 } | |
5059 return wp; | |
5060 } | |
7 | 5061 |
9223
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
5062 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
|
5063 |
7 | 5064 /* |
1906 | 5065 * Allocate a window structure and link it in the window list when "hidden" is |
5066 * FALSE. | |
7 | 5067 */ |
5068 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5069 win_alloc(win_T *after UNUSED, int hidden UNUSED) |
7 | 5070 { |
3263 | 5071 win_T *new_wp; |
7 | 5072 |
5073 /* | |
5074 * allocate window structure and linesizes arrays | |
5075 */ | |
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
|
5076 new_wp = ALLOC_CLEAR_ONE(win_T); |
4287 | 5077 if (new_wp == NULL) |
5078 return NULL; | |
5079 | |
5080 if (win_alloc_lines(new_wp) == FAIL) | |
3263 | 5081 { |
5082 vim_free(new_wp); | |
4287 | 5083 return NULL; |
5084 } | |
5085 | |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
5086 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
|
5087 |
4287 | 5088 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5089 // 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
|
5090 new_wp->w_vars = dict_alloc_id(aid_newwin_wvars); |
4287 | 5091 if (new_wp->w_vars == NULL) |
5092 { | |
5093 win_free_lsize(new_wp); | |
5094 vim_free(new_wp); | |
5095 return NULL; | |
5096 } | |
5097 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE); | |
5098 #endif | |
5099 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5100 // 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
|
5101 // 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
|
5102 // event. |
4287 | 5103 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
5104 |
4287 | 5105 /* |
5106 * link the window in the window list | |
5107 */ | |
5108 if (!hidden) | |
5109 win_append(after, new_wp); | |
5110 new_wp->w_wincol = 0; | |
5111 new_wp->w_width = Columns; | |
5112 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5113 // position the display and the cursor at the top of the file. |
4287 | 5114 new_wp->w_topline = 1; |
7 | 5115 #ifdef FEAT_DIFF |
4287 | 5116 new_wp->w_topfill = 0; |
5117 #endif | |
5118 new_wp->w_botline = 2; | |
5119 new_wp->w_cursor.lnum = 1; | |
5120 new_wp->w_scbind_pos = 1; | |
5121 | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5122 // 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
|
5123 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
|
5124 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
|
5125 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5126 // We won't calculate w_fraction until resizing the window |
4287 | 5127 new_wp->w_fraction = 0; |
5128 new_wp->w_prev_fraction_row = -1; | |
7 | 5129 |
5130 #ifdef FEAT_GUI | |
4287 | 5131 if (gui.in_use) |
5132 { | |
5133 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT], | |
5134 SBAR_LEFT, new_wp); | |
5135 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT], | |
5136 SBAR_RIGHT, new_wp); | |
5137 } | |
7 | 5138 #endif |
5139 #ifdef FEAT_FOLDING | |
4287 | 5140 foldInitWin(new_wp); |
7 | 5141 #endif |
4287 | 5142 unblock_autocmds(); |
1326 | 5143 #ifdef FEAT_SEARCH_EXTRA |
4287 | 5144 new_wp->w_match_head = NULL; |
5145 new_wp->w_next_match_id = 4; | |
5146 #endif | |
3263 | 5147 return new_wp; |
7 | 5148 } |
5149 | |
5150 /* | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5151 * Remove window 'wp' from the window list and free the structure. |
7 | 5152 */ |
5153 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5154 win_free( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5155 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5156 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 5157 { |
5158 int i; | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5159 buf_T *buf; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5160 wininfo_T *wip; |
7 | 5161 |
1918 | 5162 #ifdef FEAT_FOLDING |
5163 clearFolding(wp); | |
5164 #endif | |
5165 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5166 // reduce the reference count to the argument list. |
1918 | 5167 alist_unlink(wp->w_alist); |
5168 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5169 // 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
|
5170 // gui_mch_destroy_scrollbar() may trigger a FocusGained event. |
1410 | 5171 block_autocmds(); |
1114 | 5172 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5173 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5174 lua_window_free(wp); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5175 #endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
5176 |
14 | 5177 #ifdef FEAT_MZSCHEME |
5178 mzscheme_window_free(wp); | |
5179 #endif | |
5180 | |
7 | 5181 #ifdef FEAT_PERL |
5182 perl_win_free(wp); | |
5183 #endif | |
5184 | |
5185 #ifdef FEAT_PYTHON | |
5186 python_window_free(wp); | |
5187 #endif | |
5188 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5189 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5190 python3_window_free(wp); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5191 #endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
5192 |
7 | 5193 #ifdef FEAT_TCL |
5194 tcl_window_free(wp); | |
5195 #endif | |
5196 | |
5197 #ifdef FEAT_RUBY | |
5198 ruby_window_free(wp); | |
5199 #endif | |
5200 | |
5201 clear_winopt(&wp->w_onebuf_opt); | |
5202 clear_winopt(&wp->w_allbuf_opt); | |
5203 | |
26077
ad90d7eee236
patch 8.2.3572: memory leak when closing window and using "multispace"
Bram Moolenaar <Bram@vim.org>
parents:
25567
diff
changeset
|
5204 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
|
5205 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
|
5206 |
7 | 5207 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5208 vars_clear(&wp->w_vars->dv_hashtab); // free all w: variables |
4287 | 5209 hash_init(&wp->w_vars->dv_hashtab); |
5210 unref_var_dict(wp->w_vars); | |
7 | 5211 #endif |
5212 | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5213 { |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5214 tabpage_T *ttp; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5215 |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5216 if (prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5217 prevwin = NULL; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5218 FOR_ALL_TABPAGES(ttp) |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5219 if (ttp->tp_prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5220 ttp->tp_prevwin = NULL; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
5221 } |
7 | 5222 win_free_lsize(wp); |
5223 | |
5224 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
|
5225 { |
7 | 5226 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
|
5227 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
|
5228 } |
7 | 5229 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
|
5230 vim_free(wp->w_prevdir); |
1326 | 5231 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5232 // 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
|
5233 // 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
|
5234 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
|
5235 FOR_ALL_BUF_WININFO(buf, wip) |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5236 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
|
5237 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5238 wininfo_T *wip2; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5239 |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5240 // 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
|
5241 // 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
|
5242 // 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
|
5243 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
|
5244 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
|
5245 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5246 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
|
5247 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
|
5248 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
|
5249 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
|
5250 else |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5251 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
|
5252 free_wininfo(wip2); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5253 break; |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5254 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
5255 |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5256 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
|
5257 } |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
5258 |
7 | 5259 #ifdef FEAT_SEARCH_EXTRA |
1326 | 5260 clear_matches(wp); |
5261 #endif | |
5262 | |
7 | 5263 free_jumplist(wp); |
5264 | |
643 | 5265 #ifdef FEAT_QUICKFIX |
5266 qf_free_all(wp); | |
5267 #endif | |
5268 | |
7 | 5269 #ifdef FEAT_GUI |
5270 if (gui.in_use) | |
5271 { | |
5272 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]); | |
5273 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]); | |
5274 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5275 #endif // FEAT_GUI |
7 | 5276 |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5277 #ifdef FEAT_MENU |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5278 remove_winbar(wp); |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5279 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5280 #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
|
5281 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
|
5282 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
|
5283 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
|
5284 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
|
5285 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
|
5286 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
|
5287 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
|
5288 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
|
5289 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
|
5290 #endif |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5291 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5292 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
5293 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
|
5294 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5295 |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5296 if (win_valid_any_tab(wp)) |
1918 | 5297 win_remove(wp, tp); |
5958 | 5298 if (autocmd_busy) |
5299 { | |
5300 wp->w_next = au_pending_free_win; | |
5301 au_pending_free_win = wp; | |
5302 } | |
5303 else | |
5304 vim_free(wp); | |
1114 | 5305 |
1410 | 5306 unblock_autocmds(); |
7 | 5307 } |
5308 | |
5309 /* | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5310 * 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
|
5311 * popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5312 */ |
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
|
5313 int |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5314 win_unlisted(win_T *wp) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5315 { |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5316 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
|
5317 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5318 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5319 #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
|
5320 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5321 * 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
|
5322 * 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
|
5323 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5324 void |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5325 win_free_popup(win_T *win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5326 { |
28285
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5327 if (win->w_buffer != NULL) |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5328 { |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5329 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
|
5330 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
|
5331 else |
a4aad5142959
patch 8.2.4668: buffer allocation failures insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
28211
diff
changeset
|
5332 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
|
5333 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5334 # 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
|
5335 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
|
5336 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
|
5337 # endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5338 vim_free(win->w_frame); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5339 win_free(win, NULL); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5340 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5341 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5342 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5343 /* |
7 | 5344 * Append window "wp" in the window list after window "after". |
5345 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
5346 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5347 win_append(win_T *after, win_T *wp) |
7 | 5348 { |
5349 win_T *before; | |
5350 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5351 if (after == NULL) // after NULL is in front of the first |
7 | 5352 before = firstwin; |
5353 else | |
5354 before = after->w_next; | |
5355 | |
5356 wp->w_next = before; | |
5357 wp->w_prev = after; | |
5358 if (after == NULL) | |
5359 firstwin = wp; | |
5360 else | |
5361 after->w_next = wp; | |
5362 if (before == NULL) | |
5363 lastwin = wp; | |
5364 else | |
5365 before->w_prev = wp; | |
5366 } | |
5367 | |
5368 /* | |
5369 * Remove a window from the window list. | |
5370 */ | |
1906 | 5371 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5372 win_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5373 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5374 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 5375 { |
5376 if (wp->w_prev != NULL) | |
5377 wp->w_prev->w_next = wp->w_next; | |
671 | 5378 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
|
5379 firstwin = curtab->tp_firstwin = wp->w_next; |
7 | 5380 else |
671 | 5381 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
|
5382 |
7 | 5383 if (wp->w_next != NULL) |
5384 wp->w_next->w_prev = wp->w_prev; | |
671 | 5385 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
|
5386 lastwin = curtab->tp_lastwin = wp->w_prev; |
7 | 5387 else |
671 | 5388 tp->tp_lastwin = wp->w_prev; |
7 | 5389 } |
5390 | |
5391 /* | |
5392 * Append frame "frp" in a frame list after frame "after". | |
5393 */ | |
5394 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5395 frame_append(frame_T *after, frame_T *frp) |
7 | 5396 { |
5397 frp->fr_next = after->fr_next; | |
5398 after->fr_next = frp; | |
5399 if (frp->fr_next != NULL) | |
5400 frp->fr_next->fr_prev = frp; | |
5401 frp->fr_prev = after; | |
5402 } | |
5403 | |
5404 /* | |
5405 * Insert frame "frp" in a frame list before frame "before". | |
5406 */ | |
5407 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5408 frame_insert(frame_T *before, frame_T *frp) |
7 | 5409 { |
5410 frp->fr_next = before; | |
5411 frp->fr_prev = before->fr_prev; | |
5412 before->fr_prev = frp; | |
5413 if (frp->fr_prev != NULL) | |
5414 frp->fr_prev->fr_next = frp; | |
5415 else | |
5416 frp->fr_parent->fr_child = frp; | |
5417 } | |
5418 | |
5419 /* | |
5420 * Remove a frame from a frame list. | |
5421 */ | |
5422 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5423 frame_remove(frame_T *frp) |
7 | 5424 { |
5425 if (frp->fr_prev != NULL) | |
5426 frp->fr_prev->fr_next = frp->fr_next; | |
5427 else | |
5428 frp->fr_parent->fr_child = frp->fr_next; | |
5429 if (frp->fr_next != NULL) | |
5430 frp->fr_next->fr_prev = frp->fr_prev; | |
5431 } | |
5432 | |
5433 /* | |
5434 * Allocate w_lines[] for window "wp". | |
5435 * Return FAIL for failure, OK for success. | |
5436 */ | |
5437 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5438 win_alloc_lines(win_T *wp) |
7 | 5439 { |
5440 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
|
5441 wp->w_lines = ALLOC_CLEAR_MULT(wline_T, Rows); |
7 | 5442 if (wp->w_lines == NULL) |
5443 return FAIL; | |
5444 return OK; | |
5445 } | |
5446 | |
5447 /* | |
5448 * free lsize arrays for a window | |
5449 */ | |
5450 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5451 win_free_lsize(win_T *wp) |
7 | 5452 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5453 // TODO: why would wp be NULL here? |
5952 | 5454 if (wp != NULL) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
5455 VIM_CLEAR(wp->w_lines); |
7 | 5456 } |
5457 | |
5458 /* | |
5459 * Called from win_new_shellsize() after Rows changed. | |
671 | 5460 * This only does the current tab page, others must be done when made active. |
7 | 5461 */ |
5462 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5463 shell_new_rows(void) |
7 | 5464 { |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5465 int h = (int)ROWS_AVAIL; |
7 | 5466 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5467 if (firstwin == NULL) // not initialized yet |
7 | 5468 return; |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5469 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
|
5470 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 |
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5472 // 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
|
5473 // 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
|
5474 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
|
5475 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
|
5476 frame_new_height(topframe, h, FALSE, FALSE); |
7 | 5477 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5478 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5479 compute_cmdrow(); |
824 | 5480 curtab->tp_ch_used = p_ch; |
170 | 5481 |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
5482 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
|
5483 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
|
5484 |
7 | 5485 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5486 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5487 if (p_ea) |
5488 win_equal(curwin, FALSE, 'v'); | |
5489 #endif | |
5490 } | |
5491 | |
5492 /* | |
5493 * Called from win_new_shellsize() after Columns changed. | |
5494 */ | |
5495 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5496 shell_new_columns(void) |
7 | 5497 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5498 if (firstwin == NULL) // not initialized yet |
7 | 5499 return; |
779 | 5500 |
26488
06aa56b32df4
patch 8.2.3774: test for command line height fails
Bram Moolenaar <Bram@vim.org>
parents:
26486
diff
changeset
|
5501 // 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
|
5502 // 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
|
5503 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
|
5504 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
|
5505 frame_new_width(topframe, (int)Columns, FALSE, FALSE); |
779 | 5506 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5507 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5508 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5509 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5510 if (p_ea) |
5511 win_equal(curwin, FALSE, 'h'); | |
5512 #endif | |
5513 } | |
5514 | |
5515 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
5516 /* | |
5517 * Save the size of all windows in "gap". | |
5518 */ | |
5519 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5520 win_size_save(garray_T *gap) |
7 | 5521 |
5522 { | |
5523 win_T *wp; | |
5524 | |
27028
c9474ae175f4
patch 8.2.4043: using int for second argument of ga_init2()
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
5525 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
|
5526 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
|
5527 { |
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 // 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
|
5529 ((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
|
5530 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5531 FOR_ALL_WINDOWS(wp) |
7 | 5532 { |
5533 ((int *)gap->ga_data)[gap->ga_len++] = | |
5534 wp->w_width + wp->w_vsep_width; | |
5535 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height; | |
5536 } | |
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
|
5537 } |
7 | 5538 } |
5539 | |
5540 /* | |
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
|
5541 * 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
|
5542 * and 'lines' didn't change. |
7 | 5543 * Does not free the growarray. |
5544 */ | |
5545 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5546 win_size_restore(garray_T *gap) |
7 | 5547 { |
5548 win_T *wp; | |
6058 | 5549 int i, j; |
7 | 5550 |
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
|
5551 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
|
5552 && ((int *)gap->ga_data)[0] == Rows) |
7 | 5553 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5554 // 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
|
5555 // difficult to get right. The easy way out is to do it twice. |
6058 | 5556 for (j = 0; j < 2; ++j) |
7 | 5557 { |
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
|
5558 i = 1; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5559 FOR_ALL_WINDOWS(wp) |
6058 | 5560 { |
5561 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]); | |
5562 win_setheight_win(((int *)gap->ga_data)[i++], wp); | |
5563 } | |
7 | 5564 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5565 // recompute the window positions |
7 | 5566 (void)win_comp_pos(); |
5567 } | |
5568 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5569 #endif // FEAT_CMDWIN |
7 | 5570 |
5571 /* | |
5572 * Update the position for all windows, using the width and height of the | |
5573 * frames. | |
5574 * Returns the row just after the last window. | |
5575 */ | |
668 | 5576 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5577 win_comp_pos(void) |
7 | 5578 { |
685 | 5579 int row = tabline_height(); |
7 | 5580 int col = 0; |
5581 | |
5582 frame_comp_pos(topframe, &row, &col); | |
5583 return row; | |
5584 } | |
5585 | |
5586 /* | |
5587 * Update the position of the windows in frame "topfrp", using the width and | |
5588 * height of the frames. | |
5589 * "*row" and "*col" are the top-left position of the frame. They are updated | |
5590 * to the bottom-right position plus one. | |
5591 */ | |
5592 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5593 frame_comp_pos(frame_T *topfrp, int *row, int *col) |
7 | 5594 { |
5595 win_T *wp; | |
5596 frame_T *frp; | |
5597 int startcol; | |
5598 int startrow; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5599 int h; |
7 | 5600 |
5601 wp = topfrp->fr_win; | |
5602 if (wp != NULL) | |
5603 { | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
5604 if (wp->w_winrow != *row || wp->w_wincol != *col) |
7 | 5605 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5606 // position changed, redraw |
7 | 5607 wp->w_winrow = *row; |
5608 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
|
5609 redraw_win_later(wp, UPD_NOT_VALID); |
7 | 5610 wp->w_redr_status = TRUE; |
5611 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5612 // 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
|
5613 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
|
5614 *row += h > topfrp->fr_height ? topfrp->fr_height : h; |
7 | 5615 *col += wp->w_width + wp->w_vsep_width; |
5616 } | |
5617 else | |
5618 { | |
5619 startrow = *row; | |
5620 startcol = *col; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5621 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 5622 { |
5623 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
|
5624 *row = startrow; // all frames are at the same row |
7 | 5625 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5626 *col = startcol; // all frames are at the same col |
7 | 5627 frame_comp_pos(frp, row, col); |
5628 } | |
5629 } | |
5630 } | |
5631 | |
5632 /* | |
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
|
5633 * 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
|
5634 */ |
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 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
|
5636 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
|
5637 { |
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 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
|
5639 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
|
5640 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
|
5641 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
|
5642 } |
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 /* |
7 | 5645 * Set current window height and take care of repositioning other windows to |
5646 * fit around it. | |
5647 */ | |
5648 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5649 win_setheight(int height) |
7 | 5650 { |
5651 win_setheight_win(height, curwin); | |
5652 } | |
5653 | |
5654 /* | |
5655 * Set the window height of window "win" and take care of repositioning other | |
5656 * windows to fit around it. | |
5657 */ | |
5658 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5659 win_setheight_win(int height, win_T *win) |
7 | 5660 { |
5661 int row; | |
5662 | |
5663 if (win == curwin) | |
5664 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5665 // 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
|
5666 // 'winminheight' is zero. |
7 | 5667 if (height < p_wmh) |
5668 height = p_wmh; | |
5669 if (height == 0) | |
5670 height = 1; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5671 height += WINBAR_HEIGHT(curwin); |
7 | 5672 } |
5673 | |
5674 frame_setheight(win->w_frame, height + win->w_status_height); | |
5675 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5676 // recompute the window positions |
7 | 5677 row = win_comp_pos(); |
5678 | |
5679 /* | |
5680 * If there is extra space created between the last window and the command | |
5681 * line, clear it. | |
5682 */ | |
5683 if (full_screen && msg_scrolled == 0 && row < cmdline_row) | |
5684 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5685 cmdline_row = row; | |
5686 msg_row = row; | |
5687 msg_col = 0; | |
5688 | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
5689 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
|
5690 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
|
5691 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
5692 redraw_all_later(UPD_NOT_VALID); |
7 | 5693 } |
5694 | |
5695 /* | |
5696 * Set the height of a frame to "height" and take care that all frames and | |
5697 * windows inside it are resized. Also resize frames on the left and right if | |
5698 * the are in the same FR_ROW frame. | |
5699 * | |
5700 * Strategy: | |
5701 * If the frame is part of a FR_COL frame, try fitting the frame in that | |
5702 * frame. If that doesn't work (the FR_COL frame is too small), recursively | |
5703 * go to containing frames to resize them and make room. | |
5704 * If the frame is part of a FR_ROW frame, all frames must be resized as well. | |
5705 * Check for the minimal height of the FR_ROW frame. | |
5706 * At the top level we can also use change the command line height. | |
5707 */ | |
5708 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5709 frame_setheight(frame_T *curfrp, int height) |
7 | 5710 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5711 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
|
5712 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
|
5713 int room_cmdline; // lines available from cmdline |
7 | 5714 int run; |
5715 frame_T *frp; | |
5716 int h; | |
5717 int room_reserved; | |
5718 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5719 // If the height already is the desired value, nothing to do. |
7 | 5720 if (curfrp->fr_height == height) |
5721 return; | |
5722 | |
5723 if (curfrp->fr_parent == NULL) | |
5724 { | |
29700
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
5725 // topframe: can only change the command line height |
667 | 5726 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
|
5727 height = ROWS_AVAIL; |
7 | 5728 if (height > 0) |
5729 frame_new_height(curfrp, height, FALSE, FALSE); | |
5730 } | |
5731 else if (curfrp->fr_parent->fr_layout == FR_ROW) | |
5732 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5733 // 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
|
5734 // one. First check for the minimal height of these. |
7 | 5735 h = frame_minheight(curfrp->fr_parent, NULL); |
5736 if (height < h) | |
5737 height = h; | |
5738 frame_setheight(curfrp->fr_parent, height); | |
5739 } | |
5740 else | |
5741 { | |
5742 /* | |
5743 * Column of frames: try to change only frames in this column. | |
5744 */ | |
5745 /* | |
5746 * Do this twice: | |
5747 * 1: compute room available, if it's not enough try resizing the | |
5748 * containing frame. | |
5749 * 2: compute the room available and adjust the height to it. | |
5750 * Try not to reduce the height of a window with 'winfixheight' set. | |
5751 */ | |
5752 for (run = 1; run <= 2; ++run) | |
5753 { | |
5754 room = 0; | |
5755 room_reserved = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5756 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5757 { |
5758 if (frp != curfrp | |
5759 && frp->fr_win != NULL | |
5760 && frp->fr_win->w_p_wfh) | |
5761 room_reserved += frp->fr_height; | |
5762 room += frp->fr_height; | |
5763 if (frp != curfrp) | |
5764 room -= frame_minheight(frp, NULL); | |
5765 } | |
5766 if (curfrp->fr_width != Columns) | |
5767 room_cmdline = 0; | |
5768 else | |
5769 { | |
5770 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
|
5771 + VISIBLE_HEIGHT(lastwin) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5772 + lastwin->w_status_height); |
7 | 5773 if (room_cmdline < 0) |
5774 room_cmdline = 0; | |
5775 } | |
5776 | |
5777 if (height <= room + room_cmdline) | |
5778 break; | |
5779 if (run == 2 || curfrp->fr_width == Columns) | |
5780 { | |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
5781 height = room + room_cmdline; |
7 | 5782 break; |
5783 } | |
5784 frame_setheight(curfrp->fr_parent, height | |
5785 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1); | |
5786 } | |
5787 | |
5788 /* | |
5789 * Compute the number of lines we will take from others frames (can be | |
5790 * negative!). | |
5791 */ | |
5792 take = height - curfrp->fr_height; | |
5793 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5794 // 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
|
5795 // with 'winfixheight' set. |
7 | 5796 if (height > room + room_cmdline - room_reserved) |
5797 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
|
5798 // 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
|
5799 // window smaller, need to make the other window taller. |
7 | 5800 if (take < 0 && room - curfrp->fr_height < room_reserved) |
5801 room_reserved = 0; | |
5802 | |
5803 if (take > 0 && room_cmdline > 0) | |
5804 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5805 // use lines from cmdline first |
7 | 5806 if (take < room_cmdline) |
5807 room_cmdline = take; | |
5808 take -= room_cmdline; | |
5809 topframe->fr_height += room_cmdline; | |
5810 } | |
5811 | |
5812 /* | |
5813 * set the current frame to the new height | |
5814 */ | |
5815 frame_new_height(curfrp, height, FALSE, FALSE); | |
5816 | |
5817 /* | |
5818 * First take lines from the frames after the current frame. If | |
5819 * that is not enough, takes lines from frames above the current | |
5820 * frame. | |
5821 */ | |
5822 for (run = 0; run < 2; ++run) | |
5823 { | |
5824 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5825 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 5826 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5827 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 5828 while (frp != NULL && take != 0) |
5829 { | |
5830 h = frame_minheight(frp, NULL); | |
5831 if (room_reserved > 0 | |
5832 && frp->fr_win != NULL | |
5833 && frp->fr_win->w_p_wfh) | |
5834 { | |
5835 if (room_reserved >= frp->fr_height) | |
5836 room_reserved -= frp->fr_height; | |
5837 else | |
5838 { | |
5839 if (frp->fr_height - room_reserved > take) | |
5840 room_reserved = frp->fr_height - take; | |
5841 take -= frp->fr_height - room_reserved; | |
5842 frame_new_height(frp, room_reserved, FALSE, FALSE); | |
5843 room_reserved = 0; | |
5844 } | |
5845 } | |
5846 else | |
5847 { | |
5848 if (frp->fr_height - take < h) | |
5849 { | |
5850 take -= frp->fr_height - h; | |
5851 frame_new_height(frp, h, FALSE, FALSE); | |
5852 } | |
5853 else | |
5854 { | |
5855 frame_new_height(frp, frp->fr_height - take, | |
5856 FALSE, FALSE); | |
5857 take = 0; | |
5858 } | |
5859 } | |
5860 if (run == 0) | |
5861 frp = frp->fr_next; | |
5862 else | |
5863 frp = frp->fr_prev; | |
5864 } | |
5865 } | |
5866 } | |
5867 } | |
5868 | |
5869 /* | |
5870 * Set current window width and take care of repositioning other windows to | |
5871 * fit around it. | |
5872 */ | |
5873 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5874 win_setwidth(int width) |
7 | 5875 { |
5876 win_setwidth_win(width, curwin); | |
5877 } | |
5878 | |
5879 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5880 win_setwidth_win(int width, win_T *wp) |
7 | 5881 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5882 // 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
|
5883 // 'winminwidth' is zero. |
7 | 5884 if (wp == curwin) |
5885 { | |
5886 if (width < p_wmw) | |
5887 width = p_wmw; | |
5888 if (width == 0) | |
5889 width = 1; | |
5890 } | |
23402
65718283239b
patch 8.2.2244: crash when making the window width negative
Bram Moolenaar <Bram@vim.org>
parents:
23386
diff
changeset
|
5891 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
|
5892 width = 0; |
7 | 5893 |
5894 frame_setwidth(wp->w_frame, width + wp->w_vsep_width); | |
5895 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5896 // recompute the window positions |
7 | 5897 (void)win_comp_pos(); |
5898 | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
5899 redraw_all_later(UPD_NOT_VALID); |
7 | 5900 } |
5901 | |
5902 /* | |
5903 * Set the width of a frame to "width" and take care that all frames and | |
5904 * windows inside it are resized. Also resize frames above and below if the | |
5905 * are in the same FR_ROW frame. | |
5906 * | |
5907 * Strategy is similar to frame_setheight(). | |
5908 */ | |
5909 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5910 frame_setwidth(frame_T *curfrp, int width) |
7 | 5911 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5912 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
|
5913 int take; // number of lines taken from other windows |
7 | 5914 int run; |
5915 frame_T *frp; | |
5916 int w; | |
779 | 5917 int room_reserved; |
7 | 5918 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5919 // If the width already is the desired value, nothing to do. |
7 | 5920 if (curfrp->fr_width == width) |
5921 return; | |
5922 | |
5923 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
|
5924 // topframe: can't change width |
7 | 5925 return; |
5926 | |
5927 if (curfrp->fr_parent->fr_layout == FR_COL) | |
5928 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5929 // 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
|
5930 // this one. First check for the minimal width of these. |
7 | 5931 w = frame_minwidth(curfrp->fr_parent, NULL); |
5932 if (width < w) | |
5933 width = w; | |
5934 frame_setwidth(curfrp->fr_parent, width); | |
5935 } | |
5936 else | |
5937 { | |
5938 /* | |
5939 * Row of frames: try to change only frames in this row. | |
5940 * | |
5941 * Do this twice: | |
5942 * 1: compute room available, if it's not enough try resizing the | |
5943 * containing frame. | |
5944 * 2: compute the room available and adjust the width to it. | |
5945 */ | |
5946 for (run = 1; run <= 2; ++run) | |
5947 { | |
5948 room = 0; | |
779 | 5949 room_reserved = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5950 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5951 { |
779 | 5952 if (frp != curfrp |
5953 && frp->fr_win != NULL | |
5954 && frp->fr_win->w_p_wfw) | |
5955 room_reserved += frp->fr_width; | |
7 | 5956 room += frp->fr_width; |
5957 if (frp != curfrp) | |
5958 room -= frame_minwidth(frp, NULL); | |
5959 } | |
5960 | |
5961 if (width <= room) | |
5962 break; | |
667 | 5963 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL) |
7 | 5964 { |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
5965 width = room; |
7 | 5966 break; |
5967 } | |
5968 frame_setwidth(curfrp->fr_parent, width | |
5969 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1); | |
5970 } | |
5971 | |
5972 /* | |
5973 * Compute the number of lines we will take from others frames (can be | |
5974 * negative!). | |
5975 */ | |
5976 take = width - curfrp->fr_width; | |
5977 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5978 // 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
|
5979 // with 'winfixwidth' set. |
779 | 5980 if (width > room - room_reserved) |
5981 room_reserved = room - width; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5982 // 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
|
5983 // window smaller, need to make the other window narrower. |
779 | 5984 if (take < 0 && room - curfrp->fr_width < room_reserved) |
5985 room_reserved = 0; | |
5986 | |
7 | 5987 /* |
5988 * set the current frame to the new width | |
5989 */ | |
779 | 5990 frame_new_width(curfrp, width, FALSE, FALSE); |
7 | 5991 |
5992 /* | |
5993 * First take lines from the frames right of the current frame. If | |
5994 * that is not enough, takes lines from frames left of the current | |
5995 * frame. | |
5996 */ | |
5997 for (run = 0; run < 2; ++run) | |
5998 { | |
5999 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6000 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 6001 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6002 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 6003 while (frp != NULL && take != 0) |
6004 { | |
6005 w = frame_minwidth(frp, NULL); | |
779 | 6006 if (room_reserved > 0 |
6007 && frp->fr_win != NULL | |
6008 && frp->fr_win->w_p_wfw) | |
7 | 6009 { |
779 | 6010 if (room_reserved >= frp->fr_width) |
6011 room_reserved -= frp->fr_width; | |
6012 else | |
6013 { | |
6014 if (frp->fr_width - room_reserved > take) | |
6015 room_reserved = frp->fr_width - take; | |
6016 take -= frp->fr_width - room_reserved; | |
6017 frame_new_width(frp, room_reserved, FALSE, FALSE); | |
6018 room_reserved = 0; | |
6019 } | |
7 | 6020 } |
6021 else | |
6022 { | |
779 | 6023 if (frp->fr_width - take < w) |
6024 { | |
6025 take -= frp->fr_width - w; | |
6026 frame_new_width(frp, w, FALSE, FALSE); | |
6027 } | |
6028 else | |
6029 { | |
6030 frame_new_width(frp, frp->fr_width - take, | |
6031 FALSE, FALSE); | |
6032 take = 0; | |
6033 } | |
7 | 6034 } |
6035 if (run == 0) | |
6036 frp = frp->fr_next; | |
6037 else | |
6038 frp = frp->fr_prev; | |
6039 } | |
6040 } | |
6041 } | |
6042 } | |
6043 | |
6044 /* | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6045 * Check 'winminheight' for a valid value and reduce it if needed. |
7 | 6046 */ |
6047 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6048 win_setminheight(void) |
7 | 6049 { |
6050 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
|
6051 int needed; |
7 | 6052 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
|
6053 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6054 // loop until there is a 'winminheight' that is possible |
7 | 6055 while (p_wmh > 0) |
6056 { | |
24108
0a5eba7e6660
patch 8.2.2595: setting 'winminheight' may cause 'lines' to change
Bram Moolenaar <Bram@vim.org>
parents:
24037
diff
changeset
|
6057 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
|
6058 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
|
6059 if (room >= needed) |
7 | 6060 break; |
6061 --p_wmh; | |
6062 if (first) | |
6063 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6064 emsg(_(e_not_enough_room)); |
7 | 6065 first = FALSE; |
6066 } | |
6067 } | |
6068 } | |
6069 | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6070 /* |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6071 * 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
|
6072 */ |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6073 void |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6074 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
|
6075 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6076 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
|
6077 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
|
6078 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
|
6079 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6080 // 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
|
6081 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
|
6082 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6083 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
|
6084 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
|
6085 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
|
6086 break; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
6087 --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
|
6088 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
|
6089 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6090 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
|
6091 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
|
6092 } |
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 |
7 | 6096 /* |
6097 * Status line of dragwin is dragged "offset" lines down (negative is up). | |
6098 */ | |
6099 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6100 win_drag_status_line(win_T *dragwin, int offset) |
7 | 6101 { |
6102 frame_T *curfr; | |
6103 frame_T *fr; | |
6104 int room; | |
6105 int row; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6106 int up; // if TRUE, drag status line up, otherwise down |
7 | 6107 int n; |
6108 | |
6109 fr = dragwin->w_frame; | |
6110 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6111 if (fr != topframe) // more than one window |
7 | 6112 { |
6113 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6114 // 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
|
6115 // be. |
7 | 6116 if (fr->fr_layout != FR_COL) |
6117 { | |
6118 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6119 if (fr != topframe) // only a row of windows, may drag statusline |
7 | 6120 fr = fr->fr_parent; |
6121 } | |
6122 } | |
6123 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6124 // 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
|
6125 // frame instead (go two up to skip a row of frames). |
7 | 6126 while (curfr != topframe && curfr->fr_next == NULL) |
6127 { | |
6128 if (fr != topframe) | |
6129 fr = fr->fr_parent; | |
6130 curfr = fr; | |
6131 if (fr != topframe) | |
6132 fr = fr->fr_parent; | |
6133 } | |
6134 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6135 if (offset < 0) // drag up |
7 | 6136 { |
6137 up = TRUE; | |
6138 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6139 // sum up the room of the current frame and above it |
7 | 6140 if (fr == curfr) |
6141 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6142 // only one window |
7 | 6143 room = fr->fr_height - frame_minheight(fr, NULL); |
6144 } | |
6145 else | |
6146 { | |
6147 room = 0; | |
6148 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
6149 { | |
6150 room += fr->fr_height - frame_minheight(fr, NULL); | |
6151 if (fr == curfr) | |
6152 break; | |
6153 } | |
6154 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6155 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
|
6156 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6157 else // drag down |
7 | 6158 { |
6159 up = FALSE; | |
6160 /* | |
6161 * Only dragging the last status line can reduce p_ch. | |
6162 */ | |
6163 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
|
6164 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
|
6165 --room; |
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29976
diff
changeset
|
6166 else |
7 | 6167 room -= p_ch; |
6168 if (room < 0) | |
6169 room = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6170 // 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
|
6171 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 6172 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
|
6173 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
|
6174 } |
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 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
|
6177 offset = room; // Move as far as we can |
7 | 6178 if (offset <= 0) |
6179 return; | |
6180 | |
6181 /* | |
6182 * Grow frame fr by "offset" lines. | |
6183 * Doesn't happen when dragging the last status line up. | |
6184 */ | |
6185 if (fr != NULL) | |
6186 frame_new_height(fr, fr->fr_height + offset, up, FALSE); | |
6187 | |
6188 if (up) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6189 fr = curfr; // current frame gets smaller |
7 | 6190 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6191 fr = curfr->fr_next; // next frame gets smaller |
7 | 6192 |
6193 /* | |
6194 * Now make the other frames smaller. | |
6195 */ | |
6196 while (fr != NULL && offset > 0) | |
6197 { | |
6198 n = frame_minheight(fr, NULL); | |
6199 if (fr->fr_height - offset <= n) | |
6200 { | |
6201 offset -= fr->fr_height - n; | |
6202 frame_new_height(fr, n, !up, FALSE); | |
6203 } | |
6204 else | |
6205 { | |
6206 frame_new_height(fr, fr->fr_height - offset, !up, FALSE); | |
6207 break; | |
6208 } | |
6209 if (up) | |
6210 fr = fr->fr_prev; | |
6211 else | |
6212 fr = fr->fr_next; | |
6213 } | |
6214 row = win_comp_pos(); | |
6215 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
6216 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
|
6217 p_ch = MAX(Rows - cmdline_row, 1); |
824 | 6218 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
|
6219 |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6220 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
|
6221 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
|
6222 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6223 redraw_all_later(UPD_SOME_VALID); |
7 | 6224 showmode(); |
6225 } | |
6226 | |
6227 /* | |
6228 * Separator line of dragwin is dragged "offset" lines right (negative is left). | |
6229 */ | |
6230 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6231 win_drag_vsep_line(win_T *dragwin, int offset) |
7 | 6232 { |
6233 frame_T *curfr; | |
6234 frame_T *fr; | |
6235 int room; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6236 int left; // if TRUE, drag separator line left, otherwise right |
7 | 6237 int n; |
6238 | |
6239 fr = dragwin->w_frame; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6240 if (fr == topframe) // only one window (cannot happen?) |
7 | 6241 return; |
6242 curfr = fr; | |
6243 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6244 // When the parent frame is not a row of frames, its parent should be. |
7 | 6245 if (fr->fr_layout != FR_ROW) |
6246 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6247 if (fr == topframe) // only a column of windows (cannot happen?) |
7 | 6248 return; |
6249 curfr = fr; | |
6250 fr = fr->fr_parent; | |
6251 } | |
6252 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6253 // 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
|
6254 // frame instead. |
7 | 6255 while (curfr->fr_next == NULL) |
6256 { | |
6257 if (fr == topframe) | |
6258 break; | |
6259 curfr = fr; | |
6260 fr = fr->fr_parent; | |
6261 if (fr != topframe) | |
6262 { | |
6263 curfr = fr; | |
6264 fr = fr->fr_parent; | |
6265 } | |
6266 } | |
6267 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6268 if (offset < 0) // drag left |
7 | 6269 { |
6270 left = TRUE; | |
6271 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6272 // sum up the room of the current frame and left of it |
7 | 6273 room = 0; |
6274 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
6275 { | |
6276 room += fr->fr_width - frame_minwidth(fr, NULL); | |
6277 if (fr == curfr) | |
6278 break; | |
6279 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6280 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
|
6281 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6282 else // drag right |
7 | 6283 { |
6284 left = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6285 // sum up the room of frames right of the current one |
7 | 6286 room = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
6287 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 6288 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
|
6289 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
|
6290 } |
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 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
|
6293 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
|
6294 if (offset <= 0) // No room at all, quit. |
7 | 6295 return; |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
6296 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
|
6297 // 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
|
6298 // 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
|
6299 return; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6300 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6301 // grow frame fr by offset lines |
779 | 6302 frame_new_width(fr, fr->fr_width + offset, left, FALSE); |
7 | 6303 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6304 // shrink other frames: current and at the left or at the right |
7 | 6305 if (left) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6306 fr = curfr; // current frame gets smaller |
7 | 6307 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6308 fr = curfr->fr_next; // next frame gets smaller |
7 | 6309 |
6310 while (fr != NULL && offset > 0) | |
6311 { | |
6312 n = frame_minwidth(fr, NULL); | |
6313 if (fr->fr_width - offset <= n) | |
6314 { | |
6315 offset -= fr->fr_width - n; | |
779 | 6316 frame_new_width(fr, n, !left, FALSE); |
7 | 6317 } |
6318 else | |
6319 { | |
779 | 6320 frame_new_width(fr, fr->fr_width - offset, !left, FALSE); |
7 | 6321 break; |
6322 } | |
6323 if (left) | |
6324 fr = fr->fr_prev; | |
6325 else | |
6326 fr = fr->fr_next; | |
6327 } | |
6328 (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
|
6329 redraw_all_later(UPD_NOT_VALID); |
7 | 6330 } |
6331 | |
2665 | 6332 #define FRACTION_MULT 16384L |
6333 | |
6334 /* | |
6335 * 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
|
6336 * Has no effect when the window is less than two lines. |
2665 | 6337 */ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
6338 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6339 set_fraction(win_T *wp) |
2665 | 6340 { |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
6341 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
|
6342 // 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
|
6343 // 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
|
6344 // 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
|
6345 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
|
6346 + FRACTION_MULT / 2) / (long)wp->w_height; |
2665 | 6347 } |
6348 | |
7 | 6349 /* |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6350 * 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
|
6351 * call from win_new_height(). Instead we iterate over all windows in a |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6352 * tabpage and calculate the new scroll/cursor position. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6353 * 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
|
6354 * 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
|
6355 * 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
|
6356 */ |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6357 static void |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6358 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
|
6359 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6360 win_T *wp; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6361 linenr_T lnum; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6362 |
30439
e3091fc473a1
patch 9.0.0555: scrolling with 'nosplitscroll' in callback changing curwin
Bram Moolenaar <Bram@vim.org>
parents:
30429
diff
changeset
|
6363 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
|
6364 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
|
6365 { |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
6366 // 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
|
6367 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
|
6368 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6369 // Determine botline needed to avoid scrolling and set cursor. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6370 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
|
6371 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6372 lnum = wp->w_cursor.lnum; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6373 wp->w_cursor.lnum = MIN(wp->w_buffer->b_ml.ml_line_count, |
30239
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
6374 wp->w_botline - 1 + (wp->w_winrow - wp->w_prev_winrow) |
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
6375 + (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
|
6376 // 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
|
6377 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
|
6378 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
|
6379 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
|
6380 } |
30439
e3091fc473a1
patch 9.0.0555: scrolling with 'nosplitscroll' in callback changing curwin
Bram Moolenaar <Bram@vim.org>
parents:
30429
diff
changeset
|
6381 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
|
6382 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
|
6383 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
|
6384 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
|
6385 } |
30251
0288baaedf91
patch 9.0.0461: 'scroll' is not always updated
Bram Moolenaar <Bram@vim.org>
parents:
30239
diff
changeset
|
6386 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
|
6387 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
|
6388 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
|
6389 } |
30339
b5f67135fcb6
patch 9.0.0505: various problems with 'nosplitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30300
diff
changeset
|
6390 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
|
6391 // 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
|
6392 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
|
6393 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
|
6394 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
|
6395 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
|
6396 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6397 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6398 /* |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6399 * 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
|
6400 * 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
|
6401 * 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
|
6402 */ |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6403 static void |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6404 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
|
6405 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6406 win_T *wp = curwin; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6407 long so = get_scrolloff_value(); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6408 linenr_T nlnum = 0; |
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 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
|
6411 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
|
6412 #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
|
6413 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
|
6414 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
|
6415 #endif |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6416 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6417 so = MIN(wp->w_height / 2, so); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6418 // Check if cursor position is above topline or below botline. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6419 if (wp->w_cursor.lnum < (wp->w_topline + so) && wp->w_topline != 1) |
30285
9edb1a8161ac
patch 9.0.0478: test for 'splitscroll' takes too much time
Bram Moolenaar <Bram@vim.org>
parents:
30267
diff
changeset
|
6420 nlnum = MIN(wp->w_topline + so, wp->w_buffer->b_ml.ml_line_count); |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6421 else if (wp->w_cursor.lnum > (wp->w_botline - so - 1) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6422 && (wp->w_botline - wp->w_buffer->b_ml.ml_line_count) != 1) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6423 nlnum = MAX(wp->w_botline - so - 1, 1); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6424 // If cursor was invalid scroll or change cursor. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6425 if (nlnum) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6426 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6427 if (normal) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6428 { // Make sure cursor is closer to topline than botline. |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6429 if (so == wp->w_height / 2 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6430 && nlnum - wp->w_topline > wp->w_botline - 1 - nlnum) |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6431 nlnum--; |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6432 setmark('\''); // save cursor position |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6433 wp->w_cursor.lnum = nlnum; // change to avoid scrolling |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6434 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
|
6435 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6436 else |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6437 { // Ensure cursor stays visible if we are not in normal mode. |
30285
9edb1a8161ac
patch 9.0.0478: test for 'splitscroll' takes too much time
Bram Moolenaar <Bram@vim.org>
parents:
30267
diff
changeset
|
6438 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
|
6439 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
|
6440 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
|
6441 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6442 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6443 } |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6444 |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6445 /* |
7 | 6446 * 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
|
6447 * "height" excludes any window toolbar. |
7 | 6448 * This takes care of the things inside the window, not what happens to the |
6449 * window position, the frame or to other windows. | |
6450 */ | |
3697 | 6451 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6452 win_new_height(win_T *wp, int height) |
7 | 6453 { |
5875 | 6454 int prev_height = wp->w_height; |
7 | 6455 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6456 // 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
|
6457 // Will equalize heights soon to fix it. |
7 | 6458 if (height < 0) |
6459 height = 0; | |
826 | 6460 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
|
6461 return; // nothing to do |
7 | 6462 |
5875 | 6463 if (wp->w_height > 0) |
6464 { | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6465 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
|
6466 // 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
|
6467 // call win_new_height() recursively. |
5969 | 6468 validate_cursor(); |
6469 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
|
6470 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
|
6471 // to avoid the following to mess things up. |
5875 | 6472 if (wp->w_wrow != wp->w_prev_fraction_row) |
6473 set_fraction(wp); | |
6474 } | |
7 | 6475 |
6476 wp->w_height = height; | |
6477 wp->w_skipcol = 0; | |
6478 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6479 // 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
|
6480 // 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
|
6481 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
|
6482 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
|
6483 } |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6484 |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6485 void |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6486 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
|
6487 { |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6488 linenr_T lnum; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6489 int sline, line_size; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6490 int height = wp->w_height; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6491 |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6492 // 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
|
6493 // - window height is 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6494 // - '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
|
6495 // - 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
|
6496 // is visible. |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6497 if (height > 0 |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
6498 && (!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
|
6499 && (height < wp->w_buffer->b_ml.ml_line_count || wp->w_topline > 1)) |
7 | 6500 { |
47 | 6501 /* |
6502 * Find a value for w_topline that shows the cursor at the same | |
6503 * relative position in the window as before (more or less). | |
6504 */ | |
7 | 6505 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
|
6506 if (lnum < 1) // can happen when starting up |
7 | 6507 lnum = 1; |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6508 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
|
6509 / FRACTION_MULT; |
7 | 6510 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1; |
6511 sline = wp->w_wrow - line_size; | |
1023 | 6512 |
6513 if (sline >= 0) | |
6514 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6515 // Make sure the whole cursor line is visible, if possible. |
1023 | 6516 int rows = plines_win(wp, lnum, FALSE); |
6517 | |
6518 if (sline > wp->w_height - rows) | |
6519 { | |
6520 sline = wp->w_height - rows; | |
6521 wp->w_wrow -= rows - line_size; | |
6522 } | |
6523 } | |
6524 | |
7 | 6525 if (sline < 0) |
6526 { | |
6527 /* | |
6528 * Cursor line would go off top of screen if w_wrow was this high. | |
1023 | 6529 * Make cursor line the first line in the window. If not enough |
6530 * room use w_skipcol; | |
7 | 6531 */ |
6532 wp->w_wrow = line_size; | |
1023 | 6533 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
|
6534 && (wp->w_width - win_col_off(wp)) > 0) |
1023 | 6535 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6536 wp->w_skipcol += wp->w_width - win_col_off(wp); |
1023 | 6537 --wp->w_wrow; |
6538 while (wp->w_wrow >= wp->w_height) | |
6539 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6540 wp->w_skipcol += wp->w_width - win_col_off(wp) |
1023 | 6541 + win_col_off2(wp); |
6542 --wp->w_wrow; | |
6543 } | |
6544 } | |
7 | 6545 } |
5936 | 6546 else if (sline > 0) |
7 | 6547 { |
1023 | 6548 while (sline > 0 && lnum > 1) |
7 | 6549 { |
6550 #ifdef FEAT_FOLDING | |
6551 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); | |
6552 if (lnum == 1) | |
6553 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6554 // first line in buffer is folded |
7 | 6555 line_size = 1; |
6556 --sline; | |
6557 break; | |
6558 } | |
6559 #endif | |
6560 --lnum; | |
6561 #ifdef FEAT_DIFF | |
6562 if (lnum == wp->w_topline) | |
6563 line_size = plines_win_nofill(wp, lnum, TRUE) | |
6564 + wp->w_topfill; | |
6565 else | |
6566 #endif | |
6567 line_size = plines_win(wp, lnum, TRUE); | |
6568 sline -= line_size; | |
6569 } | |
47 | 6570 |
7 | 6571 if (sline < 0) |
6572 { | |
6573 /* | |
6574 * Line we want at top would go off top of screen. Use next | |
6575 * line instead. | |
6576 */ | |
6577 #ifdef FEAT_FOLDING | |
6578 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); | |
6579 #endif | |
6580 lnum++; | |
6581 wp->w_wrow -= line_size + sline; | |
6582 } | |
5936 | 6583 else if (sline > 0) |
7 | 6584 { |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6585 // First line of file reached, use that as topline. |
7 | 6586 lnum = 1; |
6587 wp->w_wrow -= sline; | |
6588 } | |
6589 } | |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6590 set_topline(wp, lnum); |
7 | 6591 } |
6592 | |
6593 if (wp == curwin) | |
6594 { | |
30219
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6595 if (p_spsc && get_scrolloff_value()) |
7 | 6596 update_topline(); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6597 curs_columns(FALSE); // validate w_wrow |
7 | 6598 } |
5875 | 6599 if (prev_height > 0) |
6600 wp->w_prev_fraction_row = wp->w_wrow; | |
7 | 6601 |
6602 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
|
6603 redraw_win_later(wp, UPD_SOME_VALID); |
7 | 6604 wp->w_redr_status = TRUE; |
6605 invalidate_botline_win(wp); | |
6606 } | |
6607 | |
6608 /* | |
6609 * Set the width of a window. | |
6610 */ | |
3697 | 6611 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6612 win_new_width(win_T *wp, int width) |
7 | 6613 { |
6614 wp->w_width = width; | |
6615 wp->w_lines_valid = 0; | |
6616 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
|
6617 // 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
|
6618 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
|
6619 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6620 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
|
6621 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
|
6622 { |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6623 update_topline(); |
bc8ad1c28b51
patch 9.0.0445: when opening/closing window text moves up/down
Bram Moolenaar <Bram@vim.org>
parents:
30134
diff
changeset
|
6624 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
|
6625 } |
7 | 6626 } |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6627 redraw_win_later(wp, UPD_NOT_VALID); |
7 | 6628 wp->w_redr_status = TRUE; |
6629 } | |
6630 | |
6631 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6632 win_comp_scroll(win_T *wp) |
7 | 6633 { |
23386
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6634 #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
|
6635 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
|
6636 #endif |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6637 |
7 | 6638 wp->w_p_scr = ((unsigned)wp->w_height >> 1); |
6639 if (wp->w_p_scr == 0) | |
6640 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
|
6641 #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
|
6642 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
|
6643 { |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6644 // 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
|
6645 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
|
6646 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
|
6647 } |
3105546b941f
patch 8.2.2236: 'scroll' option can change when setting the statusline
Bram Moolenaar <Bram@vim.org>
parents:
22900
diff
changeset
|
6648 #endif |
7 | 6649 } |
6650 | |
6651 /* | |
6652 * command_height: called whenever p_ch has been changed | |
6653 */ | |
6654 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6655 command_height(void) |
7 | 6656 { |
6657 int h; | |
6658 frame_T *frp; | |
824 | 6659 int old_p_ch = curtab->tp_ch_used; |
6660 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6661 // 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
|
6662 // 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
|
6663 // p_ch was changed in another tab page. |
824 | 6664 curtab->tp_ch_used = p_ch; |
170 | 6665 |
29700
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6666 // 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
|
6667 // 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
|
6668 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
|
6669 return; |
cc0f638f5f6b
patch 9.0.0190: the way 'cmdheight' can be made zero is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
29694
diff
changeset
|
6670 |
29702
c43738957bee
patch 9.0.0191: messages test fails; window size incorrect
Bram Moolenaar <Bram@vim.org>
parents:
29700
diff
changeset
|
6671 // 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
|
6672 // 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
|
6673 // 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
|
6674 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
|
6675 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
|
6676 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6677 // Find bottom frame with width of screen. |
7 | 6678 frp = lastwin->w_frame; |
6679 while (frp->fr_width != Columns && frp->fr_parent != NULL) | |
6680 frp = frp->fr_parent; | |
6681 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6682 // Avoid changing the height of a window with 'winfixheight' set. |
7 | 6683 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF |
6684 && frp->fr_win->w_p_wfh) | |
6685 frp = frp->fr_prev; | |
6686 | |
6687 if (starting != NO_SCREEN) | |
6688 { | |
6689 cmdline_row = Rows - p_ch; | |
6690 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6691 if (p_ch > old_p_ch) // p_ch got bigger |
7 | 6692 { |
6693 while (p_ch > old_p_ch) | |
6694 { | |
6695 if (frp == NULL) | |
6696 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6697 emsg(_(e_not_enough_room)); |
7 | 6698 p_ch = old_p_ch; |
1404 | 6699 curtab->tp_ch_used = p_ch; |
7 | 6700 cmdline_row = Rows - p_ch; |
6701 break; | |
6702 } | |
6703 h = frp->fr_height - frame_minheight(frp, NULL); | |
6704 if (h > p_ch - old_p_ch) | |
6705 h = p_ch - old_p_ch; | |
6706 old_p_ch += h; | |
6707 frame_add_height(frp, -h); | |
6708 frp = frp->fr_prev; | |
6709 } | |
6710 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6711 // Recompute window positions. |
7 | 6712 (void)win_comp_pos(); |
6713 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6714 // clear the lines added to cmdline |
7 | 6715 if (full_screen) |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27251
diff
changeset
|
6716 screen_fill(cmdline_row, (int)Rows, 0, |
7 | 6717 (int)Columns, ' ', ' ', 0); |
6718 msg_row = cmdline_row; | |
6719 redraw_cmdline = TRUE; | |
6720 return; | |
6721 } | |
6722 | |
6723 if (msg_row < cmdline_row) | |
6724 msg_row = cmdline_row; | |
6725 redraw_cmdline = TRUE; | |
6726 } | |
6727 frame_add_height(frp, (int)(old_p_ch - p_ch)); | |
6728 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6729 // Recompute window positions. |
7 | 6730 if (frp != lastwin->w_frame) |
6731 (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
|
6732 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6733 |
7 | 6734 /* |
6735 * Resize frame "frp" to be "n" lines higher (negative for less high). | |
6736 * Also resize the frames it is contained in. | |
6737 */ | |
6738 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6739 frame_add_height(frame_T *frp, int n) |
7 | 6740 { |
6741 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE); | |
6742 for (;;) | |
6743 { | |
6744 frp = frp->fr_parent; | |
6745 if (frp == NULL) | |
6746 break; | |
6747 frp->fr_height += n; | |
6748 } | |
6749 } | |
6750 | |
6751 /* | |
6752 * Add or remove a status line for the bottom window(s), according to the | |
6753 * value of 'laststatus'. | |
6754 */ | |
6755 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6756 last_status( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6757 int morewin) // pretend there are two or more windows |
7 | 6758 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6759 // Don't make a difference between horizontal or vertical split. |
7 | 6760 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
|
6761 || (p_ls == 1 && (morewin || !ONE_WINDOW)))); |
7 | 6762 } |
6763 | |
6764 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6765 last_status_rec(frame_T *fr, int statusline) |
7 | 6766 { |
6767 frame_T *fp; | |
6768 win_T *wp; | |
6769 | |
6770 if (fr->fr_layout == FR_LEAF) | |
6771 { | |
6772 wp = fr->fr_win; | |
6773 if (wp->w_status_height != 0 && !statusline) | |
6774 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6775 // remove status line |
7 | 6776 win_new_height(wp, wp->w_height + 1); |
6777 wp->w_status_height = 0; | |
6778 comp_col(); | |
6779 } | |
6780 else if (wp->w_status_height == 0 && statusline) | |
6781 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6782 // Find a frame to take a line from. |
7 | 6783 fp = fr; |
6784 while (fp->fr_height <= frame_minheight(fp, NULL)) | |
6785 { | |
6786 if (fp == topframe) | |
6787 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25157
diff
changeset
|
6788 emsg(_(e_not_enough_room)); |
7 | 6789 return; |
6790 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6791 // 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
|
6792 // the top or in a row of frames: go to parent. |
7 | 6793 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL) |
6794 fp = fp->fr_prev; | |
6795 else | |
6796 fp = fp->fr_parent; | |
6797 } | |
6798 wp->w_status_height = 1; | |
6799 if (fp != fr) | |
6800 { | |
6801 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE); | |
6802 frame_fix_height(wp); | |
6803 (void)win_comp_pos(); | |
6804 } | |
6805 else | |
6806 win_new_height(wp, wp->w_height - 1); | |
6807 comp_col(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
6808 redraw_all_later(UPD_SOME_VALID); |
7 | 6809 } |
30239
91ecee475811
patch 9.0.0455: a few problems with 'splitscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
6810 // 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
|
6811 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
|
6812 wp->w_prev_height = wp->w_height; |
7 | 6813 } |
6814 else if (fr->fr_layout == FR_ROW) | |
6815 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6816 // 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
|
6817 FOR_ALL_FRAMES(fp, fr->fr_child) |
7 | 6818 last_status_rec(fp, statusline); |
6819 } | |
6820 else | |
6821 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6822 // horizontally split window, set status line for last one |
7 | 6823 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
6824 ; | |
6825 last_status_rec(fp, statusline); | |
6826 } | |
6827 } | |
6828 | |
667 | 6829 /* |
668 | 6830 * Return the number of lines used by the tab page line. |
667 | 6831 */ |
6832 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6833 tabline_height(void) |
667 | 6834 { |
685 | 6835 #ifdef FEAT_GUI_TABLINE |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6836 // When the GUI has the tabline then this always returns zero. |
685 | 6837 if (gui_use_tabline()) |
6838 return 0; | |
6839 #endif | |
675 | 6840 switch (p_stal) |
668 | 6841 { |
6842 case 0: return 0; | |
6843 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1; | |
6844 } | |
667 | 6845 return 1; |
6846 } | |
6847 | |
7 | 6848 /* |
6849 * Return the minimal number of rows that is needed on the screen to display | |
6850 * the current number of windows. | |
6851 */ | |
6852 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6853 min_rows(void) |
7 | 6854 { |
6855 int total; | |
671 | 6856 tabpage_T *tp; |
6857 int n; | |
7 | 6858 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6859 if (firstwin == NULL) // not initialized yet |
7 | 6860 return MIN_LINES; |
6861 | |
671 | 6862 total = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6863 FOR_ALL_TABPAGES(tp) |
671 | 6864 { |
6865 n = frame_minheight(tp->tp_topframe, NULL); | |
6866 if (total < n) | |
6867 total = n; | |
6868 } | |
685 | 6869 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
|
6870 total += 1; // count the room for the command line |
7 | 6871 return total; |
6872 } | |
6873 | |
6874 /* | |
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
|
6875 * Return TRUE if there is only one window and only one tab page, not |
672 | 6876 * 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
|
6877 * Does not count unlisted windows. |
7 | 6878 */ |
6879 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6880 only_one_window(void) |
7 | 6881 { |
6882 int count = 0; | |
6883 win_T *wp; | |
6884 | |
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
|
6885 #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
|
6886 // 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
|
6887 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
|
6888 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
|
6889 #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
|
6890 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6891 // If there is another tab page there always is another window. |
667 | 6892 if (first_tabpage->tp_next != NULL) |
6893 return FALSE; | |
6894 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6895 FOR_ALL_WINDOWS(wp) |
4021 | 6896 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
|
6897 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf)) |
7 | 6898 # ifdef FEAT_QUICKFIX |
6899 || wp->w_p_pvw | |
6900 # endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
6901 ) || wp == curwin) && wp != aucmd_win) |
7 | 6902 ++count; |
6903 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
|
6904 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6905 |
7 | 6906 /* |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6907 * Implementation of check_lnums() and check_lnums_nested(). |
7 | 6908 */ |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6909 static void |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6910 check_lnums_both(int do_curwin, int nested) |
7 | 6911 { |
6912 win_T *wp; | |
671 | 6913 tabpage_T *tp; |
6914 | |
6915 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7 | 6916 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf) |
6917 { | |
29505
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6918 int need_adjust; |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6919 |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6920 if (!nested) |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6921 { |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6922 // 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
|
6923 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
|
6924 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
|
6925 } |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6926 |
29505
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6927 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
|
6928 if (need_adjust) |
7 | 6929 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
|
6930 if (need_adjust || !nested) |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6931 // 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
|
6932 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
|
6933 |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6934 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
|
6935 if (need_adjust) |
7 | 6936 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
|
6937 if (need_adjust || !nested) |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6938 // save the (corrected) topline |
33983b2f030f
patch 9.0.0094: cursor restored unexpected with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29471
diff
changeset
|
6939 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
|
6940 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6941 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6942 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6943 /* |
29438
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6944 * 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
|
6945 * 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
|
6946 * 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
|
6947 */ |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6948 void |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6949 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
|
6950 { |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6951 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
|
6952 } |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6953 |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6954 /* |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6955 * 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
|
6956 */ |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6957 void |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6958 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
|
6959 { |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6960 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
|
6961 } |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6962 |
87da4bab5aaa
patch 9.0.0061: ml_get error with nested autocommand
Bram Moolenaar <Bram@vim.org>
parents:
29348
diff
changeset
|
6963 /* |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6964 * 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
|
6965 * 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
|
6966 */ |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6967 void |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6968 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
|
6969 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6970 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
|
6971 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
|
6972 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6973 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
|
6974 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
|
6975 { |
29471
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6976 // 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
|
6977 // set. |
9ada26920941
patch 9.0.0077: wrong restored cursor position when switching window in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
29438
diff
changeset
|
6978 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
|
6979 && 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
|
6980 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
|
6981 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
|
6982 && 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
|
6983 wp->w_topline = wp->w_save_cursor.w_topline_save; |
7 | 6984 } |
6985 } | |
6986 | |
6987 /* | |
6988 * A snapshot of the window sizes, to restore them after closing the help | |
6989 * window. | |
6990 * Only these fields are used: | |
6991 * fr_layout | |
6992 * fr_width | |
6993 * fr_height | |
6994 * fr_next | |
6995 * fr_child | |
6996 * fr_win (only valid for the old curwin, NULL otherwise) | |
6997 */ | |
6998 | |
6999 /* | |
7000 * Create a snapshot of the current frame sizes. | |
7001 */ | |
1906 | 7002 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7003 make_snapshot(int idx) |
7 | 7004 { |
1906 | 7005 clear_snapshot(curtab, idx); |
7006 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); | |
7 | 7007 } |
7008 | |
7009 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7010 make_snapshot_rec(frame_T *fr, frame_T **frp) |
7 | 7011 { |
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
|
7012 *frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 7013 if (*frp == NULL) |
7014 return; | |
7015 (*frp)->fr_layout = fr->fr_layout; | |
7016 (*frp)->fr_width = fr->fr_width; | |
7017 (*frp)->fr_height = fr->fr_height; | |
7018 if (fr->fr_next != NULL) | |
7019 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next)); | |
7020 if (fr->fr_child != NULL) | |
7021 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child)); | |
7022 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin) | |
7023 (*frp)->fr_win = curwin; | |
7024 } | |
7025 | |
7026 /* | |
7027 * Remove any existing snapshot. | |
7028 */ | |
7029 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7030 clear_snapshot(tabpage_T *tp, int idx) |
7 | 7031 { |
1906 | 7032 clear_snapshot_rec(tp->tp_snapshot[idx]); |
7033 tp->tp_snapshot[idx] = NULL; | |
7 | 7034 } |
7035 | |
7036 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7037 clear_snapshot_rec(frame_T *fr) |
7 | 7038 { |
7039 if (fr != NULL) | |
7040 { | |
7041 clear_snapshot_rec(fr->fr_next); | |
7042 clear_snapshot_rec(fr->fr_child); | |
7043 vim_free(fr); | |
7044 } | |
7045 } | |
7046 | |
7047 /* | |
28688
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7048 * 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
|
7049 */ |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7050 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
|
7051 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
|
7052 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7053 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
|
7054 |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7055 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
|
7056 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7057 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
|
7058 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
|
7059 } |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7060 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
|
7061 { |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7062 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
|
7063 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
|
7064 } |
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 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
|
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 |
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 * 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
|
7071 */ |
264fa41e6704
patch 8.2.4868: when closing help window autocmds triggered for wrong window
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
7072 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
|
7073 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
|
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 (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
|
7076 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
|
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 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
|
7079 } |
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 /* |
7 | 7082 * Restore a previously created snapshot, if there is any. |
7083 * This is only done if the screen size didn't change and the window layout is | |
7084 * still the same. | |
7085 */ | |
1906 | 7086 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7087 restore_snapshot( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7088 int idx, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
7089 int close_curwin) // closing current window |
7 | 7090 { |
7091 win_T *wp; | |
7092 | |
1906 | 7093 if (curtab->tp_snapshot[idx] != NULL |
7094 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width | |
7095 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height | |
7096 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) | |
7097 { | |
7098 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); | |
7 | 7099 win_comp_pos(); |
7100 if (wp != NULL && close_curwin) | |
7101 win_goto(wp); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29702
diff
changeset
|
7102 redraw_all_later(UPD_NOT_VALID); |
7 | 7103 } |
1906 | 7104 clear_snapshot(curtab, idx); |
7 | 7105 } |
7106 | |
7107 /* | |
7108 * 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
|
7109 * and same children. And the window pointer is valid. |
7 | 7110 */ |
7111 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7112 check_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 7113 { |
7114 if (sn->fr_layout != fr->fr_layout | |
7115 || (sn->fr_next == NULL) != (fr->fr_next == NULL) | |
7116 || (sn->fr_child == NULL) != (fr->fr_child == NULL) | |
7117 || (sn->fr_next != NULL | |
7118 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL) | |
7119 || (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
|
7120 && 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
|
7121 || (sn->fr_win != NULL && !win_valid(sn->fr_win))) |
7 | 7122 return FAIL; |
7123 return OK; | |
7124 } | |
7125 | |
7126 /* | |
7127 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all | |
7128 * following frames and children. | |
7129 * Returns a pointer to the old current window, or NULL. | |
7130 */ | |
7131 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7132 restore_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 7133 { |
7134 win_T *wp = NULL; | |
7135 win_T *wp2; | |
7136 | |
7137 fr->fr_height = sn->fr_height; | |
7138 fr->fr_width = sn->fr_width; | |
7139 if (fr->fr_layout == FR_LEAF) | |
7140 { | |
7141 frame_new_height(fr, fr->fr_height, FALSE, FALSE); | |
779 | 7142 frame_new_width(fr, fr->fr_width, FALSE, FALSE); |
7 | 7143 wp = sn->fr_win; |
7144 } | |
7145 if (sn->fr_next != NULL) | |
7146 { | |
7147 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next); | |
7148 if (wp2 != NULL) | |
7149 wp = wp2; | |
7150 } | |
7151 if (sn->fr_child != NULL) | |
7152 { | |
7153 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child); | |
7154 if (wp2 != NULL) | |
7155 wp = wp2; | |
7156 } | |
7157 return wp; | |
7158 } | |
7159 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
7160 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 7161 /* |
7162 * Return TRUE if there is any vertically split window. | |
7163 */ | |
7164 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7165 win_hasvertsplit(void) |
7 | 7166 { |
7167 frame_T *fr; | |
7168 | |
7169 if (topframe->fr_layout == FR_ROW) | |
7170 return TRUE; | |
7171 | |
7172 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
|
7173 FOR_ALL_FRAMES(fr, topframe->fr_child) |
7 | 7174 if (fr->fr_layout == FR_ROW) |
7175 return TRUE; | |
7176 | |
7177 return FALSE; | |
7178 } | |
7179 #endif | |
1326 | 7180 |
4379 | 7181 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
7182 int | |
4401 | 7183 get_win_number(win_T *wp, win_T *first_win) |
4379 | 7184 { |
7185 int i = 1; | |
7186 win_T *w; | |
7187 | |
4401 | 7188 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w)) |
4379 | 7189 ++i; |
7190 | |
7191 if (w == NULL) | |
7192 return 0; | |
7193 else | |
7194 return i; | |
7195 } | |
4401 | 7196 |
7197 int | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4918
diff
changeset
|
7198 get_tab_number(tabpage_T *tp UNUSED) |
4401 | 7199 { |
7200 int i = 1; | |
7201 tabpage_T *t; | |
7202 | |
7203 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next) | |
7204 ++i; | |
7205 | |
7206 if (t == NULL) | |
7207 return 0; | |
7208 else | |
7209 return i; | |
7210 } | |
7211 #endif | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7212 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7213 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7214 * 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
|
7215 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7216 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7217 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
|
7218 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7219 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7220 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7221 if (topfrp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7222 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7223 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7224 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
|
7225 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7226 if (frp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7227 return FALSE; |
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 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7230 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
7231 |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7232 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7233 * 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
|
7234 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7235 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7236 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
|
7237 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7238 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7239 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7240 if (topfrp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7241 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7242 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7243 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
|
7244 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7245 if (frp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7246 return FALSE; |
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 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7249 } |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
7250 |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7251 #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
|
7252 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7253 * 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
|
7254 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7255 static int |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7256 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
|
7257 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7258 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
|
7259 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7260 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7261 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7262 * 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
|
7263 * 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
|
7264 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7265 char * |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7266 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
|
7267 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7268 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
|
7269 int col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7270 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
|
7271 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
|
7272 int i; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7273 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
|
7274 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7275 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
|
7276 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
|
7277 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7278 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
|
7279 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7280 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
|
7281 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7282 // -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
|
7283 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
|
7284 ++s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7285 if (!VIM_ISDIGIT(*s)) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7286 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
|
7287 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
|
7288 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
|
7289 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
|
7290 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
|
7291 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
|
7292 goto skip; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7293 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7294 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
|
7295 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
|
7296 else |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7297 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
|
7298 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
|
7299 skip: |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7300 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
|
7301 break; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7302 if (*s != ',') |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7303 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
|
7304 if (*++s == NUL) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
7305 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
|
7306 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7307 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7308 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
|
7309 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
|
7310 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
|
7311 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7312 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7313 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
|
7314 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
|
7315 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7316 // 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
|
7317 // win_line() |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7318 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
|
7319 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7320 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
|
7321 // skip duplicates |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7322 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
|
7323 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
|
7324 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
|
7325 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7326 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7327 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7328 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
|
7329 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
7330 #endif |