Mercurial > vim
annotate src/window.c @ 20677:ab0dc036f586 v8.2.0892
patch 8.2.0892: ubsan warns for undefined behavior
Commit: https://github.com/vim/vim/commit/c5acc0f7fed6b061d994fc5ac660dcc0312750bd
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jun 3 18:55:38 2020 +0200
patch 8.2.0892: ubsan warns for undefined behavior
Problem: Ubsan warns for undefined behavior.
Solution: Use unsigned instead of signed variable. (Dominique Pelle,
closes #6193)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 03 Jun 2020 19:00:04 +0200 |
parents | 42ab4d40e78f |
children | d91b8d1e5198 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
10013
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read a list of people who contributed. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 #include "vim.h" | |
11 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
12 static void cmd_with_count(char *cmd, char_u *bufp, size_t bufsize, long Prenum); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
13 static void win_init(win_T *newp, win_T *oldp, int flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
14 static void win_init_some(win_T *newp, win_T *oldp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
15 static void frame_comp_pos(frame_T *topfrp, int *row, int *col); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
16 static void frame_setheight(frame_T *curfrp, int height); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
17 static void frame_setwidth(frame_T *curfrp, int width); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
18 static void win_exchange(long); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
19 static void win_rotate(int, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
20 static void win_totop(int size, int flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
21 static void win_equal_rec(win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
22 static win_T *win_free_mem(win_T *win, int *dirp, tabpage_T *tp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
23 static frame_T *win_altframe(win_T *win, tabpage_T *tp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
24 static tabpage_T *alt_tabpage(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
25 static win_T *frame2win(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
26 static int frame_has_win(frame_T *frp, win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
27 static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
28 static int frame_fixed_height(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
29 static int frame_fixed_width(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
30 static void frame_add_statusline(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
31 static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
32 static void frame_add_vsep(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
33 static int frame_minwidth(frame_T *topfrp, win_T *next_curwin); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
34 static void frame_fix_width(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
35 static int win_alloc_firstwin(win_T *oldwin); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
36 static void new_frame(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
37 static tabpage_T *alloc_tabpage(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
38 static int leave_tabpage(buf_T *new_curbuf, int trigger_leave_autocmds); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
39 static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
40 static void frame_fix_height(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
41 static int frame_minheight(frame_T *topfrp, win_T *next_curwin); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
42 static int may_open_tabpage(void); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
43 static void win_enter_ext(win_T *wp, int undo_sync, int no_curwin, int trigger_new_autocmds, int trigger_enter_autocmds, int trigger_leave_autocmds); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
44 static void win_free(win_T *wp, tabpage_T *tp); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
45 static int win_unlisted(win_T *wp); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
46 static void win_append(win_T *after, win_T *wp); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
47 static void frame_append(frame_T *after, frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
48 static void frame_insert(frame_T *before, frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
49 static void frame_remove(frame_T *frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
50 static void win_goto_ver(int up, long count); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
51 static void win_goto_hor(int left, long count); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
52 static void frame_add_height(frame_T *frp, int n); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
53 static void last_status_rec(frame_T *fr, int statusline); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
54 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
55 static void make_snapshot_rec(frame_T *fr, frame_T **frp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
56 static void clear_snapshot(tabpage_T *tp, int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
57 static void clear_snapshot_rec(frame_T *fr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
58 static int check_snapshot_rec(frame_T *sn, frame_T *fr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
59 static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
60 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
61 static int frame_check_height(frame_T *topfrp, int height); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
62 static int frame_check_width(frame_T *topfrp, int width); |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
63 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
64 static win_T *win_alloc(win_T *after, int hidden); |
7 | 65 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
66 #define NOWIN (win_T *)-1 // non-existing window |
7 | 67 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
68 #define ROWS_AVAIL (Rows - p_ch - tabline_height()) |
826 | 69 |
70 static char *m_onlyone = N_("Already only one window"); | |
71 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
72 // When non-zero splitting a window is forbidden. Used to avoid that nasty |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
73 // autocommands mess up the window structure. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
74 static int split_disallowed = 0; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
75 |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
76 // #define WIN_DEBUG |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
77 #ifdef WIN_DEBUG |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
78 /* |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
79 * Call this method to log the current window layout. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
80 */ |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
81 static void |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
82 log_frame_layout(frame_T *frame) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
83 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
84 ch_log(NULL, "layout %s, wi: %d, he: %d, wwi: %d, whe: %d, id: %d", |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
85 frame->fr_layout == FR_LEAF ? "LEAF" |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
86 : frame->fr_layout == FR_ROW ? "ROW" : "COL", |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
87 frame->fr_width, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
88 frame->fr_height, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
89 frame->fr_win == NULL ? -1 : frame->fr_win->w_width, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
90 frame->fr_win == NULL ? -1 : frame->fr_win->w_height, |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
91 frame->fr_win == NULL ? -1 : frame->fr_win->w_id); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
92 if (frame->fr_child != NULL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
93 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
94 ch_log(NULL, "children"); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
95 log_frame_layout(frame->fr_child); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
96 if (frame->fr_next != NULL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
97 ch_log(NULL, "END of children"); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
98 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
99 if (frame->fr_next != NULL) |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
100 log_frame_layout(frame->fr_next); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
101 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
102 #endif |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
103 |
7 | 104 /* |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
105 * All CTRL-W window commands are handled here, called from normal_cmd(). |
7 | 106 */ |
107 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
108 do_window( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
109 int nchar, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
110 long Prenum, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
111 int xchar) // extra char from ":wincmd gx" or NUL |
7 | 112 { |
113 long Prenum1; | |
114 win_T *wp; | |
115 #if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID) | |
116 char_u *ptr; | |
681 | 117 linenr_T lnum = -1; |
7 | 118 #endif |
119 #ifdef FEAT_FIND_ID | |
120 int type = FIND_DEFINE; | |
121 int len; | |
122 #endif | |
123 char_u cbuf[40]; | |
124 | |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
125 if (ERROR_IF_ANY_POPUP_WINDOW) |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
126 return; |
7 | 127 |
128 #ifdef FEAT_CMDWIN | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
129 # define CHECK_CMDWIN \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
130 do { \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
131 if (cmdwin_type != 0) \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
132 { \ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
133 emsg(_(e_cmdwin)); \ |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
134 return; \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
135 } \ |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
136 } while (0) |
7 | 137 #else |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
138 # define CHECK_CMDWIN do { /**/ } while (0) |
7 | 139 #endif |
140 | |
16874
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
141 Prenum1 = Prenum == 0 ? 1 : Prenum; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
142 |
7 | 143 switch (nchar) |
144 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
145 // split current window in two parts, horizontally |
7 | 146 case 'S': |
147 case Ctrl_S: | |
148 case 's': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
149 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
150 reset_VIsual_and_resel(); // stop Visual mode |
635 | 151 #ifdef FEAT_QUICKFIX |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
152 // When splitting the quickfix window open a new buffer in it, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
153 // don't replicate the quickfix buffer. |
635 | 154 if (bt_quickfix(curbuf)) |
155 goto newwindow; | |
156 #endif | |
7 | 157 #ifdef FEAT_GUI |
158 need_mouse_correct = TRUE; | |
159 #endif | |
7009 | 160 (void)win_split((int)Prenum, 0); |
7 | 161 break; |
162 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
163 // split current window in two parts, vertically |
7 | 164 case Ctrl_V: |
165 case 'v': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
166 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
167 reset_VIsual_and_resel(); // stop Visual mode |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
168 #ifdef FEAT_QUICKFIX |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
169 // When splitting the quickfix window open a new buffer in it, |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
170 // don't replicate the quickfix buffer. |
1664 | 171 if (bt_quickfix(curbuf)) |
172 goto newwindow; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
173 #endif |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
174 #ifdef FEAT_GUI |
7 | 175 need_mouse_correct = TRUE; |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
176 #endif |
7009 | 177 (void)win_split((int)Prenum, WSP_VERT); |
7 | 178 break; |
179 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
180 // split current window and edit alternate file |
7 | 181 case Ctrl_HAT: |
182 case '^': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
183 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
184 reset_VIsual_and_resel(); // stop Visual mode |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
185 |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
186 if (buflist_findnr(Prenum == 0 |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
187 ? curwin->w_alt_fnum : Prenum) == NULL) |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
188 { |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
189 if (Prenum == 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
190 emsg(_(e_noalt)); |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
191 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
192 semsg(_("E92: Buffer %ld not found"), Prenum); |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
193 break; |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
194 } |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
195 |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
196 if (!curbuf_locked() && win_split(0, 0) == OK) |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
197 (void)buflist_getfile( |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
198 Prenum == 0 ? curwin->w_alt_fnum : Prenum, |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
199 (linenr_T)0, GETF_ALT, FALSE); |
7 | 200 break; |
201 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
202 // open new window |
7 | 203 case Ctrl_N: |
204 case 'n': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
205 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
206 reset_VIsual_and_resel(); // stop Visual mode |
635 | 207 #ifdef FEAT_QUICKFIX |
208 newwindow: | |
209 #endif | |
7 | 210 if (Prenum) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
211 // window height |
1664 | 212 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum); |
7 | 213 else |
214 cbuf[0] = NUL; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
215 #if defined(FEAT_QUICKFIX) |
1664 | 216 if (nchar == 'v' || nchar == Ctrl_V) |
217 STRCAT(cbuf, "v"); | |
218 #endif | |
7 | 219 STRCAT(cbuf, "new"); |
220 do_cmdline_cmd(cbuf); | |
221 break; | |
222 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
223 // quit current window |
7 | 224 case Ctrl_Q: |
225 case 'q': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
226 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 227 cmd_with_count("quit", cbuf, sizeof(cbuf), Prenum); |
6398 | 228 do_cmdline_cmd(cbuf); |
7 | 229 break; |
230 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
231 // close current window |
7 | 232 case Ctrl_C: |
233 case 'c': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
234 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 235 cmd_with_count("close", cbuf, sizeof(cbuf), Prenum); |
6398 | 236 do_cmdline_cmd(cbuf); |
7 | 237 break; |
238 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
239 #if defined(FEAT_QUICKFIX) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
240 // close preview window |
7 | 241 case Ctrl_Z: |
242 case 'z': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
243 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
244 reset_VIsual_and_resel(); // stop Visual mode |
7 | 245 do_cmdline_cmd((char_u *)"pclose"); |
246 break; | |
247 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
248 // cursor to preview window |
7 | 249 case 'P': |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
250 FOR_ALL_WINDOWS(wp) |
7 | 251 if (wp->w_p_pvw) |
252 break; | |
253 if (wp == NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
254 emsg(_("E441: There is no preview window")); |
7 | 255 else |
256 win_goto(wp); | |
257 break; | |
258 #endif | |
259 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
260 // close all but current window |
7 | 261 case Ctrl_O: |
262 case 'o': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
263 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
264 reset_VIsual_and_resel(); // stop Visual mode |
6432 | 265 cmd_with_count("only", cbuf, sizeof(cbuf), Prenum); |
6398 | 266 do_cmdline_cmd(cbuf); |
7 | 267 break; |
268 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
269 // cursor to next window with wrap around |
7 | 270 case Ctrl_W: |
271 case 'w': | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
272 // cursor to previous window with wrap around |
7 | 273 case 'W': |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
274 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
275 if (ONE_WINDOW && Prenum != 1) // just one window |
7 | 276 beep_flush(); |
277 else | |
278 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
279 if (Prenum) // go to specified window |
7 | 280 { |
281 for (wp = firstwin; --Prenum > 0; ) | |
282 { | |
283 if (wp->w_next == NULL) | |
284 break; | |
285 else | |
286 wp = wp->w_next; | |
287 } | |
288 } | |
289 else | |
290 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
291 if (nchar == 'W') // go to previous window |
7 | 292 { |
293 wp = curwin->w_prev; | |
294 if (wp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
295 wp = lastwin; // wrap around |
7 | 296 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
297 else // go to next window |
7 | 298 { |
299 wp = curwin->w_next; | |
300 if (wp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
301 wp = firstwin; // wrap around |
7 | 302 } |
303 } | |
304 win_goto(wp); | |
305 } | |
306 break; | |
307 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
308 // cursor to window below |
7 | 309 case 'j': |
310 case K_DOWN: | |
311 case Ctrl_J: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
312 CHECK_CMDWIN; |
7 | 313 win_goto_ver(FALSE, Prenum1); |
314 break; | |
315 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
316 // cursor to window above |
7 | 317 case 'k': |
318 case K_UP: | |
319 case Ctrl_K: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
320 CHECK_CMDWIN; |
7 | 321 win_goto_ver(TRUE, Prenum1); |
322 break; | |
323 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
324 // cursor to left window |
7 | 325 case 'h': |
326 case K_LEFT: | |
327 case Ctrl_H: | |
328 case K_BS: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
329 CHECK_CMDWIN; |
7 | 330 win_goto_hor(TRUE, Prenum1); |
331 break; | |
332 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
333 // cursor to right window |
7 | 334 case 'l': |
335 case K_RIGHT: | |
336 case Ctrl_L: | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
337 CHECK_CMDWIN; |
7 | 338 win_goto_hor(FALSE, Prenum1); |
339 break; | |
340 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
341 // move window to new tab page |
826 | 342 case 'T': |
1906 | 343 if (one_window()) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15490
diff
changeset
|
344 msg(_(m_onlyone)); |
826 | 345 else |
346 { | |
347 tabpage_T *oldtab = curtab; | |
348 tabpage_T *newtab; | |
349 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
350 // 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
|
351 // the old tab and close the window there. |
944 | 352 wp = curwin; |
826 | 353 if (win_new_tabpage((int)Prenum) == OK |
354 && valid_tabpage(oldtab)) | |
355 { | |
356 newtab = curtab; | |
4354 | 357 goto_tabpage_tp(oldtab, TRUE, TRUE); |
826 | 358 if (curwin == wp) |
359 win_close(curwin, FALSE); | |
360 if (valid_tabpage(newtab)) | |
4354 | 361 goto_tabpage_tp(newtab, TRUE, TRUE); |
826 | 362 } |
363 } | |
364 break; | |
365 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
366 // cursor to top-left window |
7 | 367 case 't': |
368 case Ctrl_T: | |
369 win_goto(firstwin); | |
370 break; | |
371 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
372 // cursor to bottom-right window |
7 | 373 case 'b': |
374 case Ctrl_B: | |
375 win_goto(lastwin); | |
376 break; | |
377 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
378 // cursor to last accessed (previous) window |
7 | 379 case 'p': |
380 case Ctrl_P: | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
381 if (!win_valid(prevwin)) |
7 | 382 beep_flush(); |
383 else | |
384 win_goto(prevwin); | |
385 break; | |
386 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
387 // exchange current and next window |
7 | 388 case 'x': |
389 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
|
390 CHECK_CMDWIN; |
7 | 391 win_exchange(Prenum); |
392 break; | |
393 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
394 // rotate windows downwards |
7 | 395 case Ctrl_R: |
396 case 'r': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
397 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
398 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
|
399 win_rotate(FALSE, (int)Prenum1); // downwards |
7 | 400 break; |
401 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
402 // rotate windows upwards |
7 | 403 case 'R': |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
404 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
405 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
|
406 win_rotate(TRUE, (int)Prenum1); // upwards |
7 | 407 break; |
408 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
409 // move window to the very top/bottom/left/right |
7 | 410 case 'K': |
411 case 'J': | |
412 case 'H': | |
413 case 'L': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
414 CHECK_CMDWIN; |
7 | 415 win_totop((int)Prenum, |
416 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0) | |
417 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT)); | |
418 break; | |
419 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
420 // make all windows the same height |
7 | 421 case '=': |
422 #ifdef FEAT_GUI | |
423 need_mouse_correct = TRUE; | |
424 #endif | |
425 win_equal(NULL, FALSE, 'b'); | |
426 break; | |
427 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
428 // increase current window height |
7 | 429 case '+': |
430 #ifdef FEAT_GUI | |
431 need_mouse_correct = TRUE; | |
432 #endif | |
433 win_setheight(curwin->w_height + (int)Prenum1); | |
434 break; | |
435 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
436 // decrease current window height |
7 | 437 case '-': |
438 #ifdef FEAT_GUI | |
439 need_mouse_correct = TRUE; | |
440 #endif | |
441 win_setheight(curwin->w_height - (int)Prenum1); | |
442 break; | |
443 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
444 // set current window height |
7 | 445 case Ctrl__: |
446 case '_': | |
447 #ifdef FEAT_GUI | |
448 need_mouse_correct = TRUE; | |
449 #endif | |
450 win_setheight(Prenum ? (int)Prenum : 9999); | |
451 break; | |
452 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
453 // increase current window width |
7 | 454 case '>': |
455 #ifdef FEAT_GUI | |
456 need_mouse_correct = TRUE; | |
457 #endif | |
458 win_setwidth(curwin->w_width + (int)Prenum1); | |
459 break; | |
460 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
461 // decrease current window width |
7 | 462 case '<': |
463 #ifdef FEAT_GUI | |
464 need_mouse_correct = TRUE; | |
465 #endif | |
466 win_setwidth(curwin->w_width - (int)Prenum1); | |
467 break; | |
468 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
469 // set current window width |
7 | 470 case '|': |
471 #ifdef FEAT_GUI | |
472 need_mouse_correct = TRUE; | |
473 #endif | |
474 win_setwidth(Prenum != 0 ? (int)Prenum : 9999); | |
475 break; | |
476 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
477 // jump to tag and split window if tag exists (in preview window) |
7 | 478 #if defined(FEAT_QUICKFIX) |
479 case '}': | |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
480 CHECK_CMDWIN; |
7 | 481 if (Prenum) |
482 g_do_tagpreview = Prenum; | |
483 else | |
484 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
|
485 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
486 // FALLTHROUGH |
7 | 487 case ']': |
488 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
|
489 CHECK_CMDWIN; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
490 // keep Visual mode, can select words to use as a tag |
7 | 491 if (Prenum) |
492 postponed_split = Prenum; | |
493 else | |
494 postponed_split = -1; | |
6251 | 495 #ifdef FEAT_QUICKFIX |
6264 | 496 if (nchar != '}') |
497 g_do_tagpreview = 0; | |
6251 | 498 #endif |
6239 | 499 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
500 // 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
|
501 // was used in a function. |
7 | 502 do_nv_ident(Ctrl_RSB, NUL); |
503 break; | |
504 | |
505 #ifdef FEAT_SEARCHPATH | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
506 // edit file name under cursor in a new window |
7 | 507 case 'f': |
681 | 508 case 'F': |
7 | 509 case Ctrl_F: |
820 | 510 wingotofile: |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
511 CHECK_CMDWIN; |
344 | 512 |
681 | 513 ptr = grab_file_name(Prenum1, &lnum); |
7 | 514 if (ptr != NULL) |
515 { | |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
516 tabpage_T *oldtab = curtab; |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
517 win_T *oldwin = curwin; |
820 | 518 # ifdef FEAT_GUI |
7 | 519 need_mouse_correct = TRUE; |
820 | 520 # endif |
7 | 521 setpcmark(); |
522 if (win_split(0, 0) == OK) | |
523 { | |
2583 | 524 RESET_BINDING(curwin); |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
525 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
|
526 ECMD_HIDE, NULL) == FAIL) |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
527 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
528 // 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
|
529 // opened for it. |
9349
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
530 win_close(curwin, FALSE); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
531 goto_tabpage_win(oldtab, oldwin); |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
532 } |
b24900b73f90
commit https://github.com/vim/vim/commit/5d2ca0402954ff79b73d9c86cc16c8a6454b75a7
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
533 else if (nchar == 'F' && lnum >= 0) |
681 | 534 { |
535 curwin->w_cursor.lnum = lnum; | |
536 check_cursor_lnum(); | |
537 beginline(BL_SOL | BL_FIX); | |
538 } | |
7 | 539 } |
540 vim_free(ptr); | |
541 } | |
542 break; | |
543 #endif | |
544 | |
545 #ifdef FEAT_FIND_ID | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
546 // 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
|
547 // new window -- webb |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
548 case 'i': // Go to any match |
7 | 549 case Ctrl_I: |
550 type = FIND_ANY; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
551 // FALLTHROUGH |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
552 case 'd': // Go to definition, using 'define' |
7 | 553 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
|
554 CHECK_CMDWIN; |
7 | 555 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) |
556 break; | |
557 find_pattern_in_path(ptr, 0, len, TRUE, | |
558 Prenum == 0 ? TRUE : FALSE, type, | |
559 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM); | |
560 curwin->w_set_curswant = TRUE; | |
561 break; | |
562 #endif | |
563 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
564 // 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
|
565 #if defined(FEAT_QUICKFIX) |
170 | 566 case K_KENTER: |
567 case CAR: | |
568 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
|
569 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
|
570 break; |
170 | 571 #endif |
572 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
573 // CTRL-W g extended commands |
7 | 574 case 'g': |
575 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
|
576 CHECK_CMDWIN; |
7 | 577 #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
|
578 dont_scroll = TRUE; // disallow scrolling here |
7 | 579 #endif |
580 ++no_mapping; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
581 ++allow_keys; // no mapping for xchar, but allow key codes |
7 | 582 if (xchar == NUL) |
1389 | 583 xchar = plain_vgetc(); |
7 | 584 LANGMAP_ADJUST(xchar, TRUE); |
585 --no_mapping; | |
586 --allow_keys; | |
587 #ifdef FEAT_CMDL_INFO | |
588 (void)add_to_showcmd(xchar); | |
589 #endif | |
590 switch (xchar) | |
591 { | |
592 #if defined(FEAT_QUICKFIX) | |
593 case '}': | |
594 xchar = Ctrl_RSB; | |
595 if (Prenum) | |
596 g_do_tagpreview = Prenum; | |
597 else | |
598 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
|
599 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
600 // FALLTHROUGH |
7 | 601 case ']': |
602 case Ctrl_RSB: | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
603 // keep Visual mode, can select words to use as a tag |
7 | 604 if (Prenum) |
605 postponed_split = Prenum; | |
606 else | |
607 postponed_split = -1; | |
608 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
609 // 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
|
610 // "wincmd g}" was used in a function. |
7 | 611 do_nv_ident('g', xchar); |
612 break; | |
613 | |
820 | 614 #ifdef FEAT_SEARCHPATH |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
615 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
|
616 case 'F': // CTRL-W gF: "gF" in a new tab page |
2064
f398e0cc5b7a
updated for version 7.2.349
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
617 cmdmod.tab = tabpage_index(curtab) + 1; |
839 | 618 nchar = xchar; |
820 | 619 goto wingotofile; |
620 #endif | |
15933
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
621 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
|
622 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
|
623 break; |
b2423b31266f
patch 8.1.0972: cannot switch from terminal window to next tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
624 |
15937
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
625 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
|
626 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
|
627 break; |
c38fb03a6055
patch 8.1.0974: cannot switch from terminal window to previous tabpage
Bram Moolenaar <Bram@vim.org>
parents:
15933
diff
changeset
|
628 |
7 | 629 default: |
630 beep_flush(); | |
631 break; | |
632 } | |
633 break; | |
634 | |
635 default: beep_flush(); | |
636 break; | |
637 } | |
638 } | |
639 | |
6489 | 640 /* |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
641 * Figure out the address type for ":wincmd". |
6489 | 642 */ |
643 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
644 get_wincmd_addr_type(char_u *arg, exarg_T *eap) |
6489 | 645 { |
646 switch (*arg) | |
647 { | |
648 case 'S': | |
649 case Ctrl_S: | |
650 case 's': | |
651 case Ctrl_N: | |
652 case 'n': | |
653 case 'j': | |
654 case Ctrl_J: | |
655 case 'k': | |
656 case Ctrl_K: | |
657 case 'T': | |
658 case Ctrl_R: | |
659 case 'r': | |
660 case 'R': | |
661 case 'K': | |
662 case 'J': | |
663 case '+': | |
664 case '-': | |
665 case Ctrl__: | |
666 case '_': | |
667 case '|': | |
668 case ']': | |
669 case Ctrl_RSB: | |
670 case 'g': | |
671 case Ctrl_G: | |
672 case Ctrl_V: | |
673 case 'v': | |
674 case 'h': | |
675 case Ctrl_H: | |
676 case 'l': | |
677 case Ctrl_L: | |
678 case 'H': | |
679 case 'L': | |
680 case '>': | |
681 case '<': | |
682 #if defined(FEAT_QUICKFIX) | |
683 case '}': | |
684 #endif | |
685 #ifdef FEAT_SEARCHPATH | |
686 case 'f': | |
687 case 'F': | |
688 case Ctrl_F: | |
689 #endif | |
690 #ifdef FEAT_FIND_ID | |
691 case 'i': | |
692 case Ctrl_I: | |
693 case 'd': | |
694 case Ctrl_D: | |
695 #endif | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
696 // 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
|
697 eap->addr_type = ADDR_OTHER; |
6489 | 698 break; |
699 | |
700 case Ctrl_HAT: | |
701 case '^': | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
702 // buffer number |
6489 | 703 eap->addr_type = ADDR_BUFFERS; |
704 break; | |
705 | |
706 case Ctrl_Q: | |
707 case 'q': | |
708 case Ctrl_C: | |
709 case 'c': | |
710 case Ctrl_O: | |
711 case 'o': | |
712 case Ctrl_W: | |
713 case 'w': | |
714 case 'W': | |
715 case 'x': | |
716 case Ctrl_X: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
717 // window number |
6489 | 718 eap->addr_type = ADDR_WINDOWS; |
719 break; | |
720 | |
721 #if defined(FEAT_QUICKFIX) | |
722 case Ctrl_Z: | |
723 case 'z': | |
724 case 'P': | |
725 #endif | |
726 case 't': | |
727 case Ctrl_T: | |
728 case 'b': | |
729 case Ctrl_B: | |
730 case 'p': | |
731 case Ctrl_P: | |
732 case '=': | |
733 case CAR: | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
734 // no count |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
735 eap->addr_type = ADDR_NONE; |
6489 | 736 break; |
737 } | |
738 } | |
739 | |
6432 | 740 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
741 cmd_with_count( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
742 char *cmd, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
743 char_u *bufp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
744 size_t bufsize, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
745 long Prenum) |
6432 | 746 { |
747 size_t len = STRLEN(cmd); | |
748 | |
749 STRCPY(bufp, cmd); | |
750 if (Prenum > 0) | |
751 vim_snprintf((char *)bufp + len, bufsize - len, "%ld", Prenum); | |
752 } | |
753 | |
7 | 754 /* |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
755 * If "split_disallowed" is set given an error and return FAIL. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
756 * 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
|
757 */ |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
758 static int |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
759 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
|
760 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
761 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
|
762 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
763 emsg(_("E242: Can't split a window while closing another")); |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
764 return FAIL; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
765 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
766 return OK; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
767 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
768 |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
769 /* |
7 | 770 * split the current window, implements CTRL-W s and :split |
771 * | |
772 * "size" is the height or width for the new window, 0 to use half of current | |
773 * height or width. | |
774 * | |
775 * "flags": | |
776 * WSP_ROOM: require enough room for new window | |
777 * WSP_VERT: vertical split. | |
778 * WSP_TOP: open window at the top-left of the shell (help window). | |
779 * WSP_BOT: open window at the bottom-right of the shell (quickfix window). | |
780 * WSP_HELP: creating the help window, keep layout snapshot | |
781 * | |
782 * return FAIL for failure, OK otherwise | |
783 */ | |
784 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
785 win_split(int size, int flags) |
7 | 786 { |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
787 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
|
788 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
789 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
790 // When the ":tab" modifier was used open a new tab page instead. |
682 | 791 if (may_open_tabpage() == OK) |
792 return OK; | |
793 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
794 // Add flags from ":vertical", ":topleft" and ":botright". |
7 | 795 flags |= cmdmod.split; |
796 if ((flags & WSP_TOP) && (flags & WSP_BOT)) | |
797 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
798 emsg(_("E442: Can't split topleft and botright at the same time")); |
7 | 799 return FAIL; |
800 } | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
801 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
|
802 return FAIL; |
7 | 803 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
804 // 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
|
805 // Otherwise clear the snapshot, it's now invalid. |
7 | 806 if (flags & WSP_HELP) |
1906 | 807 make_snapshot(SNAP_HELP_IDX); |
7 | 808 else |
1906 | 809 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 810 |
811 return win_split_ins(size, flags, NULL, 0); | |
812 } | |
813 | |
814 /* | |
3263 | 815 * When "new_wp" is NULL: split the current window in two. |
816 * When "new_wp" is not NULL: insert this window at the far | |
7 | 817 * top/left/right/bottom. |
818 * return FAIL for failure, OK otherwise | |
819 */ | |
1906 | 820 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
821 win_split_ins( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
822 int size, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
823 int flags, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
824 win_T *new_wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
825 int dir) |
7 | 826 { |
3263 | 827 win_T *wp = new_wp; |
7 | 828 win_T *oldwin; |
829 int new_size = size; | |
830 int i; | |
831 int need_status = 0; | |
832 int do_equal = FALSE; | |
833 int needed; | |
834 int available; | |
835 int oldwin_height = 0; | |
836 int layout; | |
6077 | 837 frame_T *frp, *curfrp, *frp2, *prevfrp; |
7 | 838 int before; |
6052 | 839 int minheight; |
6066 | 840 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
|
841 int did_set_fraction = FALSE; |
7 | 842 |
843 if (flags & WSP_TOP) | |
844 oldwin = firstwin; | |
845 else if (flags & WSP_BOT) | |
846 oldwin = lastwin; | |
847 else | |
848 oldwin = curwin; | |
849 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
850 // 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
|
851 if (ONE_WINDOW && p_ls == 1 && oldwin->w_status_height == 0) |
7 | 852 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
853 if (VISIBLE_HEIGHT(oldwin) <= p_wmh && new_wp == NULL) |
7 | 854 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
855 emsg(_(e_noroom)); |
7 | 856 return FAIL; |
857 } | |
858 need_status = STATUS_HEIGHT; | |
859 } | |
860 | |
1114 | 861 #ifdef FEAT_GUI |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
862 // May be needed for the scrollbars that are going to change. |
1114 | 863 if (gui.in_use) |
864 out_flush(); | |
865 #endif | |
866 | |
7 | 867 if (flags & WSP_VERT) |
868 { | |
6068 | 869 int wmw1; |
870 int minwidth; | |
871 | |
7 | 872 layout = FR_ROW; |
873 | |
874 /* | |
875 * Check if we are able to split the current window and compute its | |
876 * width. | |
877 */ | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
878 // Current window requires at least 1 space. |
6066 | 879 wmw1 = (p_wmw == 0 ? 1 : p_wmw); |
880 needed = wmw1 + 1; | |
7 | 881 if (flags & WSP_ROOM) |
6066 | 882 needed += p_wiw - wmw1; |
6077 | 883 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 884 { |
6066 | 885 minwidth = frame_minwidth(topframe, NOWIN); |
7 | 886 available = topframe->fr_width; |
6052 | 887 needed += minwidth; |
7 | 888 } |
6077 | 889 else if (p_ea) |
890 { | |
891 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); | |
892 prevfrp = oldwin->w_frame; | |
893 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
894 frp = frp->fr_parent) | |
895 { | |
896 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
|
897 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 898 if (frp2 != prevfrp) |
899 minwidth += frame_minwidth(frp2, NOWIN); | |
900 prevfrp = frp; | |
901 } | |
902 available = topframe->fr_width; | |
903 needed += minwidth; | |
904 } | |
7 | 905 else |
6052 | 906 { |
6066 | 907 minwidth = frame_minwidth(oldwin->w_frame, NOWIN); |
908 available = oldwin->w_frame->fr_width; | |
909 needed += minwidth; | |
6052 | 910 } |
3263 | 911 if (available < needed && new_wp == NULL) |
7 | 912 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
913 emsg(_(e_noroom)); |
7 | 914 return FAIL; |
915 } | |
916 if (new_size == 0) | |
917 new_size = oldwin->w_width / 2; | |
6052 | 918 if (new_size > available - minwidth - 1) |
919 new_size = available - minwidth - 1; | |
6066 | 920 if (new_size < wmw1) |
921 new_size = wmw1; | |
7 | 922 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
923 // if it doesn't fit in the current window, need win_equal() |
7 | 924 if (oldwin->w_width - new_size - 1 < p_wmw) |
925 do_equal = TRUE; | |
779 | 926 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
927 // 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
|
928 // '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
|
929 // instead, if possible. Add one for the separator. |
779 | 930 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
|
931 win_setwidth_win(oldwin->w_width + new_size + 1, oldwin); |
1354 | 932 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
933 // 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
|
934 // is wider than one of the split windows. |
1354 | 935 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
|
936 && oldwin->w_frame->fr_parent != NULL) |
1354 | 937 { |
938 frp = oldwin->w_frame->fr_parent->fr_child; | |
939 while (frp != NULL) | |
940 { | |
941 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
942 && (frp->fr_win->w_width > new_size | |
943 || frp->fr_win->w_width > oldwin->w_width | |
6373 | 944 - new_size - 1)) |
1354 | 945 { |
946 do_equal = TRUE; | |
947 break; | |
948 } | |
949 frp = frp->fr_next; | |
950 } | |
951 } | |
7 | 952 } |
953 else | |
954 { | |
955 layout = FR_COL; | |
956 | |
957 /* | |
958 * Check if we are able to split the current window and compute its | |
959 * height. | |
960 */ | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
961 // 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
|
962 wmh1 = (p_wmh == 0 ? 1 : p_wmh) + WINBAR_HEIGHT(curwin); |
6066 | 963 needed = wmh1 + STATUS_HEIGHT; |
7 | 964 if (flags & WSP_ROOM) |
6066 | 965 needed += p_wh - wmh1; |
6077 | 966 if (flags & (WSP_BOT | WSP_TOP)) |
7 | 967 { |
6066 | 968 minheight = frame_minheight(topframe, NOWIN) + need_status; |
7 | 969 available = topframe->fr_height; |
6052 | 970 needed += minheight; |
7 | 971 } |
6077 | 972 else if (p_ea) |
973 { | |
974 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; | |
975 prevfrp = oldwin->w_frame; | |
976 for (frp = oldwin->w_frame->fr_parent; frp != NULL; | |
977 frp = frp->fr_parent) | |
978 { | |
979 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
|
980 FOR_ALL_FRAMES(frp2, frp->fr_child) |
6077 | 981 if (frp2 != prevfrp) |
982 minheight += frame_minheight(frp2, NOWIN); | |
983 prevfrp = frp; | |
984 } | |
985 available = topframe->fr_height; | |
986 needed += minheight; | |
987 } | |
7 | 988 else |
989 { | |
6066 | 990 minheight = frame_minheight(oldwin->w_frame, NOWIN) + need_status; |
991 available = oldwin->w_frame->fr_height; | |
992 needed += minheight; | |
7 | 993 } |
3263 | 994 if (available < needed && new_wp == NULL) |
7 | 995 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
996 emsg(_(e_noroom)); |
7 | 997 return FAIL; |
998 } | |
999 oldwin_height = oldwin->w_height; | |
1000 if (need_status) | |
1001 { | |
1002 oldwin->w_status_height = STATUS_HEIGHT; | |
1003 oldwin_height -= STATUS_HEIGHT; | |
1004 } | |
1005 if (new_size == 0) | |
1006 new_size = oldwin_height / 2; | |
6052 | 1007 if (new_size > available - minheight - STATUS_HEIGHT) |
1008 new_size = available - minheight - STATUS_HEIGHT; | |
6066 | 1009 if (new_size < wmh1) |
1010 new_size = wmh1; | |
7 | 1011 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1012 // if it doesn't fit in the current window, need win_equal() |
7 | 1013 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh) |
1014 do_equal = TRUE; | |
1015 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1016 // 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
|
1017 // '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
|
1018 // instead, if possible. |
7 | 1019 if (oldwin->w_p_wfh) |
1020 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1021 // 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
|
1022 // 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
|
1023 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
|
1024 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
|
1025 |
7 | 1026 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT, |
1027 oldwin); | |
1028 oldwin_height = oldwin->w_height; | |
1029 if (need_status) | |
1030 oldwin_height -= STATUS_HEIGHT; | |
1031 } | |
1354 | 1032 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1033 // 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
|
1034 // 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
|
1035 if (!do_equal && p_ea && size == 0 && *p_ead != 'h' |
1354 | 1036 && oldwin->w_frame->fr_parent != NULL) |
1037 { | |
1038 frp = oldwin->w_frame->fr_parent->fr_child; | |
1039 while (frp != NULL) | |
1040 { | |
1041 if (frp->fr_win != oldwin && frp->fr_win != NULL | |
1042 && (frp->fr_win->w_height > new_size | |
1043 || frp->fr_win->w_height > oldwin_height - new_size | |
1044 - STATUS_HEIGHT)) | |
1045 { | |
1046 do_equal = TRUE; | |
1047 break; | |
1048 } | |
1049 frp = frp->fr_next; | |
1050 } | |
1051 } | |
7 | 1052 } |
1053 | |
1054 /* | |
1055 * allocate new window structure and link it in the window list | |
1056 */ | |
1057 if ((flags & WSP_TOP) == 0 | |
1058 && ((flags & WSP_BOT) | |
1059 || (flags & WSP_BELOW) | |
1060 || (!(flags & WSP_ABOVE) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1061 && ( (flags & WSP_VERT) ? p_spr : p_sb)))) |
7 | 1062 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1063 // new window below/right of current one |
3263 | 1064 if (new_wp == NULL) |
1906 | 1065 wp = win_alloc(oldwin, FALSE); |
7 | 1066 else |
1067 win_append(oldwin, wp); | |
1068 } | |
1069 else | |
1070 { | |
3263 | 1071 if (new_wp == NULL) |
1906 | 1072 wp = win_alloc(oldwin->w_prev, FALSE); |
7 | 1073 else |
1074 win_append(oldwin->w_prev, wp); | |
1075 } | |
1076 | |
3263 | 1077 if (new_wp == NULL) |
7 | 1078 { |
1079 if (wp == NULL) | |
1080 return FAIL; | |
1081 | |
1906 | 1082 new_frame(wp); |
1083 if (wp->w_frame == NULL) | |
1084 { | |
1085 win_free(wp, NULL); | |
1086 return FAIL; | |
1087 } | |
1088 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1089 // make the contents of the new window the same as the current one |
1822 | 1090 win_init(wp, curwin, flags); |
7 | 1091 } |
1092 | |
1093 /* | |
1094 * Reorganise the tree of frames to insert the new window. | |
1095 */ | |
1096 if (flags & (WSP_TOP | WSP_BOT)) | |
1097 { | |
1098 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0) | |
1099 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0)) | |
1100 { | |
1101 curfrp = topframe->fr_child; | |
1102 if (flags & WSP_BOT) | |
1103 while (curfrp->fr_next != NULL) | |
1104 curfrp = curfrp->fr_next; | |
1105 } | |
1106 else | |
1107 curfrp = topframe; | |
1108 before = (flags & WSP_TOP); | |
1109 } | |
1110 else | |
1111 { | |
1112 curfrp = oldwin->w_frame; | |
1113 if (flags & WSP_BELOW) | |
1114 before = FALSE; | |
1115 else if (flags & WSP_ABOVE) | |
1116 before = TRUE; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1117 else if (flags & WSP_VERT) |
7 | 1118 before = !p_spr; |
1119 else | |
1120 before = !p_sb; | |
1121 } | |
1122 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout) | |
1123 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1124 // 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
|
1125 frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 1126 *frp = *curfrp; |
1127 curfrp->fr_layout = layout; | |
1128 frp->fr_parent = curfrp; | |
1129 frp->fr_next = NULL; | |
1130 frp->fr_prev = NULL; | |
1131 curfrp->fr_child = frp; | |
1132 curfrp->fr_win = NULL; | |
1133 curfrp = frp; | |
1134 if (frp->fr_win != NULL) | |
1135 oldwin->w_frame = frp; | |
1136 else | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
1137 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 1138 frp->fr_parent = curfrp; |
1139 } | |
1140 | |
3263 | 1141 if (new_wp == NULL) |
1906 | 1142 frp = wp->w_frame; |
7 | 1143 else |
3263 | 1144 frp = new_wp->w_frame; |
7 | 1145 frp->fr_parent = curfrp->fr_parent; |
1146 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1147 // Insert the new frame at the right place in the frame list. |
7 | 1148 if (before) |
1149 frame_insert(curfrp, frp); | |
1150 else | |
1151 frame_append(curfrp, frp); | |
1152 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1153 // 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
|
1154 // 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
|
1155 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
|
1156 set_fraction(oldwin); |
2665 | 1157 wp->w_fraction = oldwin->w_fraction; |
1158 | |
7 | 1159 if (flags & WSP_VERT) |
1160 { | |
1161 wp->w_p_scr = curwin->w_p_scr; | |
2665 | 1162 |
7 | 1163 if (need_status) |
1164 { | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1165 win_new_height(oldwin, oldwin->w_height - 1); |
7 | 1166 oldwin->w_status_height = need_status; |
1167 } | |
1168 if (flags & (WSP_TOP | WSP_BOT)) | |
1169 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1170 // set height and row of new window to full height |
685 | 1171 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
|
1172 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
|
1173 - WINBAR_HEIGHT(wp)); |
7 | 1174 wp->w_status_height = (p_ls > 0); |
1175 } | |
1176 else | |
1177 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1178 // height and row of new window is same as current window |
7 | 1179 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
|
1180 win_new_height(wp, VISIBLE_HEIGHT(oldwin)); |
7 | 1181 wp->w_status_height = oldwin->w_status_height; |
1182 } | |
1183 frp->fr_height = curfrp->fr_height; | |
1184 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1185 // "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
|
1186 // one column for the vertical separator |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1187 win_new_width(wp, new_size); |
7 | 1188 if (before) |
1189 wp->w_vsep_width = 1; | |
1190 else | |
1191 { | |
1192 wp->w_vsep_width = oldwin->w_vsep_width; | |
1193 oldwin->w_vsep_width = 1; | |
1194 } | |
1195 if (flags & (WSP_TOP | WSP_BOT)) | |
1196 { | |
1197 if (flags & WSP_BOT) | |
1198 frame_add_vsep(curfrp); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1199 // Set width of neighbor frame |
7 | 1200 frame_new_width(curfrp, curfrp->fr_width |
779 | 1201 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP, |
1202 FALSE); | |
7 | 1203 } |
1204 else | |
779 | 1205 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
|
1206 if (before) // new window left of current one |
7 | 1207 { |
1208 wp->w_wincol = oldwin->w_wincol; | |
1209 oldwin->w_wincol += new_size + 1; | |
1210 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1211 else // new window right of current one |
7 | 1212 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1; |
1213 frame_fix_width(oldwin); | |
1214 frame_fix_width(wp); | |
1215 } | |
1216 else | |
1217 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1218 // width and column of new window is same as current window |
7 | 1219 if (flags & (WSP_TOP | WSP_BOT)) |
1220 { | |
1221 wp->w_wincol = 0; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1222 win_new_width(wp, Columns); |
7 | 1223 wp->w_vsep_width = 0; |
1224 } | |
1225 else | |
1226 { | |
1227 wp->w_wincol = oldwin->w_wincol; | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1228 win_new_width(wp, oldwin->w_width); |
7 | 1229 wp->w_vsep_width = oldwin->w_vsep_width; |
1230 } | |
1231 frp->fr_width = curfrp->fr_width; | |
1232 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1233 // "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
|
1234 // one row for the status line |
7 | 1235 win_new_height(wp, new_size); |
1236 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
|
1237 { |
12491
7ab796b041bd
patch 8.0.1125: wrong window height when splitting window with window toolbar
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
1238 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
|
1239 + WINBAR_HEIGHT(wp) ; |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1240 |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1241 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
|
1242 new_fr_height -= STATUS_HEIGHT; |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1243 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
|
1244 } |
7 | 1245 else |
1246 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
|
1247 if (before) // new window above current one |
7 | 1248 { |
1249 wp->w_winrow = oldwin->w_winrow; | |
1250 wp->w_status_height = STATUS_HEIGHT; | |
1251 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT; | |
1252 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1253 else // new window below current one |
7 | 1254 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
1255 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
|
1256 + STATUS_HEIGHT; |
7 | 1257 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
|
1258 if (!(flags & WSP_BOT)) |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1259 oldwin->w_status_height = STATUS_HEIGHT; |
7 | 1260 } |
1261 if (flags & WSP_BOT) | |
1262 frame_add_statusline(curfrp); | |
1263 frame_fix_height(wp); | |
1264 frame_fix_height(oldwin); | |
1265 } | |
1266 | |
1267 if (flags & (WSP_TOP | WSP_BOT)) | |
1268 (void)win_comp_pos(); | |
1269 | |
1270 /* | |
1271 * Both windows need redrawing | |
1272 */ | |
1273 redraw_win_later(wp, NOT_VALID); | |
1274 wp->w_redr_status = TRUE; | |
1275 redraw_win_later(oldwin, NOT_VALID); | |
1276 oldwin->w_redr_status = TRUE; | |
1277 | |
1278 if (need_status) | |
1279 { | |
1280 msg_row = Rows - 1; | |
1281 msg_col = sc_col; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1282 msg_clr_eos_force(); // Old command/ruler may still be there |
7 | 1283 comp_col(); |
1284 msg_row = Rows - 1; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1285 msg_col = 0; // put position back at start of line |
7 | 1286 } |
1287 | |
1288 /* | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1289 * equalize the window sizes. |
7 | 1290 */ |
1291 if (do_equal || dir != 0) | |
1292 win_equal(wp, TRUE, | |
1293 (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
|
1294 : dir == 'h' ? 'b' : 'v'); |
7 | 1295 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1296 // 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
|
1297 // size was given. |
7 | 1298 if (flags & WSP_VERT) |
1299 { | |
1300 i = p_wiw; | |
1301 if (size != 0) | |
1302 p_wiw = size; | |
1303 | |
1304 # ifdef FEAT_GUI | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1305 // When 'guioptions' includes 'L' or 'R' may have to add scrollbars. |
7 | 1306 if (gui.in_use) |
1307 gui_init_which_components(NULL); | |
1308 # endif | |
1309 } | |
1310 else | |
1311 { | |
1312 i = p_wh; | |
1313 if (size != 0) | |
1314 p_wh = size; | |
1315 } | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1316 |
6096 | 1317 #ifdef FEAT_JUMPLIST |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1318 // Keep same changelist position in new window. |
6096 | 1319 wp->w_changelistidx = oldwin->w_changelistidx; |
1320 #endif | |
1321 | |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1322 /* |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1323 * make the new window the current window |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
1324 */ |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1325 win_enter_ext(wp, FALSE, FALSE, TRUE, TRUE, TRUE); |
7 | 1326 if (flags & WSP_VERT) |
1327 p_wiw = i; | |
1328 else | |
1329 p_wh = i; | |
1330 | |
1331 return OK; | |
1332 } | |
1333 | |
1906 | 1334 |
675 | 1335 /* |
1336 * Initialize window "newp" from window "oldp". | |
1337 * Used when splitting a window and when creating a new tab page. | |
1338 * The windows will both edit the same buffer. | |
1822 | 1339 * WSP_NEWLOC may be specified in flags to prevent the location list from |
1340 * being copied. | |
675 | 1341 */ |
1342 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1343 win_init(win_T *newp, win_T *oldp, int flags UNUSED) |
675 | 1344 { |
1345 int i; | |
1346 | |
1347 newp->w_buffer = oldp->w_buffer; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
1348 #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
|
1349 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
|
1350 #endif |
675 | 1351 oldp->w_buffer->b_nwindows++; |
1352 newp->w_cursor = oldp->w_cursor; | |
1353 newp->w_valid = 0; | |
1354 newp->w_curswant = oldp->w_curswant; | |
1355 newp->w_set_curswant = oldp->w_set_curswant; | |
1356 newp->w_topline = oldp->w_topline; | |
1357 #ifdef FEAT_DIFF | |
1358 newp->w_topfill = oldp->w_topfill; | |
1359 #endif | |
1360 newp->w_leftcol = oldp->w_leftcol; | |
1361 newp->w_pcmark = oldp->w_pcmark; | |
1362 newp->w_prev_pcmark = oldp->w_prev_pcmark; | |
1363 newp->w_alt_fnum = oldp->w_alt_fnum; | |
826 | 1364 newp->w_wrow = oldp->w_wrow; |
675 | 1365 newp->w_fraction = oldp->w_fraction; |
1366 newp->w_prev_fraction_row = oldp->w_prev_fraction_row; | |
1367 #ifdef FEAT_JUMPLIST | |
1368 copy_jumplist(oldp, newp); | |
1369 #endif | |
1370 #ifdef FEAT_QUICKFIX | |
1822 | 1371 if (flags & WSP_NEWLOC) |
1372 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1373 // Don't copy the location list. |
1822 | 1374 newp->w_llist = NULL; |
1375 newp->w_llist_ref = NULL; | |
1376 } | |
1377 else | |
14844
a74786d0370c
patch 8.1.0434: copy_loclist() is too long
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
1378 copy_loclist_stack(oldp, newp); |
675 | 1379 #endif |
5584 | 1380 newp->w_localdir = (oldp->w_localdir == NULL) |
1381 ? NULL : vim_strsave(oldp->w_localdir); | |
675 | 1382 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1383 // copy tagstack and folds |
675 | 1384 for (i = 0; i < oldp->w_tagstacklen; i++) |
1385 { | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1386 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
|
1387 *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
|
1388 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
|
1389 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
|
1390 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
|
1391 tag->user_data = vim_strsave(tag->user_data); |
675 | 1392 } |
1393 newp->w_tagstackidx = oldp->w_tagstackidx; | |
1394 newp->w_tagstacklen = oldp->w_tagstacklen; | |
3068 | 1395 #ifdef FEAT_FOLDING |
675 | 1396 copyFoldingState(oldp, newp); |
3068 | 1397 #endif |
1906 | 1398 |
1399 win_init_some(newp, oldp); | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1400 |
3068 | 1401 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
1402 check_colorcolumn(newp); |
3068 | 1403 #endif |
1906 | 1404 } |
1405 | |
1406 /* | |
6222 | 1407 * Initialize window "newp" from window "old". |
1906 | 1408 * Only the essential things are copied. |
1409 */ | |
1410 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1411 win_init_some(win_T *newp, win_T *oldp) |
1906 | 1412 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1413 // Use the same argument list. |
1906 | 1414 newp->w_alist = oldp->w_alist; |
1415 ++newp->w_alist->al_refcount; | |
1416 newp->w_arg_idx = oldp->w_arg_idx; | |
1417 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1418 // copy options from existing window |
1906 | 1419 win_copy_options(oldp, newp); |
675 | 1420 } |
1421 | |
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
|
1422 /* |
23645f9a5ce2
patch 8.1.1452: line and col property of popup windows not properly checked
Bram Moolenaar <Bram@vim.org>
parents:
16890
diff
changeset
|
1423 * 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
|
1424 */ |
17051
221d4b82bc0b
patch 8.1.1525: cannot move a popup window with the mouse
Bram Moolenaar <Bram@vim.org>
parents:
17043
diff
changeset
|
1425 int |
16780
491c01280a5d
patch 8.1.1392: build failure in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1426 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
|
1427 { |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1428 #ifdef FEAT_PROP_POPUP |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1429 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1430 |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1431 FOR_ALL_POPUPWINS(wp) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1432 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1433 return TRUE; |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
1434 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
|
1435 if (wp == win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1436 return TRUE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1437 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1438 return FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1439 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
1440 |
7 | 1441 /* |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1442 * Check if "win" is a pointer to an existing window in the current tab page. |
7 | 1443 */ |
1444 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1445 win_valid(win_T *win) |
7 | 1446 { |
1447 win_T *wp; | |
1448 | |
1449 if (win == NULL) | |
1450 return FALSE; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1451 FOR_ALL_WINDOWS(wp) |
7 | 1452 if (wp == win) |
1453 return TRUE; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1454 return win_valid_popup(win); |
7 | 1455 } |
1456 | |
1457 /* | |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1458 * 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
|
1459 */ |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1460 int |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1461 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
|
1462 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1463 win_T *wp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1464 tabpage_T *tp; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1465 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1466 if (win == NULL) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1467 return FALSE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1468 FOR_ALL_TABPAGES(tp) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1469 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1470 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
|
1471 { |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1472 if (wp == win) |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1473 return TRUE; |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1474 } |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1475 #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
|
1476 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
|
1477 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
|
1478 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
|
1479 #endif |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1480 } |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1481 return win_valid_popup(win); |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1482 } |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1483 |
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1484 /* |
7 | 1485 * Return the number of windows. |
1486 */ | |
1487 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1488 win_count(void) |
7 | 1489 { |
1490 win_T *wp; | |
1491 int count = 0; | |
1492 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
1493 FOR_ALL_WINDOWS(wp) |
7 | 1494 ++count; |
1495 return count; | |
1496 } | |
1497 | |
1498 /* | |
1499 * Make "count" windows on the screen. | |
1500 * Return actual number of windows on the screen. | |
1501 * Must be called when there is just one window, filling the whole screen | |
1502 * (excluding the command line). | |
1503 */ | |
1504 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1505 make_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1506 int count, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1507 int vertical UNUSED) // split windows vertically if TRUE |
7 | 1508 { |
1509 int maxcount; | |
1510 int todo; | |
1511 | |
1512 if (vertical) | |
1513 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1514 // Each windows needs at least 'winminwidth' lines and a separator |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1515 // column. |
7 | 1516 maxcount = (curwin->w_width + curwin->w_vsep_width |
1517 - (p_wiw - p_wmw)) / (p_wmw + 1); | |
1518 } | |
1519 else | |
1520 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1521 // 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
|
1522 maxcount = (VISIBLE_HEIGHT(curwin) + curwin->w_status_height |
7 | 1523 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT); |
1524 } | |
1525 | |
1526 if (maxcount < 2) | |
1527 maxcount = 2; | |
1528 if (count > maxcount) | |
1529 count = maxcount; | |
1530 | |
1531 /* | |
1532 * add status line now, otherwise first window will be too big | |
1533 */ | |
1534 if (count > 1) | |
1535 last_status(TRUE); | |
1536 | |
1537 /* | |
1538 * Don't execute autocommands while creating the windows. Must do that | |
1539 * when putting the buffers in the windows. | |
1540 */ | |
1410 | 1541 block_autocmds(); |
7 | 1542 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1543 // todo is number of windows left to create |
7 | 1544 for (todo = count - 1; todo > 0; --todo) |
1545 if (vertical) | |
1546 { | |
1547 if (win_split(curwin->w_width - (curwin->w_width - todo) | |
1548 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL) | |
1549 break; | |
1550 } | |
1551 else | |
1552 { | |
1553 if (win_split(curwin->w_height - (curwin->w_height - todo | |
1554 * STATUS_HEIGHT) / (todo + 1) | |
1555 - STATUS_HEIGHT, WSP_ABOVE) == FAIL) | |
1556 break; | |
1557 } | |
1558 | |
1410 | 1559 unblock_autocmds(); |
7 | 1560 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1561 // return actual number of windows |
7 | 1562 return (count - todo); |
1563 } | |
1564 | |
1565 /* | |
1566 * Exchange current and next window | |
1567 */ | |
1568 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1569 win_exchange(long Prenum) |
7 | 1570 { |
1571 frame_T *frp; | |
1572 frame_T *frp2; | |
1573 win_T *wp; | |
1574 win_T *wp2; | |
1575 int temp; | |
1576 | |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
1577 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
|
1578 return; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
1579 if (ONE_WINDOW) // just one window |
7 | 1580 { |
1581 beep_flush(); | |
1582 return; | |
1583 } | |
1584 | |
1585 #ifdef FEAT_GUI | |
1586 need_mouse_correct = TRUE; | |
1587 #endif | |
1588 | |
1589 /* | |
1590 * find window to exchange with | |
1591 */ | |
1592 if (Prenum) | |
1593 { | |
1594 frp = curwin->w_frame->fr_parent->fr_child; | |
1595 while (frp != NULL && --Prenum > 0) | |
1596 frp = frp->fr_next; | |
1597 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1598 else if (curwin->w_frame->fr_next != NULL) // Swap with next |
7 | 1599 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
|
1600 else // Swap last window in row/col with previous |
7 | 1601 frp = curwin->w_frame->fr_prev; |
1602 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1603 // 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
|
1604 // containing windows. |
7 | 1605 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin) |
1606 return; | |
1607 wp = frp->fr_win; | |
1608 | |
1609 /* | |
1610 * 1. remove curwin from the list. Remember after which window it was in wp2 | |
1611 * 2. insert curwin before wp in the list | |
1612 * if wp != wp2 | |
1613 * 3. remove wp from the list | |
1614 * 4. insert wp after wp2 | |
1615 * 5. exchange the status line height and vsep width. | |
1616 */ | |
1617 wp2 = curwin->w_prev; | |
1618 frp2 = curwin->w_frame->fr_prev; | |
1619 if (wp->w_prev != curwin) | |
1620 { | |
671 | 1621 win_remove(curwin, NULL); |
7 | 1622 frame_remove(curwin->w_frame); |
1623 win_append(wp->w_prev, curwin); | |
1624 frame_insert(frp, curwin->w_frame); | |
1625 } | |
1626 if (wp != wp2) | |
1627 { | |
671 | 1628 win_remove(wp, NULL); |
7 | 1629 frame_remove(wp->w_frame); |
1630 win_append(wp2, wp); | |
1631 if (frp2 == NULL) | |
1632 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame); | |
1633 else | |
1634 frame_append(frp2, wp->w_frame); | |
1635 } | |
1636 temp = curwin->w_status_height; | |
1637 curwin->w_status_height = wp->w_status_height; | |
1638 wp->w_status_height = temp; | |
1639 temp = curwin->w_vsep_width; | |
1640 curwin->w_vsep_width = wp->w_vsep_width; | |
1641 wp->w_vsep_width = temp; | |
1642 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1643 // If the windows are not in the same frame, exchange the sizes to avoid |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1644 // messing up the window layout. Otherwise fix the frame sizes. |
7 | 1645 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent) |
1646 { | |
1647 temp = curwin->w_height; | |
1648 curwin->w_height = wp->w_height; | |
1649 wp->w_height = temp; | |
1650 temp = curwin->w_width; | |
1651 curwin->w_width = wp->w_width; | |
1652 wp->w_width = temp; | |
1653 } | |
1654 else | |
1655 { | |
1656 frame_fix_height(curwin); | |
1657 frame_fix_height(wp); | |
1658 frame_fix_width(curwin); | |
1659 frame_fix_width(wp); | |
1660 } | |
1661 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1662 (void)win_comp_pos(); // recompute window positions |
7 | 1663 |
1664 win_enter(wp, TRUE); | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1665 redraw_all_later(NOT_VALID); |
7 | 1666 } |
1667 | |
1668 /* | |
1669 * rotate windows: if upwards TRUE the second window becomes the first one | |
1670 * if upwards FALSE the first window becomes the second one | |
1671 */ | |
1672 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1673 win_rotate(int upwards, int count) |
7 | 1674 { |
1675 win_T *wp1; | |
1676 win_T *wp2; | |
1677 frame_T *frp; | |
1678 int n; | |
1679 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1680 if (ONE_WINDOW) // nothing to do |
7 | 1681 { |
1682 beep_flush(); | |
1683 return; | |
1684 } | |
1685 | |
1686 #ifdef FEAT_GUI | |
1687 need_mouse_correct = TRUE; | |
1688 #endif | |
1689 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1690 // 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
|
1691 FOR_ALL_FRAMES(frp, curwin->w_frame->fr_parent->fr_child) |
7 | 1692 if (frp->fr_win == NULL) |
1693 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
1694 emsg(_("E443: Cannot rotate when another window is split")); |
7 | 1695 return; |
1696 } | |
1697 | |
1698 while (count--) | |
1699 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1700 if (upwards) // first window becomes last window |
7 | 1701 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1702 // remove first window/frame from the list |
7 | 1703 frp = curwin->w_frame->fr_parent->fr_child; |
1704 wp1 = frp->fr_win; | |
671 | 1705 win_remove(wp1, NULL); |
7 | 1706 frame_remove(frp); |
1707 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1708 // find last frame and append removed window/frame after it |
7 | 1709 for ( ; frp->fr_next != NULL; frp = frp->fr_next) |
1710 ; | |
1711 win_append(frp->fr_win, wp1); | |
1712 frame_append(frp, wp1->w_frame); | |
1713 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1714 wp2 = frp->fr_win; // previously last window |
7 | 1715 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1716 else // last window becomes first window |
7 | 1717 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1718 // find last window/frame in the list and remove it |
7 | 1719 for (frp = curwin->w_frame; frp->fr_next != NULL; |
1720 frp = frp->fr_next) | |
1721 ; | |
1722 wp1 = frp->fr_win; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1723 wp2 = wp1->w_prev; // will become last window |
671 | 1724 win_remove(wp1, NULL); |
7 | 1725 frame_remove(frp); |
1726 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1727 // append the removed window/frame before the first in the list |
7 | 1728 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1); |
1729 frame_insert(frp->fr_parent->fr_child, frp); | |
1730 } | |
1731 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1732 // exchange status height and vsep width of old and new last window |
7 | 1733 n = wp2->w_status_height; |
1734 wp2->w_status_height = wp1->w_status_height; | |
1735 wp1->w_status_height = n; | |
1736 frame_fix_height(wp1); | |
1737 frame_fix_height(wp2); | |
1738 n = wp2->w_vsep_width; | |
1739 wp2->w_vsep_width = wp1->w_vsep_width; | |
1740 wp1->w_vsep_width = n; | |
1741 frame_fix_width(wp1); | |
1742 frame_fix_width(wp2); | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1743 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1744 // recompute w_winrow and w_wincol for all windows |
7 | 1745 (void)win_comp_pos(); |
1746 } | |
1747 | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1748 redraw_all_later(NOT_VALID); |
7 | 1749 } |
1750 | |
1751 /* | |
1752 * Move the current window to the very top/bottom/left/right of the screen. | |
1753 */ | |
1754 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1755 win_totop(int size, int flags) |
7 | 1756 { |
1757 int dir; | |
1758 int height = curwin->w_height; | |
1759 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1760 if (ONE_WINDOW) |
7 | 1761 { |
1762 beep_flush(); | |
1763 return; | |
1764 } | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1765 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
|
1766 return; |
7 | 1767 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1768 // Remove the window and frame from the tree of frames. |
671 | 1769 (void)winframe_remove(curwin, &dir, NULL); |
1770 win_remove(curwin, NULL); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1771 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
|
1772 (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
|
1773 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1774 // Split a window on the desired side and put the window there. |
7 | 1775 (void)win_split_ins(size, flags, curwin, dir); |
1776 if (!(flags & WSP_VERT)) | |
1777 { | |
1778 win_setheight(height); | |
1779 if (p_ea) | |
1780 win_equal(curwin, TRUE, 'v'); | |
1781 } | |
1782 | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1783 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1784 // 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
|
1785 // scrollbars. Have to update them anyway. |
1906 | 1786 gui_may_update_scrollbars(); |
1787 #endif | |
7 | 1788 } |
1789 | |
1790 /* | |
1791 * Move window "win1" to below/right of "win2" and make "win1" the current | |
1792 * window. Only works within the same frame! | |
1793 */ | |
1794 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1795 win_move_after(win_T *win1, win_T *win2) |
7 | 1796 { |
1797 int height; | |
1798 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1799 // check if the arguments are reasonable |
7 | 1800 if (win1 == win2) |
1801 return; | |
1802 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1803 // check if there is something to do |
7 | 1804 if (win2->w_next != win1) |
1805 { | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1806 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
|
1807 { |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1808 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
|
1809 return; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1810 } |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
1811 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1812 // may need move the status line/vertical separator of the last window |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1813 // |
7 | 1814 if (win1 == lastwin) |
1815 { | |
1816 height = win1->w_prev->w_status_height; | |
1817 win1->w_prev->w_status_height = win1->w_status_height; | |
1818 win1->w_status_height = height; | |
1070 | 1819 if (win1->w_prev->w_vsep_width == 1) |
1820 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1821 // 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
|
1822 // add it to the last window. Adjust the frame widths. |
1070 | 1823 win1->w_prev->w_vsep_width = 0; |
1824 win1->w_prev->w_frame->fr_width -= 1; | |
1825 win1->w_vsep_width = 1; | |
1826 win1->w_frame->fr_width += 1; | |
1827 } | |
7 | 1828 } |
1829 else if (win2 == lastwin) | |
1830 { | |
1831 height = win1->w_status_height; | |
1832 win1->w_status_height = win2->w_status_height; | |
1833 win2->w_status_height = height; | |
1070 | 1834 if (win1->w_vsep_width == 1) |
1835 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1836 // 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
|
1837 // window, win2. Adjust the frame widths. |
1070 | 1838 win2->w_vsep_width = 1; |
1839 win2->w_frame->fr_width += 1; | |
1840 win1->w_vsep_width = 0; | |
1841 win1->w_frame->fr_width -= 1; | |
1842 } | |
7 | 1843 } |
671 | 1844 win_remove(win1, NULL); |
7 | 1845 frame_remove(win1->w_frame); |
1846 win_append(win2, win1); | |
1847 frame_append(win2->w_frame, win1->w_frame); | |
1848 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1849 (void)win_comp_pos(); // recompute w_winrow for all windows |
7 | 1850 redraw_later(NOT_VALID); |
1851 } | |
1852 win_enter(win1, FALSE); | |
1853 } | |
1854 | |
1855 /* | |
1856 * Make all windows the same height. | |
1857 * 'next_curwin' will soon be the current window, make sure it has enough | |
1858 * rows. | |
1859 */ | |
1860 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1861 win_equal( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1862 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
|
1863 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
|
1864 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
|
1865 // 'b' for both, 0 for using p_ead |
7 | 1866 { |
1867 if (dir == 0) | |
1868 dir = *p_ead; | |
1869 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current, | |
685 | 1870 topframe, dir, 0, tabline_height(), |
667 | 1871 (int)Columns, topframe->fr_height); |
7 | 1872 } |
1873 | |
1874 /* | |
1875 * Set a frame to a new position and height, spreading the available room | |
1876 * equally over contained frames. | |
1877 * The window "next_curwin" (if not NULL) should at least get the size from | |
1878 * 'winheight' and 'winwidth' if possible. | |
1879 */ | |
1880 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1881 win_equal_rec( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1882 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
|
1883 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
|
1884 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
|
1885 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
|
1886 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
|
1887 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
|
1888 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
|
1889 int height) // new height of frame |
7 | 1890 { |
1891 int n, m; | |
1892 int extra_sep = 0; | |
1893 int wincount, totwincount = 0; | |
1894 frame_T *fr; | |
1895 int next_curwin_size = 0; | |
1896 int room = 0; | |
1897 int new_size; | |
1898 int has_next_curwin = 0; | |
1899 int hnc; | |
1900 | |
1901 if (topfr->fr_layout == FR_LEAF) | |
1902 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1903 // 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
|
1904 // Redraw when size or position changes |
7 | 1905 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row |
1906 || topfr->fr_width != width || topfr->fr_win->w_wincol != col | |
1907 ) | |
1908 { | |
1909 topfr->fr_win->w_winrow = row; | |
1910 frame_new_height(topfr, height, FALSE, FALSE); | |
1911 topfr->fr_win->w_wincol = col; | |
779 | 1912 frame_new_width(topfr, width, FALSE, FALSE); |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
1913 redraw_all_later(NOT_VALID); |
7 | 1914 } |
1915 } | |
1916 else if (topfr->fr_layout == FR_ROW) | |
1917 { | |
1918 topfr->fr_width = width; | |
1919 topfr->fr_height = height; | |
1920 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1921 if (dir != 'v') // equalize frame widths |
7 | 1922 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1923 // 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
|
1924 // frame. |
7 | 1925 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
|
1926 // add one for the rightmost window, it doesn't have a separator |
7 | 1927 if (col + width == Columns) |
1928 extra_sep = 1; | |
1929 else | |
1930 extra_sep = 0; | |
1931 totwincount = (n + extra_sep) / (p_wmw + 1); | |
779 | 1932 has_next_curwin = frame_has_win(topfr, next_curwin); |
1933 | |
1934 /* | |
1935 * Compute width for "next_curwin" window and room available for | |
1936 * other windows. | |
1937 * "m" is the minimal width when counting p_wiw for "next_curwin". | |
1938 */ | |
7 | 1939 m = frame_minwidth(topfr, next_curwin); |
1940 room = width - m; | |
1941 if (room < 0) | |
1942 { | |
1943 next_curwin_size = p_wiw + room; | |
1944 room = 0; | |
1945 } | |
1946 else | |
1947 { | |
779 | 1948 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
|
1949 FOR_ALL_FRAMES(fr, topfr->fr_child) |
779 | 1950 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1951 // If 'winfixwidth' set keep the window width if |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1952 // possible. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1953 // Watch out for this window being the next_curwin. |
779 | 1954 if (frame_fixed_width(fr)) |
1955 { | |
1956 n = frame_minwidth(fr, NOWIN); | |
1957 new_size = fr->fr_width; | |
1958 if (frame_has_win(fr, next_curwin)) | |
1959 { | |
1960 room += p_wiw - p_wmw; | |
1961 next_curwin_size = 0; | |
1962 if (new_size < p_wiw) | |
1963 new_size = p_wiw; | |
1964 } | |
1965 else | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1966 // These windows don't use up room. |
779 | 1967 totwincount -= (n + (fr->fr_next == NULL |
1968 ? extra_sep : 0)) / (p_wmw + 1); | |
1969 room -= new_size - n; | |
1970 if (room < 0) | |
1971 { | |
1972 new_size += room; | |
1973 room = 0; | |
1974 } | |
1975 fr->fr_newwidth = new_size; | |
1976 } | |
1977 } | |
1978 if (next_curwin_size == -1) | |
1979 { | |
1980 if (!has_next_curwin) | |
1981 next_curwin_size = 0; | |
1982 else if (totwincount > 1 | |
1983 && (room + (totwincount - 2)) | |
1984 / (totwincount - 1) > p_wiw) | |
1985 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1986 // 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
|
1987 // the room equally. |
834 | 1988 next_curwin_size = (room + p_wiw |
1989 + (totwincount - 1) * p_wmw | |
1990 + (totwincount - 1)) / totwincount; | |
779 | 1991 room -= next_curwin_size - p_wiw; |
1992 } | |
1993 else | |
1994 next_curwin_size = p_wiw; | |
1995 } | |
7 | 1996 } |
779 | 1997 |
1998 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1999 --totwincount; // don't count curwin |
7 | 2000 } |
2001 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2002 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2003 { |
2004 wincount = 1; | |
2005 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
|
2006 // last frame gets all that remains (avoid roundoff error) |
7 | 2007 new_size = width; |
2008 else if (dir == 'v') | |
2009 new_size = fr->fr_width; | |
779 | 2010 else if (frame_fixed_width(fr)) |
2011 { | |
2012 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
|
2013 wincount = 0; // doesn't count as a sizeable window |
779 | 2014 } |
7 | 2015 else |
2016 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2017 // Compute the maximum number of windows horiz. in "fr". |
7 | 2018 n = frame_minwidth(fr, NOWIN); |
2019 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2020 / (p_wmw + 1); | |
2021 m = frame_minwidth(fr, next_curwin); | |
779 | 2022 if (has_next_curwin) |
2023 hnc = frame_has_win(fr, next_curwin); | |
2024 else | |
2025 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2026 if (hnc) // don't count next_curwin |
7 | 2027 --wincount; |
779 | 2028 if (totwincount == 0) |
2029 new_size = room; | |
2030 else | |
2031 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
7 | 2032 / totwincount; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2033 if (hnc) // add next_curwin size |
7 | 2034 { |
2035 next_curwin_size -= p_wiw - (m - n); | |
2036 new_size += next_curwin_size; | |
779 | 2037 room -= new_size - next_curwin_size; |
7 | 2038 } |
779 | 2039 else |
2040 room -= new_size; | |
2041 new_size += n; | |
7 | 2042 } |
2043 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2044 // 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
|
2045 // window, unless equalizing all frames. |
7 | 2046 if (!current || dir != 'v' || topfr->fr_parent != NULL |
2047 || (new_size != fr->fr_width) | |
2048 || frame_has_win(fr, next_curwin)) | |
2049 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
779 | 2050 new_size, height); |
2051 col += new_size; | |
2052 width -= new_size; | |
7 | 2053 totwincount -= wincount; |
2054 } | |
2055 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2056 else // topfr->fr_layout == FR_COL |
7 | 2057 { |
2058 topfr->fr_width = width; | |
2059 topfr->fr_height = height; | |
2060 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2061 if (dir != 'h') // equalize frame heights |
7 | 2062 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2063 // Compute maximum number of windows vertically in this frame. |
7 | 2064 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
|
2065 // add one for the bottom window if it doesn't have a statusline |
7 | 2066 if (row + height == cmdline_row && p_ls == 0) |
2067 extra_sep = 1; | |
2068 else | |
2069 extra_sep = 0; | |
2070 totwincount = (n + extra_sep) / (p_wmh + 1); | |
2071 has_next_curwin = frame_has_win(topfr, next_curwin); | |
2072 | |
2073 /* | |
2074 * Compute height for "next_curwin" window and room available for | |
2075 * other windows. | |
2076 * "m" is the minimal height when counting p_wh for "next_curwin". | |
2077 */ | |
2078 m = frame_minheight(topfr, next_curwin); | |
2079 room = height - m; | |
2080 if (room < 0) | |
2081 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2082 // The room is less then 'winheight', use all space for the |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2083 // current window. |
7 | 2084 next_curwin_size = p_wh + room; |
2085 room = 0; | |
2086 } | |
2087 else | |
2088 { | |
2089 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
|
2090 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2091 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2092 // 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
|
2093 // possible. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2094 // Watch out for this window being the next_curwin. |
7 | 2095 if (frame_fixed_height(fr)) |
2096 { | |
2097 n = frame_minheight(fr, NOWIN); | |
2098 new_size = fr->fr_height; | |
2099 if (frame_has_win(fr, next_curwin)) | |
2100 { | |
2101 room += p_wh - p_wmh; | |
2102 next_curwin_size = 0; | |
2103 if (new_size < p_wh) | |
2104 new_size = p_wh; | |
2105 } | |
2106 else | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2107 // These windows don't use up room. |
7 | 2108 totwincount -= (n + (fr->fr_next == NULL |
2109 ? extra_sep : 0)) / (p_wmh + 1); | |
2110 room -= new_size - n; | |
2111 if (room < 0) | |
2112 { | |
2113 new_size += room; | |
2114 room = 0; | |
2115 } | |
2116 fr->fr_newheight = new_size; | |
2117 } | |
2118 } | |
2119 if (next_curwin_size == -1) | |
2120 { | |
2121 if (!has_next_curwin) | |
2122 next_curwin_size = 0; | |
2123 else if (totwincount > 1 | |
2124 && (room + (totwincount - 2)) | |
2125 / (totwincount - 1) > p_wh) | |
2126 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2127 // 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
|
2128 // spread the room equally. |
834 | 2129 next_curwin_size = (room + p_wh |
2130 + (totwincount - 1) * p_wmh | |
7 | 2131 + (totwincount - 1)) / totwincount; |
2132 room -= next_curwin_size - p_wh; | |
2133 } | |
2134 else | |
2135 next_curwin_size = p_wh; | |
2136 } | |
2137 } | |
2138 | |
2139 if (has_next_curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2140 --totwincount; // don't count curwin |
7 | 2141 } |
2142 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
2143 FOR_ALL_FRAMES(fr, topfr->fr_child) |
7 | 2144 { |
2145 wincount = 1; | |
2146 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
|
2147 // last frame gets all that remains (avoid roundoff error) |
7 | 2148 new_size = height; |
2149 else if (dir == 'h') | |
2150 new_size = fr->fr_height; | |
2151 else if (frame_fixed_height(fr)) | |
2152 { | |
2153 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
|
2154 wincount = 0; // doesn't count as a sizeable window |
7 | 2155 } |
2156 else | |
2157 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2158 // Compute the maximum number of windows vert. in "fr". |
7 | 2159 n = frame_minheight(fr, NOWIN); |
2160 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0)) | |
2161 / (p_wmh + 1); | |
2162 m = frame_minheight(fr, next_curwin); | |
2163 if (has_next_curwin) | |
2164 hnc = frame_has_win(fr, next_curwin); | |
2165 else | |
2166 hnc = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2167 if (hnc) // don't count next_curwin |
7 | 2168 --wincount; |
2169 if (totwincount == 0) | |
2170 new_size = room; | |
2171 else | |
2172 new_size = (wincount * room + ((unsigned)totwincount >> 1)) | |
2173 / totwincount; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2174 if (hnc) // add next_curwin size |
7 | 2175 { |
2176 next_curwin_size -= p_wh - (m - n); | |
2177 new_size += next_curwin_size; | |
2178 room -= new_size - next_curwin_size; | |
2179 } | |
2180 else | |
2181 room -= new_size; | |
2182 new_size += n; | |
2183 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2184 // 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
|
2185 // window, unless equalizing all frames. |
7 | 2186 if (!current || dir != 'h' || topfr->fr_parent != NULL |
2187 || (new_size != fr->fr_height) | |
2188 || frame_has_win(fr, next_curwin)) | |
2189 win_equal_rec(next_curwin, current, fr, dir, col, row, | |
2190 width, new_size); | |
2191 row += new_size; | |
2192 height -= new_size; | |
2193 totwincount -= wincount; | |
2194 } | |
2195 } | |
2196 } | |
2197 | |
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
|
2198 #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
|
2199 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
|
2200 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
|
2201 { |
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
|
2202 // 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
|
2203 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
|
2204 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
|
2205 |
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
|
2206 // 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
|
2207 // 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
|
2208 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
|
2209 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
|
2210 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
|
2211 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
|
2212 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2213 // 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
|
2214 // 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
|
2215 // mode when entering the window again. |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2216 if (State & INSERT) |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
2217 { |
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
|
2218 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
|
2219 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
|
2220 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
|
2221 } |
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
|
2222 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2223 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2224 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
|
2225 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
|
2226 { |
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
|
2227 // 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
|
2228 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
|
2229 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
|
2230 |
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
|
2231 // 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
|
2232 // 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
|
2233 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
|
2234 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
|
2235 |
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
|
2236 // When entering the prompt window restart Insert mode if we were in Insert |
3e6477e767ba
patch 8.1.0042: if omni completion opens a window Insert mode is stopped
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
2237 // mode when we left it. |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2238 restart_edit = win->w_buffer->b_prompt_insert; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2239 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
13837
diff
changeset
|
2240 #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
|
2241 |
7 | 2242 /* |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2243 * Close all windows for buffer "buf". |
7 | 2244 */ |
2245 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2246 close_windows( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2247 buf_T *buf, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2248 int keep_curwin) // don't close "curwin" |
7 | 2249 { |
671 | 2250 win_T *wp; |
2251 tabpage_T *tp, *nexttp; | |
685 | 2252 int h = tabline_height(); |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2253 int count = tabpage_index(NULL); |
7 | 2254 |
2255 ++RedrawingDisabled; | |
671 | 2256 |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
2257 for (wp = firstwin; wp != NULL && !ONE_WINDOW; ) |
7 | 2258 { |
3570 | 2259 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
|
2260 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
7 | 2261 { |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
2262 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
|
2263 // 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
|
2264 // 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
|
2265 break; |
671 | 2266 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2267 // Start all over, autocommands may change the window layout. |
671 | 2268 wp = firstwin; |
7 | 2269 } |
2270 else | |
671 | 2271 wp = wp->w_next; |
7 | 2272 } |
671 | 2273 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2274 // Also check windows in other tab pages. |
671 | 2275 for (tp = first_tabpage; tp != NULL; tp = nexttp) |
2276 { | |
2277 nexttp = tp->tp_next; | |
672 | 2278 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
|
2279 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
3570 | 2280 if (wp->w_buffer == buf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2281 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
671 | 2282 { |
2283 win_close_othertab(wp, FALSE, tp); | |
2284 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2285 // 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
|
2286 // autocommands may change the window layout. |
671 | 2287 nexttp = first_tabpage; |
2288 break; | |
2289 } | |
2290 } | |
2291 | |
7 | 2292 --RedrawingDisabled; |
671 | 2293 |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2294 if (count != tabpage_index(NULL)) |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2295 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2296 |
4305 | 2297 redraw_tabline = TRUE; |
685 | 2298 if (h != tabline_height()) |
671 | 2299 shell_new_rows(); |
7 | 2300 } |
2301 | |
2302 /* | |
1906 | 2303 * Return TRUE if the current window is the only window that exists (ignoring |
2304 * "aucmd_win"). | |
672 | 2305 * Returns FALSE if there is a window, possibly in another tab page. |
667 | 2306 */ |
672 | 2307 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2308 last_window(void) |
667 | 2309 { |
1906 | 2310 return (one_window() && first_tabpage->tp_next == NULL); |
2311 } | |
2312 | |
2313 /* | |
2314 * Return TRUE if there is only one window other than "aucmd_win" in the | |
2315 * current tab page. | |
2316 */ | |
3365 | 2317 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2318 one_window(void) |
1906 | 2319 { |
2320 win_T *wp; | |
2321 int seen_one = FALSE; | |
2322 | |
2323 FOR_ALL_WINDOWS(wp) | |
2324 { | |
2325 if (wp != aucmd_win) | |
2326 { | |
2327 if (seen_one) | |
2328 return FALSE; | |
2329 seen_one = TRUE; | |
2330 } | |
2331 } | |
2332 return TRUE; | |
667 | 2333 } |
2334 | |
2335 /* | |
3535 | 2336 * Close the possibly last window in a tab page. |
2337 * Returns TRUE when the window was closed already. | |
2338 */ | |
2339 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2340 close_last_window_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2341 win_T *win, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2342 int free_buf, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2343 tabpage_T *prev_curtab) |
3535 | 2344 { |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2345 if (ONE_WINDOW) |
3535 | 2346 { |
4354 | 2347 buf_T *old_curbuf = curbuf; |
2348 | |
3535 | 2349 /* |
2350 * Closing the last window in a tab page. First go to another tab | |
2351 * page and then close the window and the tab page. This avoids that | |
2352 * curwin and curtab are invalid while we are freeing memory, they may | |
2353 * be used in GUI events. | |
3582 | 2354 * Don't trigger autocommands yet, they may use wrong values, so do |
2355 * that below. | |
3535 | 2356 */ |
4354 | 2357 goto_tabpage_tp(alt_tabpage(), FALSE, TRUE); |
3535 | 2358 redraw_tabline = TRUE; |
2359 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2360 // 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
|
2361 // to the other tab page. |
3535 | 2362 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win) |
2363 { | |
2364 int h = tabline_height(); | |
2365 | |
2366 win_close_othertab(win, free_buf, prev_curtab); | |
2367 if (h != tabline_height()) | |
2368 shell_new_rows(); | |
2369 } | |
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
|
2370 #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
|
2371 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
|
2372 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2373 // 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
|
2374 // that now. |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
2375 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf); |
4354 | 2376 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); |
3582 | 2377 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
4354 | 2378 if (old_curbuf != curbuf) |
2379 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
3535 | 2380 return TRUE; |
2381 } | |
2382 return FALSE; | |
2383 } | |
2384 | |
2385 /* | |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2386 * 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
|
2387 * "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
|
2388 * "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
|
2389 * windows are closed. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2390 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2391 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
|
2392 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
|
2393 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2394 #ifdef FEAT_SYN_HL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2395 // 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
|
2396 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2397 reset_synblock(win); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2398 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2399 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2400 #ifdef FEAT_QUICKFIX |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2401 // When the quickfix/location list window is closed, unlist the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2402 if (win->w_buffer != NULL && bt_quickfix(win->w_buffer)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2403 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
|
2404 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2405 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2406 // Close the link to the buffer. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2407 if (win->w_buffer != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2408 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2409 bufref_T bufref; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2410 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2411 set_bufref(&bufref, curbuf); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2412 win->w_closing = TRUE; |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
2413 close_buffer(win, win->w_buffer, action, abort_if_last, FALSE); |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2414 if (win_valid_any_tab(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2415 win->w_closing = FALSE; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2416 // 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
|
2417 // "wipe". |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2418 if (!bufref_valid(&bufref)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2419 curbuf = firstbuf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2420 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2421 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2422 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2423 /* |
819 | 2424 * Close window "win". Only works for the current tab page. |
7 | 2425 * If "free_buf" is TRUE related buffer may be unloaded. |
2426 * | |
3365 | 2427 * Called by :quit, :close, :xit, :wq and findtag(). |
5302 | 2428 * Returns FAIL when the window was not closed. |
7 | 2429 */ |
5302 | 2430 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2431 win_close(win_T *win, int free_buf) |
7 | 2432 { |
2433 win_T *wp; | |
2434 int other_buffer = FALSE; | |
2435 int close_curwin = FALSE; | |
2436 int dir; | |
2437 int help_window = FALSE; | |
847 | 2438 tabpage_T *prev_curtab = curtab; |
11593
c4e7fe672a72
patch 8.0.0679: using freed memory
Christian Brabandt <cb@256bit.org>
parents:
11591
diff
changeset
|
2439 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
|
2440 #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
|
2441 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
|
2442 #endif |
7 | 2443 |
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
|
2444 #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
|
2445 // 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
|
2446 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
|
2447 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
|
2448 #endif |
19271
ebeeb4b4a1fa
patch 8.2.0194: some commands can cause problems in terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
19265
diff
changeset
|
2449 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
|
2450 return FAIL; |
da5f5836e90c
patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
16863
diff
changeset
|
2451 |
667 | 2452 if (last_window()) |
7 | 2453 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
2454 emsg(_("E444: Cannot close last window")); |
5302 | 2455 return FAIL; |
7 | 2456 } |
2457 | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2458 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
|
2459 && 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
|
2460 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
|
2461 if (win_unlisted(win)) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2462 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2463 emsg(_("E813: Cannot close autocmd or popup window")); |
5302 | 2464 return FAIL; |
1906 | 2465 } |
2466 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) | |
2467 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
2468 emsg(_("E814: Cannot close window, only autocmd window would remain")); |
5302 | 2469 return FAIL; |
1906 | 2470 } |
2471 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2472 // 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
|
2473 // 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
|
2474 // curtab are invalid while we are freeing memory. |
3535 | 2475 if (close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2476 return FAIL; |
856 | 2477 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2478 // 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
|
2479 // 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
|
2480 if (bt_help(win->w_buffer)) |
7 | 2481 help_window = TRUE; |
2482 else | |
1906 | 2483 clear_snapshot(curtab, SNAP_HELP_IDX); |
7 | 2484 |
2485 if (win == curwin) | |
2486 { | |
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
|
2487 #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
|
2488 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
|
2489 #endif |
7 | 2490 /* |
2491 * Guess which window is going to be the new current window. | |
2492 * This may change because of the autocommands (sigh). | |
2493 */ | |
671 | 2494 wp = frame2win(win_altframe(win, NULL)); |
7 | 2495 |
2496 /* | |
3570 | 2497 * Be careful: If autocommands delete the window or cause this window |
2498 * to be the last one left, return now. | |
7 | 2499 */ |
2500 if (wp->w_buffer != curbuf) | |
2501 { | |
2502 other_buffer = TRUE; | |
3570 | 2503 win->w_closing = TRUE; |
7 | 2504 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2505 if (!win_valid(win)) |
5302 | 2506 return FAIL; |
3570 | 2507 win->w_closing = FALSE; |
2508 if (last_window()) | |
5302 | 2509 return FAIL; |
7 | 2510 } |
3570 | 2511 win->w_closing = TRUE; |
7 | 2512 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); |
3570 | 2513 if (!win_valid(win)) |
5302 | 2514 return FAIL; |
3570 | 2515 win->w_closing = FALSE; |
2516 if (last_window()) | |
5302 | 2517 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2518 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2519 // autocmds may abort script processing |
7 | 2520 if (aborting()) |
5302 | 2521 return FAIL; |
7 | 2522 #endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
2523 } |
7 | 2524 |
1101 | 2525 #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
|
2526 // 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
|
2527 // win_free(). |
1101 | 2528 if (gui.in_use) |
2529 out_flush(); | |
2530 #endif | |
2531 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
2532 #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
|
2533 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
|
2534 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
|
2535 #endif |
17043
d99805d25b42
patch 8.1.1521: when a popup window is closed the buffer remains
Bram Moolenaar <Bram@vim.org>
parents:
16902
diff
changeset
|
2536 win_close_buffer(win, free_buf ? DOBUF_UNLOAD : 0, TRUE); |
847 | 2537 |
4021 | 2538 if (only_one_window() && win_valid(win) && win->w_buffer == NULL |
2539 && (last_window() || curtab != prev_curtab | |
2540 || 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
|
2541 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2542 // 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
|
2543 // 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
|
2544 if (curwin->w_buffer == NULL) |
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2545 curwin->w_buffer = curbuf; |
4021 | 2546 getout(0); |
5233
1899acc5aebd
updated for version 7.4a.042
Bram Moolenaar <bram@vim.org>
parents:
5202
diff
changeset
|
2547 } |
4021 | 2548 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2549 // 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
|
2550 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
|
2551 && win->w_buffer == NULL) |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2552 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2553 // Need to close the window anyway, since the buffer is NULL. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2554 win_close_othertab(win, FALSE, prev_curtab); |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2555 return FAIL; |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2556 } |
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2557 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2558 // 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
|
2559 // other window. |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2560 if (!win_valid(win) || last_window() |
3535 | 2561 || close_last_window_tabpage(win, free_buf, prev_curtab)) |
5302 | 2562 return FAIL; |
7 | 2563 |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2564 // 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
|
2565 // to split a window to avoid trouble. |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2566 ++split_disallowed; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2567 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2568 // 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
|
2569 // the screen space. |
847 | 2570 wp = win_free_mem(win, &dir, NULL); |
2571 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2572 // 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
|
2573 // 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
|
2574 // too. |
847 | 2575 if (win == curwin) |
7 | 2576 { |
2577 curwin = wp; | |
2578 #ifdef FEAT_QUICKFIX | |
2579 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer)) | |
2580 { | |
2581 /* | |
1346 | 2582 * If the cursor goes to the preview or the quickfix window, try |
7 | 2583 * finding another window to go to. |
2584 */ | |
2585 for (;;) | |
2586 { | |
2587 if (wp->w_next == NULL) | |
2588 wp = firstwin; | |
2589 else | |
2590 wp = wp->w_next; | |
2591 if (wp == curwin) | |
2592 break; | |
2593 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer)) | |
2594 { | |
2595 curwin = wp; | |
2596 break; | |
2597 } | |
2598 } | |
2599 } | |
2600 #endif | |
2601 curbuf = curwin->w_buffer; | |
2602 close_curwin = TRUE; | |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2603 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2604 // 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
|
2605 // using the window. |
11193
75ccc8a15a51
patch 8.0.0483: illegal memory access when using :all
Christian Brabandt <cb@256bit.org>
parents:
11191
diff
changeset
|
2606 check_cursor(); |
7 | 2607 } |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2608 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
|
2609 // 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
|
2610 // 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
|
2611 win_equal(curwin, curwin->w_frame->fr_parent == win_frame, dir); |
7 | 2612 else |
2613 win_comp_pos(); | |
2614 if (close_curwin) | |
2615 { | |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2616 win_enter_ext(wp, FALSE, TRUE, FALSE, TRUE, TRUE); |
7 | 2617 if (other_buffer) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2618 // careful: after this wp and win may be invalid! |
7 | 2619 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
2620 } | |
2621 | |
17516
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2622 --split_disallowed; |
711db62c8aca
patch 8.1.1756: autocommand that splits window messes up window layout
Bram Moolenaar <Bram@vim.org>
parents:
17514
diff
changeset
|
2623 |
7 | 2624 /* |
667 | 2625 * If last window has a status line now and we don't want one, |
2626 * remove the status line. | |
7 | 2627 */ |
2628 last_status(FALSE); | |
2629 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2630 // 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
|
2631 // before it was opened. |
7 | 2632 if (help_window) |
1906 | 2633 restore_snapshot(SNAP_HELP_IDX, close_curwin); |
7 | 2634 |
18590
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2635 #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
|
2636 // 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
|
2637 // 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
|
2638 // 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
|
2639 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
|
2640 { |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2641 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
|
2642 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
|
2643 |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2644 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
|
2645 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
|
2646 ++diffcount; |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2647 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
|
2648 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
|
2649 } |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2650 #endif |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18467
diff
changeset
|
2651 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
2652 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2653 // When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. |
7 | 2654 if (gui.in_use && !win_hasvertsplit()) |
2655 gui_init_which_components(NULL); | |
2656 #endif | |
2657 | |
2658 redraw_all_later(NOT_VALID); | |
5302 | 2659 return OK; |
7 | 2660 } |
2661 | |
2662 /* | |
671 | 2663 * Close window "win" in tab page "tp", which is not the current tab page. |
3535 | 2664 * This may be the last window in that tab page and result in closing the tab, |
671 | 2665 * thus "tp" may become invalid! |
856 | 2666 * Caller must check if buffer is hidden and whether the tabline needs to be |
2667 * updated. | |
671 | 2668 */ |
2669 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2670 win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) |
671 | 2671 { |
2672 win_T *wp; | |
2673 int dir; | |
2674 tabpage_T *ptp = NULL; | |
2191 | 2675 int free_tp = FALSE; |
671 | 2676 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2677 // 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
|
2678 // page changed. |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2679 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
|
2680 && 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
|
2681 return; // window is already being closed |
3570 | 2682 |
10076
bc30991c3e98
commit https://github.com/vim/vim/commit/11fbc2866ccc11b4dd1726abdaf582a78ef3f743
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2683 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
|
2684 // 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
|
2685 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
2686 FALSE, FALSE); |
671 | 2687 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2688 // 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
|
2689 // current tab page. |
671 | 2690 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) |
2691 ; | |
672 | 2692 if (ptp == NULL || tp == curtab) |
671 | 2693 return; |
2694 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2695 // Autocommands may have closed the window already. |
671 | 2696 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next) |
2697 ; | |
2698 if (wp == NULL) | |
2699 return; | |
2700 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2701 // When closing the last window in a tab page remove the tab page. |
7009 | 2702 if (tp->tp_firstwin == tp->tp_lastwin) |
671 | 2703 { |
2704 if (tp == first_tabpage) | |
2705 first_tabpage = tp->tp_next; | |
2706 else | |
2707 { | |
2708 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; | |
2709 ptp = ptp->tp_next) | |
2710 ; | |
2711 if (ptp == NULL) | |
2712 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
2713 internal_error("win_close_othertab()"); |
671 | 2714 return; |
2715 } | |
2716 ptp->tp_next = tp->tp_next; | |
2717 } | |
2191 | 2718 free_tp = TRUE; |
2719 } | |
2720 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2721 // Free the memory used for the window. |
2191 | 2722 win_free_mem(win, &dir, tp); |
2723 | |
2724 if (free_tp) | |
847 | 2725 free_tabpage(tp); |
671 | 2726 } |
2727 | |
2728 /* | |
355 | 2729 * Free the memory used for a window. |
2730 * Returns a pointer to the window that got the freed up space. | |
2731 */ | |
2732 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2733 win_free_mem( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2734 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2735 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
|
2736 tabpage_T *tp) // tab page "win" is in, NULL for current |
355 | 2737 { |
2738 frame_T *frp; | |
2739 win_T *wp; | |
2740 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2741 // Remove the window and its frame from the tree of frames. |
355 | 2742 frp = win->w_frame; |
671 | 2743 wp = winframe_remove(win, dirp, tp); |
355 | 2744 vim_free(frp); |
671 | 2745 win_free(win, tp); |
355 | 2746 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2747 // When deleting the current window of another tab page select a new |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2748 // current window. |
819 | 2749 if (tp != NULL && win == tp->tp_curwin) |
2750 tp->tp_curwin = wp; | |
2751 | |
355 | 2752 return wp; |
2753 } | |
2754 | |
2755 #if defined(EXITFREE) || defined(PROTO) | |
2756 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2757 win_free_all(void) |
355 | 2758 { |
2759 int dummy; | |
2760 | |
671 | 2761 while (first_tabpage->tp_next != NULL) |
2762 tabpage_close(TRUE); | |
2763 | |
1906 | 2764 if (aucmd_win != NULL) |
2765 { | |
2766 (void)win_free_mem(aucmd_win, &dummy, NULL); | |
2767 aucmd_win = NULL; | |
2768 } | |
1918 | 2769 |
2770 while (firstwin != NULL) | |
2771 (void)win_free_mem(firstwin, &dummy, NULL); | |
6060 | 2772 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2773 // 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
|
2774 // instead of using freed memory. |
6060 | 2775 curwin = NULL; |
355 | 2776 } |
2777 #endif | |
2778 | |
2779 /* | |
7 | 2780 * Remove a window and its frame from the tree of frames. |
2781 * Returns a pointer to the window that got the freed up space. | |
2782 */ | |
1906 | 2783 win_T * |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2784 winframe_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2785 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2786 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
|
2787 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 2788 { |
2789 frame_T *frp, *frp2, *frp3; | |
2790 frame_T *frp_close = win->w_frame; | |
2791 win_T *wp; | |
2792 | |
2793 /* | |
671 | 2794 * If there is only one window there is nothing to remove. |
2795 */ | |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2796 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
671 | 2797 return NULL; |
2798 | |
2799 /* | |
7 | 2800 * Remove the window from its frame. |
2801 */ | |
671 | 2802 frp2 = win_altframe(win, tp); |
7 | 2803 wp = frame2win(frp2); |
2804 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2805 // Remove this frame from the list of frames. |
7 | 2806 frame_remove(frp_close); |
2807 | |
2808 if (frp_close->fr_parent->fr_layout == FR_COL) | |
2809 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2810 // 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
|
2811 // (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
|
2812 // to. |
1346 | 2813 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh) |
2814 { | |
2815 frp = frp_close->fr_prev; | |
2816 frp3 = frp_close->fr_next; | |
2817 while (frp != NULL || frp3 != NULL) | |
2818 { | |
2819 if (frp != NULL) | |
2820 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2821 if (!frame_fixed_height(frp)) |
1346 | 2822 { |
2823 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
|
2824 wp = frame2win(frp2); |
1346 | 2825 break; |
2826 } | |
2827 frp = frp->fr_prev; | |
2828 } | |
2829 if (frp3 != NULL) | |
2830 { | |
2831 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh) | |
2832 { | |
2833 frp2 = frp3; | |
2834 wp = frp3->fr_win; | |
2835 break; | |
2836 } | |
2837 frp3 = frp3->fr_next; | |
2838 } | |
2839 } | |
2840 } | |
7 | 2841 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height, |
2842 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); | |
2843 *dirp = 'v'; | |
2844 } | |
2845 else | |
2846 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2847 // 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
|
2848 // (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
|
2849 // to. |
1346 | 2850 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw) |
2851 { | |
2852 frp = frp_close->fr_prev; | |
2853 frp3 = frp_close->fr_next; | |
2854 while (frp != NULL || frp3 != NULL) | |
2855 { | |
2856 if (frp != NULL) | |
2857 { | |
16166
a3284dd27de6
patch 8.1.1088: height of quickfix window not retained with vertical split
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
2858 if (!frame_fixed_width(frp)) |
1346 | 2859 { |
2860 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
|
2861 wp = frame2win(frp2); |
1346 | 2862 break; |
2863 } | |
2864 frp = frp->fr_prev; | |
2865 } | |
2866 if (frp3 != NULL) | |
2867 { | |
2868 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw) | |
2869 { | |
2870 frp2 = frp3; | |
2871 wp = frp3->fr_win; | |
2872 break; | |
2873 } | |
2874 frp3 = frp3->fr_next; | |
2875 } | |
2876 } | |
2877 } | |
7 | 2878 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width, |
779 | 2879 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE); |
7 | 2880 *dirp = 'h'; |
2881 } | |
2882 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2883 // 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
|
2884 // updated. Can only be done after the sizes have been updated. |
7 | 2885 if (frp2 == frp_close->fr_next) |
2886 { | |
2887 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
|
2888 int col = win->w_wincol; |
7 | 2889 |
2890 frame_comp_pos(frp2, &row, &col); | |
2891 } | |
2892 | |
2893 if (frp2->fr_next == NULL && frp2->fr_prev == NULL) | |
2894 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2895 // 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
|
2896 // and remove it. |
7 | 2897 frp2->fr_parent->fr_layout = frp2->fr_layout; |
2898 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
|
2899 FOR_ALL_FRAMES(frp, frp2->fr_child) |
7 | 2900 frp->fr_parent = frp2->fr_parent; |
2901 frp2->fr_parent->fr_win = frp2->fr_win; | |
2902 if (frp2->fr_win != NULL) | |
2903 frp2->fr_win->w_frame = frp2->fr_parent; | |
2904 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
|
2905 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
|
2906 topframe->fr_child = frp; |
7 | 2907 vim_free(frp2); |
2908 | |
2909 frp2 = frp->fr_parent; | |
2910 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout) | |
2911 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2912 // 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
|
2913 // the frames into this list. |
7 | 2914 if (frp2->fr_child == frp) |
2915 frp2->fr_child = frp->fr_child; | |
2916 frp->fr_child->fr_prev = frp->fr_prev; | |
2917 if (frp->fr_prev != NULL) | |
2918 frp->fr_prev->fr_next = frp->fr_child; | |
2919 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next) | |
2920 { | |
2921 frp3->fr_parent = frp2; | |
2922 if (frp3->fr_next == NULL) | |
2923 { | |
2924 frp3->fr_next = frp->fr_next; | |
2925 if (frp->fr_next != NULL) | |
2926 frp->fr_next->fr_prev = frp3; | |
2927 break; | |
2928 } | |
2929 } | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
2930 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
|
2931 topframe->fr_child = frp2; |
7 | 2932 vim_free(frp); |
2933 } | |
2934 } | |
2935 | |
2936 return wp; | |
2937 } | |
2938 | |
2939 /* | |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2940 * 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
|
2941 * 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
|
2942 * |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2943 * 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
|
2944 * 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
|
2945 * 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
|
2946 * 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
|
2947 * respected when possible. |
7 | 2948 */ |
2949 static frame_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2950 win_altframe( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2951 win_T *win, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2952 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 2953 { |
2954 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
|
2955 frame_T *other_fr, *target_fr; |
7 | 2956 |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
2957 if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) |
667 | 2958 return alt_tabpage()->tp_curwin->w_frame; |
2959 | |
7 | 2960 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
|
2961 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2962 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
|
2963 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
|
2964 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
|
2965 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
|
2966 |
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
|
2967 // 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
|
2968 // window |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2969 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
|
2970 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
|
2971 |
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
|
2972 // 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
|
2973 // 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
|
2974 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
|
2975 { |
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
|
2976 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
|
2977 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
|
2978 } |
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
|
2979 |
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
|
2980 // 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
|
2981 // 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
|
2982 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
|
2983 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2984 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
|
2985 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
|
2986 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2987 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2988 // 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
|
2989 // window, reverse the selection. |
355 | 2990 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
|
2991 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2992 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
|
2993 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
|
2994 } |
7 | 2995 else |
13837
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2996 { |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
2997 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
|
2998 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
|
2999 } |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3000 |
79419af4b29c
patch 8.0.1790: 'winfixwidth' is not always respected by :close
Christian Brabandt <cb@256bit.org>
parents:
13670
diff
changeset
|
3001 return target_fr; |
7 | 3002 } |
3003 | |
3004 /* | |
667 | 3005 * Return the tabpage that will be used if the current one is closed. |
3006 */ | |
3007 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3008 alt_tabpage(void) |
667 | 3009 { |
672 | 3010 tabpage_T *tp; |
3011 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3012 // Use the next tab page if possible. |
682 | 3013 if (curtab->tp_next != NULL) |
672 | 3014 return curtab->tp_next; |
3015 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3016 // Find the last but one tab page. |
682 | 3017 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next) |
3018 ; | |
674 | 3019 return tp; |
667 | 3020 } |
3021 | |
3022 /* | |
7 | 3023 * Find the left-upper window in frame "frp". |
3024 */ | |
3025 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3026 frame2win(frame_T *frp) |
7 | 3027 { |
3028 while (frp->fr_win == NULL) | |
3029 frp = frp->fr_child; | |
3030 return frp->fr_win; | |
3031 } | |
3032 | |
3033 /* | |
3034 * Return TRUE if frame "frp" contains window "wp". | |
3035 */ | |
3036 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3037 frame_has_win(frame_T *frp, win_T *wp) |
7 | 3038 { |
3039 frame_T *p; | |
3040 | |
3041 if (frp->fr_layout == FR_LEAF) | |
3042 return frp->fr_win == wp; | |
3043 | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3044 FOR_ALL_FRAMES(p, frp->fr_child) |
7 | 3045 if (frame_has_win(p, wp)) |
3046 return TRUE; | |
3047 return FALSE; | |
3048 } | |
3049 | |
3050 /* | |
3051 * Set a new height for a frame. Recursively sets the height for contained | |
3052 * frames and windows. Caller must take care of positions. | |
3053 */ | |
3054 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3055 frame_new_height( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3056 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3057 int height, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3058 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
|
3059 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
|
3060 // may cause the height not to be set |
7 | 3061 { |
3062 frame_T *frp; | |
3063 int extra_lines; | |
3064 int h; | |
3065 | |
3066 if (topfrp->fr_win != NULL) | |
3067 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3068 // Simple case: just one window. |
7 | 3069 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
|
3070 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
|
3071 - WINBAR_HEIGHT(topfrp->fr_win)); |
7 | 3072 } |
3073 else if (topfrp->fr_layout == FR_ROW) | |
3074 { | |
3075 do | |
3076 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3077 // 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
|
3078 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3079 { |
3080 frame_new_height(frp, height, topfirst, wfh); | |
3081 if (frp->fr_height > height) | |
3082 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3083 // Could not fit the windows, make the whole row higher. |
7 | 3084 height = frp->fr_height; |
3085 break; | |
3086 } | |
3087 } | |
3088 } | |
3089 while (frp != NULL); | |
3090 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3091 else // fr_layout == FR_COL |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3092 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3093 // 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
|
3094 // frame first, frames above that when needed. |
7 | 3095 |
3096 frp = topfrp->fr_child; | |
3097 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3098 // Advance past frames with one window with 'wfh' set. |
7 | 3099 while (frame_fixed_height(frp)) |
3100 { | |
3101 frp = frp->fr_next; | |
3102 if (frp == NULL) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3103 return; // no frame without 'wfh', give up |
7 | 3104 } |
3105 if (!topfirst) | |
3106 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3107 // Find the bottom frame of this column |
7 | 3108 while (frp->fr_next != NULL) |
3109 frp = frp->fr_next; | |
3110 if (wfh) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3111 // Advance back for frames with one window with 'wfh' set. |
7 | 3112 while (frame_fixed_height(frp)) |
3113 frp = frp->fr_prev; | |
3114 } | |
3115 | |
3116 extra_lines = height - topfrp->fr_height; | |
3117 if (extra_lines < 0) | |
3118 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3119 // reduce height of contained frames, bottom or top frame first |
7 | 3120 while (frp != NULL) |
3121 { | |
3122 h = frame_minheight(frp, NULL); | |
3123 if (frp->fr_height + extra_lines < h) | |
3124 { | |
3125 extra_lines += frp->fr_height - h; | |
3126 frame_new_height(frp, h, topfirst, wfh); | |
3127 } | |
3128 else | |
3129 { | |
3130 frame_new_height(frp, frp->fr_height + extra_lines, | |
3131 topfirst, wfh); | |
3132 break; | |
3133 } | |
3134 if (topfirst) | |
3135 { | |
3136 do | |
3137 frp = frp->fr_next; | |
3138 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3139 } | |
3140 else | |
3141 { | |
3142 do | |
3143 frp = frp->fr_prev; | |
3144 while (wfh && frp != NULL && frame_fixed_height(frp)); | |
3145 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3146 // Increase "height" if we could not reduce enough frames. |
7 | 3147 if (frp == NULL) |
3148 height -= extra_lines; | |
3149 } | |
3150 } | |
3151 else if (extra_lines > 0) | |
3152 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3153 // increase height of bottom or top frame |
7 | 3154 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh); |
3155 } | |
3156 } | |
3157 topfrp->fr_height = height; | |
3158 } | |
3159 | |
3160 /* | |
3161 * Return TRUE if height of frame "frp" should not be changed because of | |
3162 * the 'winfixheight' option. | |
3163 */ | |
3164 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3165 frame_fixed_height(frame_T *frp) |
7 | 3166 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3167 // frame with one window: fixed height if 'winfixheight' set. |
7 | 3168 if (frp->fr_win != NULL) |
3169 return frp->fr_win->w_p_wfh; | |
3170 | |
3171 if (frp->fr_layout == FR_ROW) | |
3172 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3173 // 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
|
3174 // height. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3175 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3176 if (frame_fixed_height(frp)) |
3177 return TRUE; | |
3178 return FALSE; | |
3179 } | |
3180 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3181 // 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
|
3182 // 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
|
3183 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3184 if (!frame_fixed_height(frp)) |
3185 return FALSE; | |
3186 return TRUE; | |
3187 } | |
3188 | |
3189 /* | |
779 | 3190 * Return TRUE if width of frame "frp" should not be changed because of |
3191 * the 'winfixwidth' option. | |
3192 */ | |
3193 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3194 frame_fixed_width(frame_T *frp) |
779 | 3195 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3196 // frame with one window: fixed width if 'winfixwidth' set. |
779 | 3197 if (frp->fr_win != NULL) |
3198 return frp->fr_win->w_p_wfw; | |
3199 | |
3200 if (frp->fr_layout == FR_COL) | |
3201 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3202 // 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
|
3203 // width. |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3204 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3205 if (frame_fixed_width(frp)) |
3206 return TRUE; | |
3207 return FALSE; | |
3208 } | |
3209 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3210 // 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
|
3211 // 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
|
3212 FOR_ALL_FRAMES(frp, frp->fr_child) |
779 | 3213 if (!frame_fixed_width(frp)) |
3214 return FALSE; | |
3215 return TRUE; | |
3216 } | |
3217 | |
3218 /* | |
7 | 3219 * Add a status line to windows at the bottom of "frp". |
3220 * Note: Does not check if there is room! | |
3221 */ | |
3222 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3223 frame_add_statusline(frame_T *frp) |
7 | 3224 { |
3225 win_T *wp; | |
3226 | |
3227 if (frp->fr_layout == FR_LEAF) | |
3228 { | |
3229 wp = frp->fr_win; | |
3230 if (wp->w_status_height == 0) | |
3231 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3232 if (wp->w_height > 0) // don't make it negative |
7 | 3233 --wp->w_height; |
3234 wp->w_status_height = STATUS_HEIGHT; | |
3235 } | |
3236 } | |
3237 else if (frp->fr_layout == FR_ROW) | |
3238 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3239 // 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
|
3240 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3241 frame_add_statusline(frp); |
3242 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3243 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
|
3244 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3245 // Only need to handle the last frame in the column. |
7 | 3246 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next) |
3247 ; | |
3248 frame_add_statusline(frp); | |
3249 } | |
3250 } | |
3251 | |
3252 /* | |
3253 * Set width of a frame. Handles recursively going through contained frames. | |
3254 * May remove separator line for windows at the right side (for win_close()). | |
3255 */ | |
3256 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3257 frame_new_width( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3258 frame_T *topfrp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3259 int width, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3260 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
|
3261 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
|
3262 // may cause the width not to be set |
7 | 3263 { |
3264 frame_T *frp; | |
3265 int extra_cols; | |
3266 int w; | |
3267 win_T *wp; | |
3268 | |
3269 if (topfrp->fr_layout == FR_LEAF) | |
3270 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3271 // Simple case: just one window. |
7 | 3272 wp = topfrp->fr_win; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3273 // Find out if there are any windows right of this one. |
7 | 3274 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent) |
3275 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL) | |
3276 break; | |
3277 if (frp->fr_parent == NULL) | |
3278 wp->w_vsep_width = 0; | |
3279 win_new_width(wp, width - wp->w_vsep_width); | |
3280 } | |
3281 else if (topfrp->fr_layout == FR_COL) | |
3282 { | |
779 | 3283 do |
3284 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3285 // 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
|
3286 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
779 | 3287 { |
3288 frame_new_width(frp, width, leftfirst, wfw); | |
3289 if (frp->fr_width > width) | |
3290 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3291 // Could not fit the windows, make whole column wider. |
779 | 3292 width = frp->fr_width; |
3293 break; | |
3294 } | |
3295 } | |
3296 } while (frp != NULL); | |
7 | 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_ROW |
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 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
|
3301 // frame first, frames left of it when needed. |
7 | 3302 |
3303 frp = topfrp->fr_child; | |
779 | 3304 if (wfw) |
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 'wfw' set. |
779 | 3306 while (frame_fixed_width(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 'wfw', give up |
779 | 3311 } |
7 | 3312 if (!leftfirst) |
779 | 3313 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3314 // Find the rightmost frame of this row |
7 | 3315 while (frp->fr_next != NULL) |
3316 frp = frp->fr_next; | |
779 | 3317 if (wfw) |
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 'wfw' set. |
779 | 3319 while (frame_fixed_width(frp)) |
3320 frp = frp->fr_prev; | |
3321 } | |
7 | 3322 |
3323 extra_cols = width - topfrp->fr_width; | |
3324 if (extra_cols < 0) | |
3325 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3326 // reduce frame width, rightmost frame first |
7 | 3327 while (frp != NULL) |
3328 { | |
3329 w = frame_minwidth(frp, NULL); | |
3330 if (frp->fr_width + extra_cols < w) | |
3331 { | |
3332 extra_cols += frp->fr_width - w; | |
779 | 3333 frame_new_width(frp, w, leftfirst, wfw); |
7 | 3334 } |
3335 else | |
3336 { | |
779 | 3337 frame_new_width(frp, frp->fr_width + extra_cols, |
3338 leftfirst, wfw); | |
7 | 3339 break; |
3340 } | |
3341 if (leftfirst) | |
779 | 3342 { |
3343 do | |
3344 frp = frp->fr_next; | |
3345 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3346 } | |
7 | 3347 else |
779 | 3348 { |
3349 do | |
3350 frp = frp->fr_prev; | |
3351 while (wfw && frp != NULL && frame_fixed_width(frp)); | |
3352 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3353 // Increase "width" if we could not reduce enough frames. |
779 | 3354 if (frp == NULL) |
3355 width -= extra_cols; | |
7 | 3356 } |
3357 } | |
3358 else if (extra_cols > 0) | |
3359 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3360 // increase width of rightmost frame |
779 | 3361 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw); |
7 | 3362 } |
3363 } | |
3364 topfrp->fr_width = width; | |
3365 } | |
3366 | |
3367 /* | |
3368 * Add the vertical separator to windows at the right side of "frp". | |
3369 * Note: Does not check if there is room! | |
3370 */ | |
3371 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3372 frame_add_vsep(frame_T *frp) |
7 | 3373 { |
3374 win_T *wp; | |
3375 | |
3376 if (frp->fr_layout == FR_LEAF) | |
3377 { | |
3378 wp = frp->fr_win; | |
3379 if (wp->w_vsep_width == 0) | |
3380 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3381 if (wp->w_width > 0) // don't make it negative |
7 | 3382 --wp->w_width; |
3383 wp->w_vsep_width = 1; | |
3384 } | |
3385 } | |
3386 else if (frp->fr_layout == FR_COL) | |
3387 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3388 // 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
|
3389 FOR_ALL_FRAMES(frp, frp->fr_child) |
7 | 3390 frame_add_vsep(frp); |
3391 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3392 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
|
3393 { |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3394 // Only need to handle the last frame in the row. |
7 | 3395 frp = frp->fr_child; |
3396 while (frp->fr_next != NULL) | |
3397 frp = frp->fr_next; | |
3398 frame_add_vsep(frp); | |
3399 } | |
3400 } | |
3401 | |
3402 /* | |
3403 * Set frame width from the window it contains. | |
3404 */ | |
3405 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3406 frame_fix_width(win_T *wp) |
7 | 3407 { |
3408 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width; | |
3409 } | |
3410 | |
3411 /* | |
3412 * Set frame height from the window it contains. | |
3413 */ | |
3414 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3415 frame_fix_height(win_T *wp) |
7 | 3416 { |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3417 wp->w_frame->fr_height = VISIBLE_HEIGHT(wp) + wp->w_status_height; |
7 | 3418 } |
3419 | |
3420 /* | |
3421 * Compute the minimal height for frame "topfrp". | |
3422 * Uses the 'winminheight' option. | |
3423 * When "next_curwin" isn't NULL, use p_wh for this window. | |
3424 * When "next_curwin" is NOWIN, don't use at least one line for the current | |
3425 * window. | |
3426 */ | |
3427 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3428 frame_minheight(frame_T *topfrp, win_T *next_curwin) |
7 | 3429 { |
3430 frame_T *frp; | |
3431 int m; | |
3432 int n; | |
3433 | |
3434 if (topfrp->fr_win != NULL) | |
3435 { | |
3436 if (topfrp->fr_win == next_curwin) | |
3437 m = p_wh + topfrp->fr_win->w_status_height; | |
3438 else | |
3439 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3440 // window: minimal height of the window plus status line |
7 | 3441 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
|
3442 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
|
3443 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3444 // 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
|
3445 // visible. |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3446 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
|
3447 ++m; |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
3448 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
|
3449 } |
7 | 3450 } |
3451 } | |
3452 else if (topfrp->fr_layout == FR_ROW) | |
3453 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3454 // get the minimal height from each frame in this row |
7 | 3455 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3456 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3457 { |
3458 n = frame_minheight(frp, next_curwin); | |
3459 if (n > m) | |
3460 m = n; | |
3461 } | |
3462 } | |
3463 else | |
3464 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3465 // Add up the minimal heights for all frames in this column. |
7 | 3466 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3467 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3468 m += frame_minheight(frp, next_curwin); |
3469 } | |
3470 | |
3471 return m; | |
3472 } | |
3473 | |
3474 /* | |
3475 * Compute the minimal width for frame "topfrp". | |
3476 * When "next_curwin" isn't NULL, use p_wiw for this window. | |
3477 * When "next_curwin" is NOWIN, don't use at least one column for the current | |
3478 * window. | |
3479 */ | |
3480 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3481 frame_minwidth( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3482 frame_T *topfrp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3483 win_T *next_curwin) // use p_wh and p_wiw for next_curwin |
7 | 3484 { |
3485 frame_T *frp; | |
3486 int m, n; | |
3487 | |
3488 if (topfrp->fr_win != NULL) | |
3489 { | |
3490 if (topfrp->fr_win == next_curwin) | |
3491 m = p_wiw + topfrp->fr_win->w_vsep_width; | |
3492 else | |
3493 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3494 // window: minimal width of the window plus separator column |
7 | 3495 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
|
3496 // Current window is minimal one column wide |
7 | 3497 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL) |
3498 ++m; | |
3499 } | |
3500 } | |
3501 else if (topfrp->fr_layout == FR_COL) | |
3502 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3503 // get the minimal width from each frame in this column |
7 | 3504 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3505 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3506 { |
3507 n = frame_minwidth(frp, next_curwin); | |
3508 if (n > m) | |
3509 m = n; | |
3510 } | |
3511 } | |
3512 else | |
3513 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3514 // Add up the minimal widths for all frames in this row. |
7 | 3515 m = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
3516 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 3517 m += frame_minwidth(frp, next_curwin); |
3518 } | |
3519 | |
3520 return m; | |
3521 } | |
3522 | |
3523 | |
3524 /* | |
3525 * Try to close all windows except current one. | |
3526 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is | |
3527 * used and the buffer was modified. | |
3528 * | |
3529 * Used by ":bdel" and ":only". | |
3530 */ | |
3531 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3532 close_others( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3533 int message, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3534 int forceit) // always hide all other windows |
7 | 3535 { |
3536 win_T *wp; | |
3537 win_T *nextwp; | |
3538 int r; | |
3539 | |
1906 | 3540 if (one_window()) |
7 | 3541 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
3542 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
|
3543 msg(_(m_onlyone)); |
7 | 3544 return; |
3545 } | |
3546 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3547 // Be very careful here: autocommands may change the window layout. |
7 | 3548 for (wp = firstwin; win_valid(wp); wp = nextwp) |
3549 { | |
3550 nextwp = wp->w_next; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3551 if (wp != curwin) // don't close current window |
7 | 3552 { |
3553 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3554 // Check if it's allowed to abandon this window |
7 | 3555 r = can_abandon(wp->w_buffer, forceit); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3556 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3557 { |
3558 nextwp = firstwin; | |
3559 continue; | |
3560 } | |
3561 if (!r) | |
3562 { | |
3563 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3564 if (message && (p_confirm || cmdmod.confirm) && p_write) | |
3565 { | |
3566 dialog_changed(wp->w_buffer, FALSE); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3567 if (!win_valid(wp)) // autocommands messed wp up |
7 | 3568 { |
3569 nextwp = firstwin; | |
3570 continue; | |
3571 } | |
3572 } | |
3573 if (bufIsChanged(wp->w_buffer)) | |
3574 #endif | |
3575 continue; | |
3576 } | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3577 win_close(wp, !buf_hide(wp->w_buffer) |
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3578 && !bufIsChanged(wp->w_buffer)); |
7 | 3579 } |
3580 } | |
3581 | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
3582 if (message && !ONE_WINDOW) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
3583 emsg(_("E445: Other window contains changes")); |
7 | 3584 } |
3585 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3586 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3587 win_init_empty(win_T *wp) |
1918 | 3588 { |
3589 redraw_win_later(wp, NOT_VALID); | |
3590 wp->w_lines_valid = 0; | |
3591 wp->w_cursor.lnum = 1; | |
3592 wp->w_curswant = wp->w_cursor.col = 0; | |
3593 wp->w_cursor.coladd = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3594 wp->w_pcmark.lnum = 1; // pcmark not cleared but set to line 1 |
1918 | 3595 wp->w_pcmark.col = 0; |
3596 wp->w_prev_pcmark.lnum = 0; | |
3597 wp->w_prev_pcmark.col = 0; | |
3598 wp->w_topline = 1; | |
7 | 3599 #ifdef FEAT_DIFF |
1918 | 3600 wp->w_topfill = 0; |
3601 #endif | |
3602 wp->w_botline = 2; | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3603 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) |
3068 | 3604 wp->w_s = &wp->w_buffer->b_s; |
3605 #endif | |
7 | 3606 } |
3607 | |
3608 /* | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3609 * Init the current window "curwin". |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3610 * Called when a new file is being edited. |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3611 */ |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3612 void |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3613 curwin_init(void) |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3614 { |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3615 win_init_empty(curwin); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3616 } |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3617 |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3618 /* |
7 | 3619 * Allocate the first window and put an empty buffer in it. |
3620 * Called from main(). | |
667 | 3621 * Return FAIL when something goes wrong (out of memory). |
7 | 3622 */ |
667 | 3623 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3624 win_alloc_first(void) |
7 | 3625 { |
675 | 3626 if (win_alloc_firstwin(NULL) == FAIL) |
667 | 3627 return FAIL; |
3628 | |
672 | 3629 first_tabpage = alloc_tabpage(); |
667 | 3630 if (first_tabpage == NULL) |
3631 return FAIL; | |
3632 first_tabpage->tp_topframe = topframe; | |
672 | 3633 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
|
3634 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
|
3635 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
|
3636 curtab->tp_curwin = curwin; |
1906 | 3637 |
667 | 3638 return OK; |
3639 } | |
3640 | |
1906 | 3641 /* |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3642 * 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
|
3643 * 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
|
3644 * 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
|
3645 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3646 win_T * |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3647 win_alloc_popup_win(void) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3648 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3649 win_T *wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3650 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3651 wp = win_alloc(NULL, TRUE); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3652 if (wp != NULL) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3653 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3654 // 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
|
3655 // window makes most sense. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3656 win_init_some(wp, curwin); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3657 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3658 RESET_BINDING(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3659 new_frame(wp); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3660 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3661 return wp; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3662 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3663 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3664 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3665 * Initialize window "wp" to display buffer "buf". |
1906 | 3666 */ |
3667 void | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3668 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
|
3669 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3670 wp->w_buffer = buf; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3671 ++buf->b_nwindows; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3672 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
|
3673 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3674 // 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
|
3675 // win_enter_ext(). |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3676 VIM_CLEAR(wp->w_localdir); |
1906 | 3677 } |
3678 | |
667 | 3679 /* |
675 | 3680 * Allocate the first window or the first window in a new tab page. |
3681 * 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
|
3682 * When "oldwin" is not NULL copy info from it to the new window. |
667 | 3683 * Return FAIL when something goes wrong (out of memory). |
3684 */ | |
3685 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3686 win_alloc_firstwin(win_T *oldwin) |
667 | 3687 { |
1906 | 3688 curwin = win_alloc(NULL, FALSE); |
675 | 3689 if (oldwin == NULL) |
3690 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3691 // 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
|
3692 // initialize from scratch. |
675 | 3693 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); |
3694 if (curwin == NULL || curbuf == NULL) | |
3695 return FAIL; | |
3696 curwin->w_buffer = curbuf; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3697 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3698 curwin->w_s = &(curbuf->b_s); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
3699 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3700 curbuf->b_nwindows = 1; // there is one window |
675 | 3701 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
|
3702 curwin_init(); // init current window |
675 | 3703 } |
3704 else | |
3705 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3706 // First window in new tab page, initialize it from "oldwin". |
1822 | 3707 win_init(curwin, oldwin, 0); |
675 | 3708 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3709 // We don't want cursor- and scroll-binding in the first window. |
2583 | 3710 RESET_BINDING(curwin); |
675 | 3711 } |
7 | 3712 |
1906 | 3713 new_frame(curwin); |
3714 if (curwin->w_frame == NULL) | |
667 | 3715 return FAIL; |
1906 | 3716 topframe = curwin->w_frame; |
7 | 3717 topframe->fr_width = Columns; |
3718 topframe->fr_height = Rows - p_ch; | |
667 | 3719 |
3720 return OK; | |
3721 } | |
3722 | |
3723 /* | |
1906 | 3724 * Create a frame for window "wp". |
3725 */ | |
3726 static void | |
3727 new_frame(win_T *wp) | |
3728 { | |
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
|
3729 frame_T *frp = ALLOC_CLEAR_ONE(frame_T); |
1906 | 3730 |
3731 wp->w_frame = frp; | |
3732 if (frp != NULL) | |
3733 { | |
3734 frp->fr_layout = FR_LEAF; | |
3735 frp->fr_win = wp; | |
3736 } | |
3737 } | |
3738 | |
3739 /* | |
667 | 3740 * Initialize the window and frame size to the maximum. |
3741 */ | |
3742 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3743 win_init_size(void) |
667 | 3744 { |
3745 firstwin->w_height = ROWS_AVAIL; | |
3746 topframe->fr_height = ROWS_AVAIL; | |
3747 firstwin->w_width = Columns; | |
3748 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
|
3749 } |
672 | 3750 |
3751 /* | |
3752 * Allocate a new tabpage_T and init the values. | |
3753 * Returns NULL when out of memory. | |
3754 */ | |
3755 static tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3756 alloc_tabpage(void) |
672 | 3757 { |
3758 tabpage_T *tp; | |
4287 | 3759 # ifdef FEAT_GUI |
3760 int i; | |
3761 # endif | |
3762 | |
672 | 3763 |
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
|
3764 tp = ALLOC_CLEAR_ONE(tabpage_T); |
4287 | 3765 if (tp == NULL) |
3766 return NULL; | |
3767 | |
3768 # ifdef FEAT_EVAL | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3769 // init t: variables |
4287 | 3770 tp->tp_vars = dict_alloc(); |
3771 if (tp->tp_vars == NULL) | |
3772 { | |
3773 vim_free(tp); | |
3774 return NULL; | |
3775 } | |
3776 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); | |
3777 # endif | |
3778 | |
788 | 3779 # ifdef FEAT_GUI |
4287 | 3780 for (i = 0; i < 3; i++) |
3781 tp->tp_prev_which_scrollbars[i] = -1; | |
788 | 3782 # endif |
672 | 3783 # ifdef FEAT_DIFF |
4287 | 3784 tp->tp_diff_invalid = TRUE; |
672 | 3785 # endif |
4287 | 3786 tp->tp_ch_used = p_ch; |
3787 | |
672 | 3788 return tp; |
3789 } | |
3790 | |
852 | 3791 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3792 free_tabpage(tabpage_T *tp) |
672 | 3793 { |
1906 | 3794 int idx; |
3795 | |
672 | 3796 # ifdef FEAT_DIFF |
3797 diff_clear(tp); | |
3798 # endif | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
3799 # 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
|
3800 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
|
3801 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
|
3802 #endif |
1906 | 3803 for (idx = 0; idx < SNAP_COUNT; ++idx) |
3804 clear_snapshot(tp, idx); | |
819 | 3805 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3806 vars_clear(&tp->tp_vars->dv_hashtab); // free all t: variables |
4287 | 3807 hash_init(&tp->tp_vars->dv_hashtab); |
3808 unref_var_dict(tp->tp_vars); | |
819 | 3809 #endif |
4401 | 3810 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3811 vim_free(tp->tp_localdir); |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3812 |
4401 | 3813 #ifdef FEAT_PYTHON |
3814 python_tabpage_free(tp); | |
3815 #endif | |
3816 | |
3817 #ifdef FEAT_PYTHON3 | |
3818 python3_tabpage_free(tp); | |
3819 #endif | |
3820 | |
672 | 3821 vim_free(tp); |
3822 } | |
3823 | |
667 | 3824 /* |
675 | 3825 * Create a new Tab page with one window. |
3826 * It will edit the current buffer, like after ":split". | |
682 | 3827 * When "after" is 0 put it just after the current Tab page. |
3828 * Otherwise put it just before tab page "after". | |
667 | 3829 * Return FAIL or OK. |
3830 */ | |
3831 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3832 win_new_tabpage(int after) |
667 | 3833 { |
672 | 3834 tabpage_T *tp = curtab; |
667 | 3835 tabpage_T *newtp; |
682 | 3836 int n; |
667 | 3837 |
672 | 3838 newtp = alloc_tabpage(); |
667 | 3839 if (newtp == NULL) |
3840 return FAIL; | |
3841 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3842 // Remember the current windows in this Tab page. |
4354 | 3843 if (leave_tabpage(curbuf, TRUE) == FAIL) |
674 | 3844 { |
3845 vim_free(newtp); | |
3846 return FAIL; | |
3847 } | |
672 | 3848 curtab = newtp; |
667 | 3849 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
3850 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
|
3851 ? 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
|
3852 // Create a new empty window. |
675 | 3853 if (win_alloc_firstwin(tp->tp_curwin) == OK) |
667 | 3854 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3855 // Make the new Tab page the new topframe. |
682 | 3856 if (after == 1) |
3857 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3858 // New tab page becomes the first one. |
682 | 3859 newtp->tp_next = first_tabpage; |
3860 first_tabpage = newtp; | |
3861 } | |
3862 else | |
3863 { | |
3864 if (after > 0) | |
3865 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3866 // Put new tab page before tab page "after". |
682 | 3867 n = 2; |
3868 for (tp = first_tabpage; tp->tp_next != NULL | |
3869 && n < after; tp = tp->tp_next) | |
3870 ++n; | |
3871 } | |
3872 newtp->tp_next = tp->tp_next; | |
3873 tp->tp_next = newtp; | |
3874 } | |
19155
013f20a3bc6b
patch 8.2.0137: crash when using win_execute() from a new tab
Bram Moolenaar <Bram@vim.org>
parents:
19143
diff
changeset
|
3875 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
|
3876 |
667 | 3877 win_init_size(); |
685 | 3878 firstwin->w_winrow = tabline_height(); |
819 | 3879 win_comp_scroll(curwin); |
667 | 3880 |
3881 newtp->tp_topframe = topframe; | |
671 | 3882 last_status(FALSE); |
815 | 3883 |
3884 #if defined(FEAT_GUI) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3885 // 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
|
3886 // scrollbars. Have to update them anyway. |
1906 | 3887 gui_may_update_scrollbars(); |
815 | 3888 #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
|
3889 #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
|
3890 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
|
3891 #endif |
815 | 3892 |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
3893 redraw_all_later(NOT_VALID); |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3894 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 3895 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
|
3896 apply_autocmds(EVENT_TABNEW, NULL, NULL, FALSE, curbuf); |
675 | 3897 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); |
667 | 3898 return OK; |
3899 } | |
3900 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3901 // Failed, get back the previous Tab page |
4354 | 3902 enter_tabpage(curtab, curbuf, TRUE, TRUE); |
667 | 3903 return FAIL; |
3904 } | |
3905 | |
3906 /* | |
682 | 3907 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer, |
3908 * like with ":split". | |
3909 * Returns OK if a new tab page was created, FAIL otherwise. | |
3910 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
3911 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3912 may_open_tabpage(void) |
682 | 3913 { |
1090 | 3914 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab; |
3915 | |
3916 if (n != 0) | |
682 | 3917 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3918 cmdmod.tab = 0; // reset it to avoid doing it twice |
1090 | 3919 postponed_split_tab = 0; |
682 | 3920 return win_new_tabpage(n); |
3921 } | |
3922 return FAIL; | |
3923 } | |
3924 | |
3925 /* | |
672 | 3926 * Create up to "maxcount" tabpages with empty windows. |
3927 * Returns the number of resulting tab pages. | |
667 | 3928 */ |
672 | 3929 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3930 make_tabpages(int maxcount) |
667 | 3931 { |
672 | 3932 int count = maxcount; |
3933 int todo; | |
3934 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3935 // Limit to 'tabpagemax' tabs. |
698 | 3936 if (count > p_tpm) |
3937 count = p_tpm; | |
672 | 3938 |
3939 /* | |
3940 * Don't execute autocommands while creating the tab pages. Must do that | |
3941 * when putting the buffers in the windows. | |
3942 */ | |
1410 | 3943 block_autocmds(); |
672 | 3944 |
3945 for (todo = count - 1; todo > 0; --todo) | |
682 | 3946 if (win_new_tabpage(0) == FAIL) |
667 | 3947 break; |
672 | 3948 |
1410 | 3949 unblock_autocmds(); |
672 | 3950 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3951 // return actual number of tab pages |
672 | 3952 return (count - todo); |
667 | 3953 } |
3954 | |
3955 /* | |
671 | 3956 * Return TRUE when "tpc" points to a valid tab page. |
3957 */ | |
3958 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3959 valid_tabpage(tabpage_T *tpc) |
671 | 3960 { |
3961 tabpage_T *tp; | |
3962 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
3963 FOR_ALL_TABPAGES(tp) |
671 | 3964 if (tp == tpc) |
3965 return TRUE; | |
3966 return FALSE; | |
3967 } | |
3968 | |
3969 /* | |
11199
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3970 * 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
|
3971 * valid. |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3972 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3973 int |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3974 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
|
3975 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3976 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
|
3977 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
|
3978 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3979 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
|
3980 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3981 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
|
3982 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3983 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
|
3984 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3985 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
|
3986 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
|
3987 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3988 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
|
3989 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3990 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3991 // 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
|
3992 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
|
3993 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3994 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3995 /* |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3996 * 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
|
3997 * 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
|
3998 */ |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
3999 void |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4000 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
|
4001 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4002 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
|
4003 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4004 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
|
4005 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4006 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
|
4007 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
|
4008 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4009 else |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4010 { |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4011 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
|
4012 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
|
4013 ; |
11232
a14090a30a3f
patch 8.0.0502: Coverity complains about possible NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11207
diff
changeset
|
4014 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
|
4015 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
|
4016 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4017 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4018 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
|
4019 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
|
4020 } |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4021 |
e08ead1d269f
patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents:
11193
diff
changeset
|
4022 /* |
671 | 4023 * Find tab page "n" (first one is 1). Returns NULL when not found. |
4024 */ | |
4025 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4026 find_tabpage(int n) |
671 | 4027 { |
4028 tabpage_T *tp; | |
4029 int i = 1; | |
4030 | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4031 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
|
4032 return curtab; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4033 |
671 | 4034 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next) |
4035 ++i; | |
4036 return tp; | |
4037 } | |
4038 | |
4039 /* | |
685 | 4040 * Get index of tab page "tp". First one has index 1. |
686 | 4041 * When not found returns number of tab pages plus one. |
685 | 4042 */ |
4043 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4044 tabpage_index(tabpage_T *ftp) |
685 | 4045 { |
4046 int i = 1; | |
4047 tabpage_T *tp; | |
4048 | |
4049 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next) | |
4050 ++i; | |
4051 return i; | |
4052 } | |
4053 | |
4054 /* | |
674 | 4055 * Prepare for leaving the current tab page. |
4352 | 4056 * When autocommands change "curtab" we don't leave the tab page and return |
674 | 4057 * FAIL. |
4058 * Careful: When OK is returned need to get a new tab page very very soon! | |
667 | 4059 */ |
674 | 4060 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4061 leave_tabpage( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4062 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
|
4063 // NULL if unknown |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4064 int trigger_leave_autocmds UNUSED) |
667 | 4065 { |
674 | 4066 tabpage_T *tp = curtab; |
4067 | |
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
|
4068 #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
|
4069 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
|
4070 #endif |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4071 reset_VIsual_and_resel(); // stop Visual mode |
4354 | 4072 if (trigger_leave_autocmds) |
4073 { | |
4074 if (new_curbuf != curbuf) | |
4075 { | |
4076 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4077 if (curtab != tp) | |
4078 return FAIL; | |
4079 } | |
4080 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
674 | 4081 if (curtab != tp) |
4082 return FAIL; | |
4354 | 4083 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); |
4084 if (curtab != tp) | |
4085 return FAIL; | |
4086 } | |
668 | 4087 #if defined(FEAT_GUI) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4088 // Remove the scrollbars. They may be added back later. |
668 | 4089 if (gui.in_use) |
4090 gui_remove_scrollbars(); | |
4091 #endif | |
667 | 4092 tp->tp_curwin = curwin; |
671 | 4093 tp->tp_prevwin = prevwin; |
667 | 4094 tp->tp_firstwin = firstwin; |
4095 tp->tp_lastwin = lastwin; | |
668 | 4096 tp->tp_old_Rows = Rows; |
4097 tp->tp_old_Columns = Columns; | |
667 | 4098 firstwin = NULL; |
4099 lastwin = NULL; | |
674 | 4100 return OK; |
667 | 4101 } |
4102 | |
4103 /* | |
4104 * Start using tab page "tp". | |
675 | 4105 * Only to be used after leave_tabpage() or freeing the current tab page. |
4354 | 4106 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4107 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
667 | 4108 */ |
4109 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4110 enter_tabpage( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4111 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4112 buf_T *old_curbuf UNUSED, |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4113 int trigger_enter_autocmds, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
4114 int trigger_leave_autocmds) |
667 | 4115 { |
19143
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4116 int row; |
668 | 4117 int old_off = tp->tp_firstwin->w_winrow; |
870 | 4118 win_T *next_prevwin = tp->tp_prevwin; |
668 | 4119 |
672 | 4120 curtab = tp; |
667 | 4121 firstwin = tp->tp_firstwin; |
4122 lastwin = tp->tp_lastwin; | |
4123 topframe = tp->tp_topframe; | |
870 | 4124 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4125 // 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
|
4126 // 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
|
4127 // This triggers autocommands, thus may make "tp" invalid. |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4128 win_enter_ext(tp->tp_curwin, FALSE, TRUE, FALSE, |
4918
0792cc5133ce
updated for version 7.3.1204
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4129 trigger_enter_autocmds, trigger_leave_autocmds); |
870 | 4130 prevwin = next_prevwin; |
4131 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4132 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
|
4133 row = win_comp_pos(); // recompute w_winrow for all windows |
672 | 4134 #ifdef FEAT_DIFF |
4135 diff_need_scrollbind = TRUE; | |
4136 #endif | |
668 | 4137 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4138 // The tabpage line may have appeared or disappeared, may need to resize |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4139 // the frames for that. When the Vim window was resized need to update |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4140 // frame sizes too. Use the stored value of p_ch, so that it can be |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4141 // different for each tab page. |
16477
8cc31b1b1d23
patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
4142 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
|
4143 clear_cmdline = TRUE; |
824 | 4144 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
|
4145 |
bfcafd1a3e37
patch 8.2.0131: command line is not cleared when switching tabs
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
4146 // 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
|
4147 // 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
|
4148 // 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
|
4149 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
|
4150 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
|
4151 |
685 | 4152 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow |
4153 #ifdef FEAT_GUI_TABLINE | |
4154 && !gui_use_tabline() | |
4155 #endif | |
4156 )) | |
668 | 4157 shell_new_rows(); |
674 | 4158 if (curtab->tp_old_Columns != Columns && starting == 0) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4159 shell_new_columns(); // update window widths |
668 | 4160 |
4161 #if defined(FEAT_GUI) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4162 // 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
|
4163 // scrollbars. Have to update them anyway. |
1906 | 4164 gui_may_update_scrollbars(); |
667 | 4165 #endif |
4166 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4167 // 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
|
4168 // 'columns' have been set correctly. |
4354 | 4169 if (trigger_enter_autocmds) |
3582 | 4170 { |
4171 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); | |
4172 if (old_curbuf != curbuf) | |
4173 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4174 } | |
3413 | 4175 |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
4176 redraw_all_later(NOT_VALID); |
667 | 4177 } |
4178 | |
4179 /* | |
4180 * Go to tab page "n". For ":tab N" and "Ngt". | |
685 | 4181 * When "n" is 9999 go to the last tab page. |
667 | 4182 */ |
4183 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4184 goto_tabpage(int n) |
667 | 4185 { |
16405
840fa633ad64
patch 8.1.1207: some compilers give warning messages
Bram Moolenaar <Bram@vim.org>
parents:
16401
diff
changeset
|
4186 tabpage_T *tp = NULL; // shut up compiler |
682 | 4187 tabpage_T *ttp; |
667 | 4188 int i; |
4189 | |
857 | 4190 if (text_locked()) |
4191 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4192 // 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
|
4193 text_locked_msg(); |
857 | 4194 return; |
4195 } | |
4196 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4197 // If there is only one it can't work. |
675 | 4198 if (first_tabpage->tp_next == NULL) |
4199 { | |
4200 if (n > 1) | |
4201 beep_flush(); | |
4202 return; | |
4203 } | |
4204 | |
667 | 4205 if (n == 0) |
4206 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4207 // No count, go to next tab page, wrap around end. |
674 | 4208 if (curtab->tp_next == NULL) |
667 | 4209 tp = first_tabpage; |
4210 else | |
674 | 4211 tp = curtab->tp_next; |
667 | 4212 } |
682 | 4213 else if (n < 0) |
4214 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4215 // "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
|
4216 // this N times. |
682 | 4217 ttp = curtab; |
4218 for (i = n; i < 0; ++i) | |
4219 { | |
4220 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL; | |
4221 tp = tp->tp_next) | |
4222 ; | |
4223 ttp = tp; | |
4224 } | |
4225 } | |
685 | 4226 else if (n == 9999) |
4227 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4228 // Go to last tab page. |
685 | 4229 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next) |
4230 ; | |
4231 } | |
667 | 4232 else |
4233 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4234 // Go to tab page "n". |
685 | 4235 tp = find_tabpage(n); |
671 | 4236 if (tp == NULL) |
4237 { | |
4238 beep_flush(); | |
4239 return; | |
4240 } | |
667 | 4241 } |
4242 | |
4354 | 4243 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 4244 |
4245 #ifdef FEAT_GUI_TABLINE | |
4246 if (gui_use_tabline()) | |
690 | 4247 gui_mch_set_curtab(tabpage_index(curtab)); |
685 | 4248 #endif |
4249 } | |
4250 | |
4251 /* | |
4252 * Go to tabpage "tp". | |
4354 | 4253 * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE. |
4254 * Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE. | |
685 | 4255 * Note: doesn't update the GUI tab. |
4256 */ | |
4257 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4258 goto_tabpage_tp( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4259 tabpage_T *tp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4260 int trigger_enter_autocmds, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4261 int trigger_leave_autocmds) |
685 | 4262 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4263 // 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
|
4264 set_keep_msg(NULL, 0); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2115
diff
changeset
|
4265 |
4354 | 4266 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer, |
4267 trigger_leave_autocmds) == OK) | |
674 | 4268 { |
4269 if (valid_tabpage(tp)) | |
4354 | 4270 enter_tabpage(tp, curbuf, trigger_enter_autocmds, |
4271 trigger_leave_autocmds); | |
674 | 4272 else |
4354 | 4273 enter_tabpage(curtab, curbuf, trigger_enter_autocmds, |
4274 trigger_leave_autocmds); | |
674 | 4275 } |
667 | 4276 } |
7 | 4277 |
4278 /* | |
825 | 4279 * Enter window "wp" in tab page "tp". |
4280 * Also updates the GUI tab. | |
4281 */ | |
4282 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4283 goto_tabpage_win(tabpage_T *tp, win_T *wp) |
825 | 4284 { |
4354 | 4285 goto_tabpage_tp(tp, TRUE, TRUE); |
825 | 4286 if (curtab == tp && win_valid(wp)) |
4287 { | |
4288 win_enter(wp, TRUE); | |
4289 # ifdef FEAT_GUI_TABLINE | |
4290 if (gui_use_tabline()) | |
4291 gui_mch_set_curtab(tabpage_index(curtab)); | |
4292 # endif | |
4293 } | |
4294 } | |
4295 | |
4296 /* | |
6775 | 4297 * Move the current tab page to after tab page "nr". |
682 | 4298 */ |
4299 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4300 tabpage_move(int nr) |
682 | 4301 { |
6775 | 4302 int n = 1; |
4303 tabpage_T *tp, *tp_dst; | |
682 | 4304 |
4305 if (first_tabpage->tp_next == NULL) | |
4306 return; | |
4307 | |
6775 | 4308 for (tp = first_tabpage; tp->tp_next != NULL && n < nr; tp = tp->tp_next) |
4309 ++n; | |
4310 | |
4311 if (tp == curtab || (nr > 0 && tp->tp_next != NULL | |
4312 && tp->tp_next == curtab)) | |
4313 return; | |
4314 | |
4315 tp_dst = tp; | |
4316 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4317 // Remove the current tab page from the list of tab pages. |
682 | 4318 if (curtab == first_tabpage) |
4319 first_tabpage = curtab->tp_next; | |
4320 else | |
4321 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4322 FOR_ALL_TABPAGES(tp) |
682 | 4323 if (tp->tp_next == curtab) |
4324 break; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4325 if (tp == NULL) // "cannot happen" |
682 | 4326 return; |
4327 tp->tp_next = curtab->tp_next; | |
4328 } | |
4329 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4330 // Re-insert it at the specified position. |
6775 | 4331 if (nr <= 0) |
682 | 4332 { |
4333 curtab->tp_next = first_tabpage; | |
4334 first_tabpage = curtab; | |
4335 } | |
4336 else | |
4337 { | |
6775 | 4338 curtab->tp_next = tp_dst->tp_next; |
4339 tp_dst->tp_next = curtab; | |
682 | 4340 } |
4341 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4342 // Need to redraw the tabline. Tab page contents doesn't change. |
682 | 4343 redraw_tabline = TRUE; |
4344 } | |
4345 | |
4346 | |
4347 /* | |
7 | 4348 * Go to another window. |
4349 * When jumping to another buffer, stop Visual mode. Do this before | |
4350 * changing windows so we can yank the selection into the '*' register. | |
4351 * When jumping to another window on the same buffer, adjust its cursor | |
4352 * position to keep the same Visual area. | |
4353 */ | |
4354 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4355 win_goto(win_T *wp) |
7 | 4356 { |
2316
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4357 #ifdef FEAT_CONCEAL |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4358 win_T *owp = curwin; |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4359 #endif |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4360 |
19166
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4361 #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
|
4362 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
|
4363 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
|
4364 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
|
4365 { |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4366 emsg(_("E366: Not allowed to enter a popup window")); |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4367 return; |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4368 } |
215793f6b59d
patch 8.2.0142: possible to enter popup window with CTRL-W p
Bram Moolenaar <Bram@vim.org>
parents:
19155
diff
changeset
|
4369 #endif |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20049
diff
changeset
|
4370 if (text_and_win_locked()) |
7 | 4371 { |
4372 beep_flush(); | |
633 | 4373 text_locked_msg(); |
7 | 4374 return; |
4375 } | |
819 | 4376 if (curbuf_locked()) |
4377 return; | |
631 | 4378 |
7 | 4379 if (wp->w_buffer != curbuf) |
4380 reset_VIsual_and_resel(); | |
4381 else if (VIsual_active) | |
4382 wp->w_cursor = curwin->w_cursor; | |
4383 | |
4384 #ifdef FEAT_GUI | |
4385 need_mouse_correct = TRUE; | |
4386 #endif | |
4387 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
|
4388 |
db0ea641e382
Fix: cursor line not properly concealed when moving between windows.
Bram Moolenaar <bram@vim.org>
parents:
2314
diff
changeset
|
4389 #ifdef FEAT_CONCEAL |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15380
diff
changeset
|
4390 // Conceal cursor line in previous window, unconceal in current window. |
4094 | 4391 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
|
4392 redrawWinline(owp, owp->w_cursor.lnum); |
4094 | 4393 if (curwin->w_p_cole > 0 && !msg_scrolled) |
4394 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
|
4395 #endif |
7 | 4396 } |
4397 | |
4398 #if defined(FEAT_PERL) || defined(PROTO) | |
4399 /* | |
4400 * Find window number "winnr" (counting top to bottom). | |
4401 */ | |
4402 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4403 win_find_nr(int winnr) |
7 | 4404 { |
4405 win_T *wp; | |
4406 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4407 FOR_ALL_WINDOWS(wp) |
7 | 4408 if (--winnr == 0) |
4409 break; | |
4410 return wp; | |
4411 } | |
4412 #endif | |
4413 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4414 #if ((defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) || defined(PROTO) |
4429 | 4415 /* |
4416 * Find the tabpage for window "win". | |
4417 */ | |
4418 tabpage_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4419 win_find_tabpage(win_T *win) |
4429 | 4420 { |
4421 win_T *wp; | |
4422 tabpage_T *tp; | |
4423 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4424 FOR_ALL_TAB_WINDOWS(tp, wp) |
4429 | 4425 if (wp == win) |
4426 return tp; | |
4427 return NULL; | |
4428 } | |
4429 #endif | |
4430 | |
7 | 4431 /* |
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
|
4432 * 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
|
4433 * 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
|
4434 * 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
|
4435 * Returns the specified window if the neighbor is not found. |
7 | 4436 */ |
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
|
4437 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
|
4438 win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count) |
7 | 4439 { |
4440 frame_T *fr; | |
4441 frame_T *nfr; | |
4442 frame_T *foundfr; | |
4443 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4444 #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
|
4445 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
|
4446 // 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
|
4447 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
|
4448 #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
|
4449 foundfr = wp->w_frame; |
7 | 4450 while (count--) |
4451 { | |
4452 /* | |
4453 * First go upwards in the tree of frames until we find a upwards or | |
4454 * downwards neighbor. | |
4455 */ | |
4456 fr = foundfr; | |
4457 for (;;) | |
4458 { | |
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
|
4459 if (fr == tp->tp_topframe) |
7 | 4460 goto end; |
4461 if (up) | |
4462 nfr = fr->fr_prev; | |
4463 else | |
4464 nfr = fr->fr_next; | |
4465 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL) | |
4466 break; | |
4467 fr = fr->fr_parent; | |
4468 } | |
4469 | |
4470 /* | |
4471 * Now go downwards to find the bottom or top frame in it. | |
4472 */ | |
4473 for (;;) | |
4474 { | |
4475 if (nfr->fr_layout == FR_LEAF) | |
4476 { | |
4477 foundfr = nfr; | |
4478 break; | |
4479 } | |
4480 fr = nfr->fr_child; | |
4481 if (nfr->fr_layout == FR_ROW) | |
4482 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4483 // Find the frame at the cursor row. |
7 | 4484 while (fr->fr_next != NULL |
4485 && 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
|
4486 <= wp->w_wincol + wp->w_wcol) |
7 | 4487 fr = fr->fr_next; |
4488 } | |
4489 if (nfr->fr_layout == FR_COL && up) | |
4490 while (fr->fr_next != NULL) | |
4491 fr = fr->fr_next; | |
4492 nfr = fr; | |
4493 } | |
4494 } | |
4495 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
|
4496 return foundfr != NULL ? foundfr->fr_win : NULL; |
7 | 4497 } |
4498 | |
4499 /* | |
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
|
4500 * Move to window above or below "count" times. |
7 | 4501 */ |
4502 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
|
4503 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
|
4504 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
|
4505 long count) |
7 | 4506 { |
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
|
4507 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
|
4508 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4509 #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
|
4510 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
|
4511 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4512 #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
|
4513 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
|
4514 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
|
4515 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
|
4516 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4517 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4518 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4519 * 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
|
4520 * 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
|
4521 * 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
|
4522 * 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
|
4523 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4524 win_T * |
16354
b3bc3ba07bef
patch 8.1.1182: some function prototypes are outdated
Bram Moolenaar <Bram@vim.org>
parents:
16271
diff
changeset
|
4525 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
|
4526 { |
7 | 4527 frame_T *fr; |
4528 frame_T *nfr; | |
4529 frame_T *foundfr; | |
4530 | |
19291
1d6bc6b31c2e
patch 8.2.0204: crash when using winnr('j') in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19275
diff
changeset
|
4531 #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
|
4532 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
|
4533 // 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
|
4534 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
|
4535 #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
|
4536 foundfr = wp->w_frame; |
7 | 4537 while (count--) |
4538 { | |
4539 /* | |
4540 * First go upwards in the tree of frames until we find a left or | |
4541 * right neighbor. | |
4542 */ | |
4543 fr = foundfr; | |
4544 for (;;) | |
4545 { | |
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
|
4546 if (fr == tp->tp_topframe) |
7 | 4547 goto end; |
4548 if (left) | |
4549 nfr = fr->fr_prev; | |
4550 else | |
4551 nfr = fr->fr_next; | |
4552 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL) | |
4553 break; | |
4554 fr = fr->fr_parent; | |
4555 } | |
4556 | |
4557 /* | |
4558 * Now go downwards to find the leftmost or rightmost frame in it. | |
4559 */ | |
4560 for (;;) | |
4561 { | |
4562 if (nfr->fr_layout == FR_LEAF) | |
4563 { | |
4564 foundfr = nfr; | |
4565 break; | |
4566 } | |
4567 fr = nfr->fr_child; | |
4568 if (nfr->fr_layout == FR_COL) | |
4569 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4570 // Find the frame at the cursor row. |
7 | 4571 while (fr->fr_next != NULL |
4572 && 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
|
4573 <= wp->w_winrow + wp->w_wrow) |
7 | 4574 fr = fr->fr_next; |
4575 } | |
4576 if (nfr->fr_layout == FR_ROW && left) | |
4577 while (fr->fr_next != NULL) | |
4578 fr = fr->fr_next; | |
4579 nfr = fr; | |
4580 } | |
4581 } | |
4582 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
|
4583 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
|
4584 } |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4585 |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4586 /* |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4587 * 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
|
4588 */ |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4589 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
|
4590 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
|
4591 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
|
4592 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
|
4593 { |
243cdc183ec9
patch 8.1.1140: not easy to find out what neighbors a window has
Bram Moolenaar <Bram@vim.org>
parents:
16166
diff
changeset
|
4594 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
|
4595 |
19265
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4596 #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
|
4597 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
|
4598 return; |
ce8c47ed54e5
patch 8.2.0191: cannot put a terminal in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
19166
diff
changeset
|
4599 #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
|
4600 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
|
4601 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
|
4602 win_goto(win); |
7 | 4603 } |
4604 | |
4605 /* | |
4606 * Make window "wp" the current window. | |
4607 */ | |
4608 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4609 win_enter(win_T *wp, int undo_sync) |
7 | 4610 { |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4611 win_enter_ext(wp, undo_sync, FALSE, FALSE, TRUE, TRUE); |
7 | 4612 } |
4613 | |
4614 /* | |
4615 * Make window wp the current window. | |
4616 * Can be called with "curwin_invalid" TRUE, which means that curwin has just | |
4617 * been closed and isn't valid. | |
4618 */ | |
4619 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4620 win_enter_ext( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4621 win_T *wp, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4622 int undo_sync, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4623 int curwin_invalid, |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4624 int trigger_new_autocmds, |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4625 int trigger_enter_autocmds, |
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4626 int trigger_leave_autocmds) |
7 | 4627 { |
4628 int other_buffer = FALSE; | |
4629 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4630 if (wp == curwin && !curwin_invalid) // nothing to do |
7 | 4631 return; |
4632 | |
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
|
4633 #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
|
4634 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
|
4635 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
|
4636 #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
|
4637 |
4354 | 4638 if (!curwin_invalid && trigger_leave_autocmds) |
7 | 4639 { |
4640 /* | |
4641 * Be careful: If autocommands delete the window, return now. | |
4642 */ | |
4643 if (wp->w_buffer != curbuf) | |
4644 { | |
4645 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
4646 other_buffer = TRUE; | |
4647 if (!win_valid(wp)) | |
4648 return; | |
4649 } | |
4650 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf); | |
4651 if (!win_valid(wp)) | |
4652 return; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4653 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4654 // autocmds may abort script processing |
7 | 4655 if (aborting()) |
4656 return; | |
4657 #endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4658 } |
7 | 4659 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4660 // sync undo before leaving the current buffer |
7 | 4661 if (undo_sync && curbuf != wp->w_buffer) |
825 | 4662 u_sync(FALSE); |
5977 | 4663 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4664 // 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
|
4665 // cursor was moved. |
5977 | 4666 update_topline(); |
4667 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4668 // may have to copy the buffer options when 'cpo' contains 'S' |
7 | 4669 if (wp->w_buffer != curbuf) |
4670 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP); | |
4671 if (!curwin_invalid) | |
4672 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4673 prevwin = curwin; // remember for CTRL-W p |
7 | 4674 curwin->w_redr_status = TRUE; |
4675 } | |
4676 curwin = wp; | |
4677 curbuf = wp->w_buffer; | |
4678 check_cursor(); | |
4679 if (!virtual_active()) | |
4680 curwin->w_cursor.coladd = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4681 changed_line_abv_curs(); // assume cursor position needs updating |
7 | 4682 |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4683 if (curwin->w_localdir != NULL || curtab->tp_localdir != NULL) |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4684 { |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4685 char_u *dirname; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4686 |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4687 // Window or tab has a local directory: Save current directory as |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4688 // global directory (unless that was done already) and change to the |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4689 // local directory. |
7 | 4690 if (globaldir == NULL) |
4691 { | |
4692 char_u cwd[MAXPATHL]; | |
4693 | |
4694 if (mch_dirname(cwd, MAXPATHL) == OK) | |
4695 globaldir = vim_strsave(cwd); | |
4696 } | |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4697 if (curwin->w_localdir != NULL) |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4698 dirname = curwin->w_localdir; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4699 else |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4700 dirname = curtab->tp_localdir; |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4701 |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16405
diff
changeset
|
4702 if (mch_chdir((char *)dirname) == 0) |
1757 | 4703 shorten_fnames(TRUE); |
7 | 4704 } |
4705 else if (globaldir != NULL) | |
4706 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4707 // Window doesn't have a local directory and we are not in the global |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4708 // directory: Change to the global directory. |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14587
diff
changeset
|
4709 vim_ignored = mch_chdir((char *)globaldir); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
4710 VIM_CLEAR(globaldir); |
7 | 4711 shorten_fnames(TRUE); |
4712 } | |
4713 | |
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
|
4714 #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
|
4715 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
|
4716 #endif |
18283
0cb608fc9c60
patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents:
18255
diff
changeset
|
4717 // Careful: autocommands may close the window and make "wp" invalid |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4718 if (trigger_new_autocmds) |
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
4719 apply_autocmds(EVENT_WINNEW, NULL, NULL, FALSE, curbuf); |
4354 | 4720 if (trigger_enter_autocmds) |
4721 { | |
4722 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); | |
4723 if (other_buffer) | |
4724 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
4725 } | |
7 | 4726 |
4727 #ifdef FEAT_TITLE | |
4728 maketitle(); | |
4729 #endif | |
4730 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
|
4731 #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
|
4732 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
|
4733 // 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
|
4734 redraw_mode = TRUE; |
18255
3f51e026de28
patch 8.1.2122: cannot build without terminal feature
Bram Moolenaar <Bram@vim.org>
parents:
18253
diff
changeset
|
4735 #endif |
672 | 4736 redraw_tabline = TRUE; |
7 | 4737 if (restart_edit) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4738 redraw_later(VALID); // causes status line redraw |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4739 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4740 // 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
|
4741 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
|
4742 #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
|
4743 && !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
|
4744 #endif |
dfd87ef822aa
patch 8.1.1734: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
4745 ) |
7 | 4746 win_setheight((int)p_wh); |
4747 else if (curwin->w_height == 0) | |
4748 win_setheight(1); | |
4749 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4750 // set window width to desired minimal value |
779 | 4751 if (curwin->w_width < p_wiw && !curwin->w_p_wfw) |
7 | 4752 win_setwidth((int)p_wiw); |
4753 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
4754 setmouse(); // in case jumped to/from help buffer |
7 | 4755 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4756 // 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
|
4757 DO_AUTOCHDIR; |
7 | 4758 } |
4759 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
4760 |
7 | 4761 /* |
825 | 4762 * Jump to the first open window that contains buffer "buf", if one exists. |
4763 * Returns a pointer to the window found, otherwise NULL. | |
7 | 4764 */ |
4765 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4766 buf_jump_open_win(buf_T *buf) |
7 | 4767 { |
6307 | 4768 win_T *wp = NULL; |
4769 | |
4770 if (curwin->w_buffer == buf) | |
4771 wp = curwin; | |
4772 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4773 FOR_ALL_WINDOWS(wp) |
6307 | 4774 if (wp->w_buffer == buf) |
4775 break; | |
7 | 4776 if (wp != NULL) |
4777 win_enter(wp, FALSE); | |
4778 return wp; | |
4779 } | |
825 | 4780 |
4781 /* | |
4782 * Jump to the first open window in any tab page that contains buffer "buf", | |
4783 * if one exists. | |
4784 * Returns a pointer to the window found, otherwise NULL. | |
4785 */ | |
4786 win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4787 buf_jump_open_tab(buf_T *buf) |
825 | 4788 { |
6307 | 4789 win_T *wp = buf_jump_open_win(buf); |
825 | 4790 tabpage_T *tp; |
4791 | |
4792 if (wp != NULL) | |
4793 return wp; | |
4794 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4795 FOR_ALL_TABPAGES(tp) |
825 | 4796 if (tp != curtab) |
4797 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19291
diff
changeset
|
4798 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
825 | 4799 if (wp->w_buffer == buf) |
4800 break; | |
4801 if (wp != NULL) | |
4802 { | |
4803 goto_tabpage_win(tp, wp); | |
4804 if (curwin != wp) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4805 wp = NULL; // something went wrong |
825 | 4806 break; |
4807 } | |
4808 } | |
4809 return wp; | |
4810 } | |
7 | 4811 |
9223
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
4812 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
|
4813 |
7 | 4814 /* |
1906 | 4815 * Allocate a window structure and link it in the window list when "hidden" is |
4816 * FALSE. | |
7 | 4817 */ |
4818 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4819 win_alloc(win_T *after UNUSED, int hidden UNUSED) |
7 | 4820 { |
3263 | 4821 win_T *new_wp; |
7 | 4822 |
4823 /* | |
4824 * allocate window structure and linesizes arrays | |
4825 */ | |
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
|
4826 new_wp = ALLOC_CLEAR_ONE(win_T); |
4287 | 4827 if (new_wp == NULL) |
4828 return NULL; | |
4829 | |
4830 if (win_alloc_lines(new_wp) == FAIL) | |
3263 | 4831 { |
4832 vim_free(new_wp); | |
4287 | 4833 return NULL; |
4834 } | |
4835 | |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
4836 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
|
4837 |
4287 | 4838 #ifdef FEAT_EVAL |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4839 // init w: variables |
4287 | 4840 new_wp->w_vars = dict_alloc(); |
4841 if (new_wp->w_vars == NULL) | |
4842 { | |
4843 win_free_lsize(new_wp); | |
4844 vim_free(new_wp); | |
4845 return NULL; | |
4846 } | |
4847 init_var_dict(new_wp->w_vars, &new_wp->w_winvar, VAR_SCOPE); | |
4848 #endif | |
4849 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4850 // 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
|
4851 // 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
|
4852 // event. |
4287 | 4853 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
4854 |
4287 | 4855 /* |
4856 * link the window in the window list | |
4857 */ | |
4858 if (!hidden) | |
4859 win_append(after, new_wp); | |
4860 new_wp->w_wincol = 0; | |
4861 new_wp->w_width = Columns; | |
4862 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4863 // position the display and the cursor at the top of the file. |
4287 | 4864 new_wp->w_topline = 1; |
7 | 4865 #ifdef FEAT_DIFF |
4287 | 4866 new_wp->w_topfill = 0; |
4867 #endif | |
4868 new_wp->w_botline = 2; | |
4869 new_wp->w_cursor.lnum = 1; | |
4870 new_wp->w_scbind_pos = 1; | |
4871 | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4872 // 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
|
4873 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
|
4874 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
|
4875 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4876 // We won't calculate w_fraction until resizing the window |
4287 | 4877 new_wp->w_fraction = 0; |
4878 new_wp->w_prev_fraction_row = -1; | |
7 | 4879 |
4880 #ifdef FEAT_GUI | |
4287 | 4881 if (gui.in_use) |
4882 { | |
4883 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT], | |
4884 SBAR_LEFT, new_wp); | |
4885 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT], | |
4886 SBAR_RIGHT, new_wp); | |
4887 } | |
7 | 4888 #endif |
4889 #ifdef FEAT_FOLDING | |
4287 | 4890 foldInitWin(new_wp); |
7 | 4891 #endif |
4287 | 4892 unblock_autocmds(); |
1326 | 4893 #ifdef FEAT_SEARCH_EXTRA |
4287 | 4894 new_wp->w_match_head = NULL; |
4895 new_wp->w_next_match_id = 4; | |
4896 #endif | |
3263 | 4897 return new_wp; |
7 | 4898 } |
4899 | |
4900 /* | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4901 * Remove window 'wp' from the window list and free the structure. |
7 | 4902 */ |
4903 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4904 win_free( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4905 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4906 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 4907 { |
4908 int i; | |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4909 buf_T *buf; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4910 wininfo_T *wip; |
7 | 4911 |
1918 | 4912 #ifdef FEAT_FOLDING |
4913 clearFolding(wp); | |
4914 #endif | |
4915 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4916 // reduce the reference count to the argument list. |
1918 | 4917 alist_unlink(wp->w_alist); |
4918 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4919 // 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
|
4920 // gui_mch_destroy_scrollbar() may trigger a FocusGained event. |
1410 | 4921 block_autocmds(); |
1114 | 4922 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4923 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4924 lua_window_free(wp); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4925 #endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2316
diff
changeset
|
4926 |
14 | 4927 #ifdef FEAT_MZSCHEME |
4928 mzscheme_window_free(wp); | |
4929 #endif | |
4930 | |
7 | 4931 #ifdef FEAT_PERL |
4932 perl_win_free(wp); | |
4933 #endif | |
4934 | |
4935 #ifdef FEAT_PYTHON | |
4936 python_window_free(wp); | |
4937 #endif | |
4938 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4939 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4940 python3_window_free(wp); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4941 #endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
4942 |
7 | 4943 #ifdef FEAT_TCL |
4944 tcl_window_free(wp); | |
4945 #endif | |
4946 | |
4947 #ifdef FEAT_RUBY | |
4948 ruby_window_free(wp); | |
4949 #endif | |
4950 | |
4951 clear_winopt(&wp->w_onebuf_opt); | |
4952 clear_winopt(&wp->w_allbuf_opt); | |
4953 | |
4954 #ifdef FEAT_EVAL | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4955 vars_clear(&wp->w_vars->dv_hashtab); // free all w: variables |
4287 | 4956 hash_init(&wp->w_vars->dv_hashtab); |
4957 unref_var_dict(wp->w_vars); | |
7 | 4958 #endif |
4959 | |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4960 { |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4961 tabpage_T *ttp; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4962 |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4963 if (prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4964 prevwin = NULL; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
4965 FOR_ALL_TABPAGES(ttp) |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4966 if (ttp->tp_prevwin == wp) |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4967 ttp->tp_prevwin = NULL; |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
4968 } |
7 | 4969 win_free_lsize(wp); |
4970 | |
4971 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
|
4972 { |
7 | 4973 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
|
4974 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
|
4975 } |
7 | 4976 vim_free(wp->w_localdir); |
1326 | 4977 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4978 // 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
|
4979 // 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
|
4980 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
|
4981 FOR_ALL_BUF_WININFO(buf, wip) |
5237
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4982 if (wip->wi_win == wp) |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4983 wip->wi_win = NULL; |
647596ab1ae2
updated for version 7.4a.044
Bram Moolenaar <bram@vim.org>
parents:
5233
diff
changeset
|
4984 |
7 | 4985 #ifdef FEAT_SEARCH_EXTRA |
1326 | 4986 clear_matches(wp); |
4987 #endif | |
4988 | |
7 | 4989 #ifdef FEAT_JUMPLIST |
4990 free_jumplist(wp); | |
4991 #endif | |
4992 | |
643 | 4993 #ifdef FEAT_QUICKFIX |
4994 qf_free_all(wp); | |
4995 #endif | |
4996 | |
7 | 4997 #ifdef FEAT_GUI |
4998 if (gui.in_use) | |
4999 { | |
5000 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]); | |
5001 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]); | |
5002 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5003 #endif // FEAT_GUI |
7 | 5004 |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5005 #ifdef FEAT_MENU |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5006 remove_winbar(wp); |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5007 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5008 #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
|
5009 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
|
5010 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
|
5011 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
|
5012 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
|
5013 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
|
5014 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
|
5015 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
|
5016 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
|
5017 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
|
5018 #endif |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5019 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5020 #ifdef FEAT_SYN_HL |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
2306
diff
changeset
|
5021 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
|
5022 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
5023 |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5024 if (win_valid_any_tab(wp)) |
1918 | 5025 win_remove(wp, tp); |
5958 | 5026 if (autocmd_busy) |
5027 { | |
5028 wp->w_next = au_pending_free_win; | |
5029 au_pending_free_win = wp; | |
5030 } | |
5031 else | |
5032 vim_free(wp); | |
1114 | 5033 |
1410 | 5034 unblock_autocmds(); |
7 | 5035 } |
5036 | |
5037 /* | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5038 * 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
|
5039 * popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5040 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
5041 static int |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5042 win_unlisted(win_T *wp) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5043 { |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5044 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
|
5045 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5046 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
5047 #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
|
5048 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5049 * 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
|
5050 * 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
|
5051 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5052 void |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5053 win_free_popup(win_T *win) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5054 { |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5055 if (bt_popup(win->w_buffer)) |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
5056 win_close_buffer(win, DOBUF_WIPE_REUSE, FALSE); |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17202
diff
changeset
|
5057 else |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18816
diff
changeset
|
5058 close_buffer(win, win->w_buffer, 0, FALSE, FALSE); |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5059 # 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
|
5060 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
|
5061 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
|
5062 # endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5063 vim_free(win->w_frame); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5064 win_free(win, NULL); |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5065 } |
16802
f5487021fdad
patch 8.1.1403: cannot build without the timer feature
Bram Moolenaar <Bram@vim.org>
parents:
16800
diff
changeset
|
5066 #endif |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5067 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5068 /* |
7 | 5069 * Append window "wp" in the window list after window "after". |
5070 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17670
diff
changeset
|
5071 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5072 win_append(win_T *after, win_T *wp) |
7 | 5073 { |
5074 win_T *before; | |
5075 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5076 if (after == NULL) // after NULL is in front of the first |
7 | 5077 before = firstwin; |
5078 else | |
5079 before = after->w_next; | |
5080 | |
5081 wp->w_next = before; | |
5082 wp->w_prev = after; | |
5083 if (after == NULL) | |
5084 firstwin = wp; | |
5085 else | |
5086 after->w_next = wp; | |
5087 if (before == NULL) | |
5088 lastwin = wp; | |
5089 else | |
5090 before->w_prev = wp; | |
5091 } | |
5092 | |
5093 /* | |
5094 * Remove a window from the window list. | |
5095 */ | |
1906 | 5096 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5097 win_remove( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5098 win_T *wp, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5099 tabpage_T *tp) // tab page "win" is in, NULL for current |
7 | 5100 { |
5101 if (wp->w_prev != NULL) | |
5102 wp->w_prev->w_next = wp->w_next; | |
671 | 5103 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
|
5104 firstwin = curtab->tp_firstwin = wp->w_next; |
7 | 5105 else |
671 | 5106 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
|
5107 |
7 | 5108 if (wp->w_next != NULL) |
5109 wp->w_next->w_prev = wp->w_prev; | |
671 | 5110 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
|
5111 lastwin = curtab->tp_lastwin = wp->w_prev; |
7 | 5112 else |
671 | 5113 tp->tp_lastwin = wp->w_prev; |
7 | 5114 } |
5115 | |
5116 /* | |
5117 * Append frame "frp" in a frame list after frame "after". | |
5118 */ | |
5119 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5120 frame_append(frame_T *after, frame_T *frp) |
7 | 5121 { |
5122 frp->fr_next = after->fr_next; | |
5123 after->fr_next = frp; | |
5124 if (frp->fr_next != NULL) | |
5125 frp->fr_next->fr_prev = frp; | |
5126 frp->fr_prev = after; | |
5127 } | |
5128 | |
5129 /* | |
5130 * Insert frame "frp" in a frame list before frame "before". | |
5131 */ | |
5132 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5133 frame_insert(frame_T *before, frame_T *frp) |
7 | 5134 { |
5135 frp->fr_next = before; | |
5136 frp->fr_prev = before->fr_prev; | |
5137 before->fr_prev = frp; | |
5138 if (frp->fr_prev != NULL) | |
5139 frp->fr_prev->fr_next = frp; | |
5140 else | |
5141 frp->fr_parent->fr_child = frp; | |
5142 } | |
5143 | |
5144 /* | |
5145 * Remove a frame from a frame list. | |
5146 */ | |
5147 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5148 frame_remove(frame_T *frp) |
7 | 5149 { |
5150 if (frp->fr_prev != NULL) | |
5151 frp->fr_prev->fr_next = frp->fr_next; | |
5152 else | |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
5153 { |
7 | 5154 frp->fr_parent->fr_child = frp->fr_next; |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5155 // special case: topframe->fr_child == frp |
13144
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
5156 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
|
5157 topframe->fr_child = frp->fr_next; |
20fb8c711050
patch 8.0.1446: acessing freed memory after window command in auto command
Christian Brabandt <cb@256bit.org>
parents:
13103
diff
changeset
|
5158 } |
7 | 5159 if (frp->fr_next != NULL) |
5160 frp->fr_next->fr_prev = frp->fr_prev; | |
5161 } | |
5162 | |
5163 /* | |
5164 * Allocate w_lines[] for window "wp". | |
5165 * Return FAIL for failure, OK for success. | |
5166 */ | |
5167 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5168 win_alloc_lines(win_T *wp) |
7 | 5169 { |
5170 wp->w_lines_valid = 0; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16802
diff
changeset
|
5171 wp->w_lines = ALLOC_CLEAR_MULT(wline_T, Rows ); |
7 | 5172 if (wp->w_lines == NULL) |
5173 return FAIL; | |
5174 return OK; | |
5175 } | |
5176 | |
5177 /* | |
5178 * free lsize arrays for a window | |
5179 */ | |
5180 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5181 win_free_lsize(win_T *wp) |
7 | 5182 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5183 // TODO: why would wp be NULL here? |
5952 | 5184 if (wp != NULL) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13144
diff
changeset
|
5185 VIM_CLEAR(wp->w_lines); |
7 | 5186 } |
5187 | |
5188 /* | |
5189 * Called from win_new_shellsize() after Rows changed. | |
671 | 5190 * This only does the current tab page, others must be done when made active. |
7 | 5191 */ |
5192 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5193 shell_new_rows(void) |
7 | 5194 { |
667 | 5195 int h = (int)ROWS_AVAIL; |
7 | 5196 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5197 if (firstwin == NULL) // not initialized yet |
7 | 5198 return; |
5199 if (h < frame_minheight(topframe, NULL)) | |
5200 h = frame_minheight(topframe, NULL); | |
779 | 5201 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5202 // First try setting the heights of windows with 'winfixheight'. If |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5203 // that doesn't result in the right height, forget about that option. |
7 | 5204 frame_new_height(topframe, h, FALSE, TRUE); |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5205 if (!frame_check_height(topframe, h)) |
7 | 5206 frame_new_height(topframe, h, FALSE, FALSE); |
5207 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5208 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5209 compute_cmdrow(); |
824 | 5210 curtab->tp_ch_used = p_ch; |
170 | 5211 |
7 | 5212 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5213 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5214 if (p_ea) |
5215 win_equal(curwin, FALSE, 'v'); | |
5216 #endif | |
5217 } | |
5218 | |
5219 /* | |
5220 * Called from win_new_shellsize() after Columns changed. | |
5221 */ | |
5222 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5223 shell_new_columns(void) |
7 | 5224 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5225 if (firstwin == NULL) // not initialized yet |
7 | 5226 return; |
779 | 5227 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5228 // First try setting the widths of windows with 'winfixwidth'. If that |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5229 // doesn't result in the right width, forget about that option. |
779 | 5230 frame_new_width(topframe, (int)Columns, FALSE, TRUE); |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5231 if (!frame_check_width(topframe, Columns)) |
779 | 5232 frame_new_width(topframe, (int)Columns, FALSE, FALSE); |
5233 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5234 (void)win_comp_pos(); // recompute w_winrow and w_wincol |
7 | 5235 #if 0 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5236 // Disabled: don't want making the screen smaller make a window larger. |
7 | 5237 if (p_ea) |
5238 win_equal(curwin, FALSE, 'h'); | |
5239 #endif | |
5240 } | |
5241 | |
5242 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
5243 /* | |
5244 * Save the size of all windows in "gap". | |
5245 */ | |
5246 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5247 win_size_save(garray_T *gap) |
7 | 5248 |
5249 { | |
5250 win_T *wp; | |
5251 | |
5252 ga_init2(gap, (int)sizeof(int), 1); | |
18467
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5253 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
|
5254 { |
99fc29219b3e
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
5255 // 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
|
5256 ((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
|
5257 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5258 FOR_ALL_WINDOWS(wp) |
7 | 5259 { |
5260 ((int *)gap->ga_data)[gap->ga_len++] = | |
5261 wp->w_width + wp->w_vsep_width; | |
5262 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height; | |
5263 } | |
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
|
5264 } |
7 | 5265 } |
5266 | |
5267 /* | |
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
|
5268 * 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
|
5269 * and 'lines' didn't change. |
7 | 5270 * Does not free the growarray. |
5271 */ | |
5272 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5273 win_size_restore(garray_T *gap) |
7 | 5274 { |
5275 win_T *wp; | |
6058 | 5276 int i, j; |
7 | 5277 |
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
|
5278 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
|
5279 && ((int *)gap->ga_data)[0] == Rows) |
7 | 5280 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5281 // 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
|
5282 // difficult to get right. The easy way out is to do it twice. |
6058 | 5283 for (j = 0; j < 2; ++j) |
7 | 5284 { |
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
|
5285 i = 1; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
5286 FOR_ALL_WINDOWS(wp) |
6058 | 5287 { |
5288 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]); | |
5289 win_setheight_win(((int *)gap->ga_data)[i++], wp); | |
5290 } | |
7 | 5291 } |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5292 // recompute the window positions |
7 | 5293 (void)win_comp_pos(); |
5294 } | |
5295 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5296 #endif // FEAT_CMDWIN |
7 | 5297 |
5298 /* | |
5299 * Update the position for all windows, using the width and height of the | |
5300 * frames. | |
5301 * Returns the row just after the last window. | |
5302 */ | |
668 | 5303 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5304 win_comp_pos(void) |
7 | 5305 { |
685 | 5306 int row = tabline_height(); |
7 | 5307 int col = 0; |
5308 | |
5309 frame_comp_pos(topframe, &row, &col); | |
5310 return row; | |
5311 } | |
5312 | |
5313 /* | |
5314 * Update the position of the windows in frame "topfrp", using the width and | |
5315 * height of the frames. | |
5316 * "*row" and "*col" are the top-left position of the frame. They are updated | |
5317 * to the bottom-right position plus one. | |
5318 */ | |
5319 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5320 frame_comp_pos(frame_T *topfrp, int *row, int *col) |
7 | 5321 { |
5322 win_T *wp; | |
5323 frame_T *frp; | |
5324 int startcol; | |
5325 int startrow; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5326 int h; |
7 | 5327 |
5328 wp = topfrp->fr_win; | |
5329 if (wp != NULL) | |
5330 { | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
5331 if (wp->w_winrow != *row || wp->w_wincol != *col) |
7 | 5332 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5333 // position changed, redraw |
7 | 5334 wp->w_winrow = *row; |
5335 wp->w_wincol = *col; | |
5336 redraw_win_later(wp, NOT_VALID); | |
5337 wp->w_redr_status = TRUE; | |
5338 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5339 // 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
|
5340 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
|
5341 *row += h > topfrp->fr_height ? topfrp->fr_height : h; |
7 | 5342 *col += wp->w_width + wp->w_vsep_width; |
5343 } | |
5344 else | |
5345 { | |
5346 startrow = *row; | |
5347 startcol = *col; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5348 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
7 | 5349 { |
5350 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
|
5351 *row = startrow; // all frames are at the same row |
7 | 5352 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5353 *col = startcol; // all frames are at the same col |
7 | 5354 frame_comp_pos(frp, row, col); |
5355 } | |
5356 } | |
5357 } | |
5358 | |
5359 /* | |
5360 * Set current window height and take care of repositioning other windows to | |
5361 * fit around it. | |
5362 */ | |
5363 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5364 win_setheight(int height) |
7 | 5365 { |
5366 win_setheight_win(height, curwin); | |
5367 } | |
5368 | |
5369 /* | |
5370 * Set the window height of window "win" and take care of repositioning other | |
5371 * windows to fit around it. | |
5372 */ | |
5373 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5374 win_setheight_win(int height, win_T *win) |
7 | 5375 { |
5376 int row; | |
5377 | |
5378 if (win == curwin) | |
5379 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5380 // 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
|
5381 // 'winminheight' is zero. |
7 | 5382 if (height < p_wmh) |
5383 height = p_wmh; | |
5384 if (height == 0) | |
5385 height = 1; | |
12998
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5386 height += WINBAR_HEIGHT(curwin); |
7 | 5387 } |
5388 | |
5389 frame_setheight(win->w_frame, height + win->w_status_height); | |
5390 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5391 // recompute the window positions |
7 | 5392 row = win_comp_pos(); |
5393 | |
5394 /* | |
5395 * If there is extra space created between the last window and the command | |
5396 * line, clear it. | |
5397 */ | |
5398 if (full_screen && msg_scrolled == 0 && row < cmdline_row) | |
5399 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5400 cmdline_row = row; | |
5401 msg_row = row; | |
5402 msg_col = 0; | |
5403 | |
5404 redraw_all_later(NOT_VALID); | |
5405 } | |
5406 | |
5407 /* | |
5408 * Set the height of a frame to "height" and take care that all frames and | |
5409 * windows inside it are resized. Also resize frames on the left and right if | |
5410 * the are in the same FR_ROW frame. | |
5411 * | |
5412 * Strategy: | |
5413 * If the frame is part of a FR_COL frame, try fitting the frame in that | |
5414 * frame. If that doesn't work (the FR_COL frame is too small), recursively | |
5415 * go to containing frames to resize them and make room. | |
5416 * If the frame is part of a FR_ROW frame, all frames must be resized as well. | |
5417 * Check for the minimal height of the FR_ROW frame. | |
5418 * At the top level we can also use change the command line height. | |
5419 */ | |
5420 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5421 frame_setheight(frame_T *curfrp, int height) |
7 | 5422 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5423 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
|
5424 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
|
5425 int room_cmdline; // lines available from cmdline |
7 | 5426 int run; |
5427 frame_T *frp; | |
5428 int h; | |
5429 int room_reserved; | |
5430 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5431 // If the height already is the desired value, nothing to do. |
7 | 5432 if (curfrp->fr_height == height) |
5433 return; | |
5434 | |
5435 if (curfrp->fr_parent == NULL) | |
5436 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5437 // topframe: can only change the command line |
667 | 5438 if (height > ROWS_AVAIL) |
5439 height = ROWS_AVAIL; | |
7 | 5440 if (height > 0) |
5441 frame_new_height(curfrp, height, FALSE, FALSE); | |
5442 } | |
5443 else if (curfrp->fr_parent->fr_layout == FR_ROW) | |
5444 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5445 // 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
|
5446 // one. First check for the minimal height of these. |
7 | 5447 h = frame_minheight(curfrp->fr_parent, NULL); |
5448 if (height < h) | |
5449 height = h; | |
5450 frame_setheight(curfrp->fr_parent, height); | |
5451 } | |
5452 else | |
5453 { | |
5454 /* | |
5455 * Column of frames: try to change only frames in this column. | |
5456 */ | |
5457 /* | |
5458 * Do this twice: | |
5459 * 1: compute room available, if it's not enough try resizing the | |
5460 * containing frame. | |
5461 * 2: compute the room available and adjust the height to it. | |
5462 * Try not to reduce the height of a window with 'winfixheight' set. | |
5463 */ | |
5464 for (run = 1; run <= 2; ++run) | |
5465 { | |
5466 room = 0; | |
5467 room_reserved = 0; | |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5468 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5469 { |
5470 if (frp != curfrp | |
5471 && frp->fr_win != NULL | |
5472 && frp->fr_win->w_p_wfh) | |
5473 room_reserved += frp->fr_height; | |
5474 room += frp->fr_height; | |
5475 if (frp != curfrp) | |
5476 room -= frame_minheight(frp, NULL); | |
5477 } | |
5478 if (curfrp->fr_width != Columns) | |
5479 room_cmdline = 0; | |
5480 else | |
5481 { | |
5482 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
|
5483 + VISIBLE_HEIGHT(lastwin) |
dd734ee3e2fe
patch 8.0.1375: window size wrong after maximizing with WinBar
Christian Brabandt <cb@256bit.org>
parents:
12916
diff
changeset
|
5484 + lastwin->w_status_height); |
7 | 5485 if (room_cmdline < 0) |
5486 room_cmdline = 0; | |
5487 } | |
5488 | |
5489 if (height <= room + room_cmdline) | |
5490 break; | |
5491 if (run == 2 || curfrp->fr_width == Columns) | |
5492 { | |
5493 if (height > room + room_cmdline) | |
5494 height = room + room_cmdline; | |
5495 break; | |
5496 } | |
5497 frame_setheight(curfrp->fr_parent, height | |
5498 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1); | |
5499 } | |
5500 | |
5501 /* | |
5502 * Compute the number of lines we will take from others frames (can be | |
5503 * negative!). | |
5504 */ | |
5505 take = height - curfrp->fr_height; | |
5506 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5507 // 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
|
5508 // with 'winfixheight' set. |
7 | 5509 if (height > room + room_cmdline - room_reserved) |
5510 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
|
5511 // 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
|
5512 // window smaller, need to make the other window taller. |
7 | 5513 if (take < 0 && room - curfrp->fr_height < room_reserved) |
5514 room_reserved = 0; | |
5515 | |
5516 if (take > 0 && room_cmdline > 0) | |
5517 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5518 // use lines from cmdline first |
7 | 5519 if (take < room_cmdline) |
5520 room_cmdline = take; | |
5521 take -= room_cmdline; | |
5522 topframe->fr_height += room_cmdline; | |
5523 } | |
5524 | |
5525 /* | |
5526 * set the current frame to the new height | |
5527 */ | |
5528 frame_new_height(curfrp, height, FALSE, FALSE); | |
5529 | |
5530 /* | |
5531 * First take lines from the frames after the current frame. If | |
5532 * that is not enough, takes lines from frames above the current | |
5533 * frame. | |
5534 */ | |
5535 for (run = 0; run < 2; ++run) | |
5536 { | |
5537 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5538 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 5539 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5540 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 5541 while (frp != NULL && take != 0) |
5542 { | |
5543 h = frame_minheight(frp, NULL); | |
5544 if (room_reserved > 0 | |
5545 && frp->fr_win != NULL | |
5546 && frp->fr_win->w_p_wfh) | |
5547 { | |
5548 if (room_reserved >= frp->fr_height) | |
5549 room_reserved -= frp->fr_height; | |
5550 else | |
5551 { | |
5552 if (frp->fr_height - room_reserved > take) | |
5553 room_reserved = frp->fr_height - take; | |
5554 take -= frp->fr_height - room_reserved; | |
5555 frame_new_height(frp, room_reserved, FALSE, FALSE); | |
5556 room_reserved = 0; | |
5557 } | |
5558 } | |
5559 else | |
5560 { | |
5561 if (frp->fr_height - take < h) | |
5562 { | |
5563 take -= frp->fr_height - h; | |
5564 frame_new_height(frp, h, FALSE, FALSE); | |
5565 } | |
5566 else | |
5567 { | |
5568 frame_new_height(frp, frp->fr_height - take, | |
5569 FALSE, FALSE); | |
5570 take = 0; | |
5571 } | |
5572 } | |
5573 if (run == 0) | |
5574 frp = frp->fr_next; | |
5575 else | |
5576 frp = frp->fr_prev; | |
5577 } | |
5578 } | |
5579 } | |
5580 } | |
5581 | |
5582 /* | |
5583 * Set current window width and take care of repositioning other windows to | |
5584 * fit around it. | |
5585 */ | |
5586 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5587 win_setwidth(int width) |
7 | 5588 { |
5589 win_setwidth_win(width, curwin); | |
5590 } | |
5591 | |
5592 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5593 win_setwidth_win(int width, win_T *wp) |
7 | 5594 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5595 // 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
|
5596 // 'winminwidth' is zero. |
7 | 5597 if (wp == curwin) |
5598 { | |
5599 if (width < p_wmw) | |
5600 width = p_wmw; | |
5601 if (width == 0) | |
5602 width = 1; | |
5603 } | |
5604 | |
5605 frame_setwidth(wp->w_frame, width + wp->w_vsep_width); | |
5606 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5607 // recompute the window positions |
7 | 5608 (void)win_comp_pos(); |
5609 | |
5610 redraw_all_later(NOT_VALID); | |
5611 } | |
5612 | |
5613 /* | |
5614 * Set the width of a frame to "width" and take care that all frames and | |
5615 * windows inside it are resized. Also resize frames above and below if the | |
5616 * are in the same FR_ROW frame. | |
5617 * | |
5618 * Strategy is similar to frame_setheight(). | |
5619 */ | |
5620 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5621 frame_setwidth(frame_T *curfrp, int width) |
7 | 5622 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5623 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
|
5624 int take; // number of lines taken from other windows |
7 | 5625 int run; |
5626 frame_T *frp; | |
5627 int w; | |
779 | 5628 int room_reserved; |
7 | 5629 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5630 // If the width already is the desired value, nothing to do. |
7 | 5631 if (curfrp->fr_width == width) |
5632 return; | |
5633 | |
5634 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
|
5635 // topframe: can't change width |
7 | 5636 return; |
5637 | |
5638 if (curfrp->fr_parent->fr_layout == FR_COL) | |
5639 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5640 // 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
|
5641 // this one. First check for the minimal width of these. |
7 | 5642 w = frame_minwidth(curfrp->fr_parent, NULL); |
5643 if (width < w) | |
5644 width = w; | |
5645 frame_setwidth(curfrp->fr_parent, width); | |
5646 } | |
5647 else | |
5648 { | |
5649 /* | |
5650 * Row of frames: try to change only frames in this row. | |
5651 * | |
5652 * Do this twice: | |
5653 * 1: compute room available, if it's not enough try resizing the | |
5654 * containing frame. | |
5655 * 2: compute the room available and adjust the width to it. | |
5656 */ | |
5657 for (run = 1; run <= 2; ++run) | |
5658 { | |
5659 room = 0; | |
779 | 5660 room_reserved = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5661 FOR_ALL_FRAMES(frp, curfrp->fr_parent->fr_child) |
7 | 5662 { |
779 | 5663 if (frp != curfrp |
5664 && frp->fr_win != NULL | |
5665 && frp->fr_win->w_p_wfw) | |
5666 room_reserved += frp->fr_width; | |
7 | 5667 room += frp->fr_width; |
5668 if (frp != curfrp) | |
5669 room -= frame_minwidth(frp, NULL); | |
5670 } | |
5671 | |
5672 if (width <= room) | |
5673 break; | |
667 | 5674 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL) |
7 | 5675 { |
5676 if (width > room) | |
5677 width = room; | |
5678 break; | |
5679 } | |
5680 frame_setwidth(curfrp->fr_parent, width | |
5681 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1); | |
5682 } | |
5683 | |
5684 /* | |
5685 * Compute the number of lines we will take from others frames (can be | |
5686 * negative!). | |
5687 */ | |
5688 take = width - curfrp->fr_width; | |
5689 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5690 // 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
|
5691 // with 'winfixwidth' set. |
779 | 5692 if (width > room - room_reserved) |
5693 room_reserved = room - width; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5694 // 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
|
5695 // window smaller, need to make the other window narrower. |
779 | 5696 if (take < 0 && room - curfrp->fr_width < room_reserved) |
5697 room_reserved = 0; | |
5698 | |
7 | 5699 /* |
5700 * set the current frame to the new width | |
5701 */ | |
779 | 5702 frame_new_width(curfrp, width, FALSE, FALSE); |
7 | 5703 |
5704 /* | |
5705 * First take lines from the frames right of the current frame. If | |
5706 * that is not enough, takes lines from frames left of the current | |
5707 * frame. | |
5708 */ | |
5709 for (run = 0; run < 2; ++run) | |
5710 { | |
5711 if (run == 0) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5712 frp = curfrp->fr_next; // 1st run: start with next window |
7 | 5713 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5714 frp = curfrp->fr_prev; // 2nd run: start with prev window |
7 | 5715 while (frp != NULL && take != 0) |
5716 { | |
5717 w = frame_minwidth(frp, NULL); | |
779 | 5718 if (room_reserved > 0 |
5719 && frp->fr_win != NULL | |
5720 && frp->fr_win->w_p_wfw) | |
7 | 5721 { |
779 | 5722 if (room_reserved >= frp->fr_width) |
5723 room_reserved -= frp->fr_width; | |
5724 else | |
5725 { | |
5726 if (frp->fr_width - room_reserved > take) | |
5727 room_reserved = frp->fr_width - take; | |
5728 take -= frp->fr_width - room_reserved; | |
5729 frame_new_width(frp, room_reserved, FALSE, FALSE); | |
5730 room_reserved = 0; | |
5731 } | |
7 | 5732 } |
5733 else | |
5734 { | |
779 | 5735 if (frp->fr_width - take < w) |
5736 { | |
5737 take -= frp->fr_width - w; | |
5738 frame_new_width(frp, w, FALSE, FALSE); | |
5739 } | |
5740 else | |
5741 { | |
5742 frame_new_width(frp, frp->fr_width - take, | |
5743 FALSE, FALSE); | |
5744 take = 0; | |
5745 } | |
7 | 5746 } |
5747 if (run == 0) | |
5748 frp = frp->fr_next; | |
5749 else | |
5750 frp = frp->fr_prev; | |
5751 } | |
5752 } | |
5753 } | |
5754 } | |
5755 | |
5756 /* | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5757 * Check 'winminheight' for a valid value and reduce it if needed. |
7 | 5758 */ |
5759 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5760 win_setminheight(void) |
7 | 5761 { |
5762 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
|
5763 int needed; |
7 | 5764 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
|
5765 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5766 // loop until there is a 'winminheight' that is possible |
7 | 5767 while (p_wmh > 0) |
5768 { | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5769 room = Rows - p_ch; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5770 needed = frame_minheight(topframe, NULL); |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5771 if (room >= needed) |
7 | 5772 break; |
5773 --p_wmh; | |
5774 if (first) | |
5775 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5776 emsg(_(e_noroom)); |
7 | 5777 first = FALSE; |
5778 } | |
5779 } | |
5780 } | |
5781 | |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5782 /* |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5783 * 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
|
5784 */ |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5785 void |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5786 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
|
5787 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5788 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
|
5789 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
|
5790 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
|
5791 |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5792 // 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
|
5793 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
|
5794 { |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5795 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
|
5796 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
|
5797 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
|
5798 break; |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5799 --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
|
5800 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
|
5801 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5802 emsg(_(e_noroom)); |
14057
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5803 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
|
5804 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5805 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5806 } |
be8fb2fd51fc
patch 8.1.0046: loading a session file fails if 'winheight' is big
Christian Brabandt <cb@256bit.org>
parents:
14049
diff
changeset
|
5807 |
7 | 5808 /* |
5809 * Status line of dragwin is dragged "offset" lines down (negative is up). | |
5810 */ | |
5811 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5812 win_drag_status_line(win_T *dragwin, int offset) |
7 | 5813 { |
5814 frame_T *curfr; | |
5815 frame_T *fr; | |
5816 int room; | |
5817 int row; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5818 int up; // if TRUE, drag status line up, otherwise down |
7 | 5819 int n; |
5820 | |
5821 fr = dragwin->w_frame; | |
5822 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5823 if (fr != topframe) // more than one window |
7 | 5824 { |
5825 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5826 // 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
|
5827 // be. |
7 | 5828 if (fr->fr_layout != FR_COL) |
5829 { | |
5830 curfr = fr; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5831 if (fr != topframe) // only a row of windows, may drag statusline |
7 | 5832 fr = fr->fr_parent; |
5833 } | |
5834 } | |
5835 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5836 // 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
|
5837 // frame instead (go two up to skip a row of frames). |
7 | 5838 while (curfr != topframe && curfr->fr_next == NULL) |
5839 { | |
5840 if (fr != topframe) | |
5841 fr = fr->fr_parent; | |
5842 curfr = fr; | |
5843 if (fr != topframe) | |
5844 fr = fr->fr_parent; | |
5845 } | |
5846 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5847 if (offset < 0) // drag up |
7 | 5848 { |
5849 up = TRUE; | |
5850 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5851 // sum up the room of the current frame and above it |
7 | 5852 if (fr == curfr) |
5853 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5854 // only one window |
7 | 5855 room = fr->fr_height - frame_minheight(fr, NULL); |
5856 } | |
5857 else | |
5858 { | |
5859 room = 0; | |
5860 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5861 { | |
5862 room += fr->fr_height - frame_minheight(fr, NULL); | |
5863 if (fr == curfr) | |
5864 break; | |
5865 } | |
5866 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5867 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
|
5868 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5869 else // drag down |
7 | 5870 { |
5871 up = FALSE; | |
5872 /* | |
5873 * Only dragging the last status line can reduce p_ch. | |
5874 */ | |
5875 room = Rows - cmdline_row; | |
5876 if (curfr->fr_next == NULL) | |
5877 room -= 1; | |
5878 else | |
5879 room -= p_ch; | |
5880 if (room < 0) | |
5881 room = 0; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5882 // 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
|
5883 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 5884 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
|
5885 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
|
5886 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5887 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5888 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
|
5889 offset = room; // Move as far as we can |
7 | 5890 if (offset <= 0) |
5891 return; | |
5892 | |
5893 /* | |
5894 * Grow frame fr by "offset" lines. | |
5895 * Doesn't happen when dragging the last status line up. | |
5896 */ | |
5897 if (fr != NULL) | |
5898 frame_new_height(fr, fr->fr_height + offset, up, FALSE); | |
5899 | |
5900 if (up) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5901 fr = curfr; // current frame gets smaller |
7 | 5902 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5903 fr = curfr->fr_next; // next frame gets smaller |
7 | 5904 |
5905 /* | |
5906 * Now make the other frames smaller. | |
5907 */ | |
5908 while (fr != NULL && offset > 0) | |
5909 { | |
5910 n = frame_minheight(fr, NULL); | |
5911 if (fr->fr_height - offset <= n) | |
5912 { | |
5913 offset -= fr->fr_height - n; | |
5914 frame_new_height(fr, n, !up, FALSE); | |
5915 } | |
5916 else | |
5917 { | |
5918 frame_new_height(fr, fr->fr_height - offset, !up, FALSE); | |
5919 break; | |
5920 } | |
5921 if (up) | |
5922 fr = fr->fr_prev; | |
5923 else | |
5924 fr = fr->fr_next; | |
5925 } | |
5926 row = win_comp_pos(); | |
5927 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0); | |
5928 cmdline_row = row; | |
5929 p_ch = Rows - cmdline_row; | |
5930 if (p_ch < 1) | |
5931 p_ch = 1; | |
824 | 5932 curtab->tp_ch_used = p_ch; |
737 | 5933 redraw_all_later(SOME_VALID); |
7 | 5934 showmode(); |
5935 } | |
5936 | |
5937 /* | |
5938 * Separator line of dragwin is dragged "offset" lines right (negative is left). | |
5939 */ | |
5940 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5941 win_drag_vsep_line(win_T *dragwin, int offset) |
7 | 5942 { |
5943 frame_T *curfr; | |
5944 frame_T *fr; | |
5945 int room; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5946 int left; // if TRUE, drag separator line left, otherwise right |
7 | 5947 int n; |
5948 | |
5949 fr = dragwin->w_frame; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5950 if (fr == topframe) // only one window (cannot happen?) |
7 | 5951 return; |
5952 curfr = fr; | |
5953 fr = fr->fr_parent; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5954 // When the parent frame is not a row of frames, its parent should be. |
7 | 5955 if (fr->fr_layout != FR_ROW) |
5956 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5957 if (fr == topframe) // only a column of windows (cannot happen?) |
7 | 5958 return; |
5959 curfr = fr; | |
5960 fr = fr->fr_parent; | |
5961 } | |
5962 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5963 // 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
|
5964 // frame instead. |
7 | 5965 while (curfr->fr_next == NULL) |
5966 { | |
5967 if (fr == topframe) | |
5968 break; | |
5969 curfr = fr; | |
5970 fr = fr->fr_parent; | |
5971 if (fr != topframe) | |
5972 { | |
5973 curfr = fr; | |
5974 fr = fr->fr_parent; | |
5975 } | |
5976 } | |
5977 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5978 if (offset < 0) // drag left |
7 | 5979 { |
5980 left = TRUE; | |
5981 offset = -offset; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5982 // sum up the room of the current frame and left of it |
7 | 5983 room = 0; |
5984 for (fr = fr->fr_child; ; fr = fr->fr_next) | |
5985 { | |
5986 room += fr->fr_width - frame_minwidth(fr, NULL); | |
5987 if (fr == curfr) | |
5988 break; | |
5989 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5990 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
|
5991 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5992 else // drag right |
7 | 5993 { |
5994 left = FALSE; | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5995 // sum up the room of frames right of the current one |
7 | 5996 room = 0; |
15227
95678f27a704
patch 8.1.0623: iterating through window frames is repeated
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
5997 FOR_ALL_FRAMES(fr, curfr->fr_next) |
7 | 5998 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
|
5999 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
|
6000 } |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6001 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6002 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
|
6003 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
|
6004 if (offset <= 0) // No room at all, quit. |
7 | 6005 return; |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
6006 if (fr == NULL) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6007 return; // Safety check, should not happen. |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6008 |
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6009 // grow frame fr by offset lines |
779 | 6010 frame_new_width(fr, fr->fr_width + offset, left, FALSE); |
7 | 6011 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6012 // shrink other frames: current and at the left or at the right |
7 | 6013 if (left) |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6014 fr = curfr; // current frame gets smaller |
7 | 6015 else |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6016 fr = curfr->fr_next; // next frame gets smaller |
7 | 6017 |
6018 while (fr != NULL && offset > 0) | |
6019 { | |
6020 n = frame_minwidth(fr, NULL); | |
6021 if (fr->fr_width - offset <= n) | |
6022 { | |
6023 offset -= fr->fr_width - n; | |
779 | 6024 frame_new_width(fr, n, !left, FALSE); |
7 | 6025 } |
6026 else | |
6027 { | |
779 | 6028 frame_new_width(fr, fr->fr_width - offset, !left, FALSE); |
7 | 6029 break; |
6030 } | |
6031 if (left) | |
6032 fr = fr->fr_prev; | |
6033 else | |
6034 fr = fr->fr_next; | |
6035 } | |
6036 (void)win_comp_pos(); | |
6037 redraw_all_later(NOT_VALID); | |
6038 } | |
6039 | |
2665 | 6040 #define FRACTION_MULT 16384L |
6041 | |
6042 /* | |
6043 * 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
|
6044 * Has no effect when the window is less than two lines. |
2665 | 6045 */ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
6046 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6047 set_fraction(win_T *wp) |
2665 | 6048 { |
12910
d21adefd4a50
patch 8.0.1331: possible crash when window can be zero lines high
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
6049 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
|
6050 // 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
|
6051 // 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
|
6052 // 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
|
6053 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
|
6054 + FRACTION_MULT / 2) / (long)wp->w_height; |
2665 | 6055 } |
6056 | |
7 | 6057 /* |
6058 * 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
|
6059 * "height" excludes any window toolbar. |
7 | 6060 * This takes care of the things inside the window, not what happens to the |
6061 * window position, the frame or to other windows. | |
6062 */ | |
3697 | 6063 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6064 win_new_height(win_T *wp, int height) |
7 | 6065 { |
5875 | 6066 int prev_height = wp->w_height; |
7 | 6067 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6068 // 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
|
6069 // Will equalize heights soon to fix it. |
7 | 6070 if (height < 0) |
6071 height = 0; | |
826 | 6072 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
|
6073 return; // nothing to do |
7 | 6074 |
5875 | 6075 if (wp->w_height > 0) |
6076 { | |
6077 if (wp == curwin) | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6078 // 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
|
6079 // call win_new_height() recursively. |
5969 | 6080 validate_cursor(); |
6081 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
|
6082 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
|
6083 // to avoid the following to mess things up. |
5875 | 6084 if (wp->w_wrow != wp->w_prev_fraction_row) |
6085 set_fraction(wp); | |
6086 } | |
7 | 6087 |
6088 wp->w_height = height; | |
6089 wp->w_skipcol = 0; | |
6090 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6091 // 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
|
6092 // values might be invalid. |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
6093 if (!exiting) |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10377
diff
changeset
|
6094 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
|
6095 } |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6096 |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6097 void |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6098 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
|
6099 { |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6100 linenr_T lnum; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6101 int sline, line_size; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6102 int height = wp->w_height; |
942d40a92be6
commit https://github.com/vim/vim/commit/46328f9a1cc8047d1e05095bc9f531038c5a4028
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
6103 |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6104 // 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
|
6105 // - window height is 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6106 // - '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
|
6107 // - 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
|
6108 // is visible. |
16650
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6109 if (height > 0 |
06fd0eaada01
patch 8.1.1327: unnecessary scroll after horizontal split
Bram Moolenaar <Bram@vim.org>
parents:
16477
diff
changeset
|
6110 && (!wp->w_p_scb || wp == curwin) |
16690
4e3c4e8e465c
patch 8.1.1347: fractional scroll position not restored after closing window
Bram Moolenaar <Bram@vim.org>
parents:
16650
diff
changeset
|
6111 && (height < wp->w_buffer->b_ml.ml_line_count || wp->w_topline > 1)) |
7 | 6112 { |
47 | 6113 /* |
6114 * Find a value for w_topline that shows the cursor at the same | |
6115 * relative position in the window as before (more or less). | |
6116 */ | |
7 | 6117 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
|
6118 if (lnum < 1) // can happen when starting up |
7 | 6119 lnum = 1; |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6120 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
|
6121 / FRACTION_MULT; |
7 | 6122 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1; |
6123 sline = wp->w_wrow - line_size; | |
1023 | 6124 |
6125 if (sline >= 0) | |
6126 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6127 // Make sure the whole cursor line is visible, if possible. |
1023 | 6128 int rows = plines_win(wp, lnum, FALSE); |
6129 | |
6130 if (sline > wp->w_height - rows) | |
6131 { | |
6132 sline = wp->w_height - rows; | |
6133 wp->w_wrow -= rows - line_size; | |
6134 } | |
6135 } | |
6136 | |
7 | 6137 if (sline < 0) |
6138 { | |
6139 /* | |
6140 * Cursor line would go off top of screen if w_wrow was this high. | |
1023 | 6141 * Make cursor line the first line in the window. If not enough |
6142 * room use w_skipcol; | |
7 | 6143 */ |
6144 wp->w_wrow = line_size; | |
1023 | 6145 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
|
6146 && (wp->w_width - win_col_off(wp)) > 0) |
1023 | 6147 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6148 wp->w_skipcol += wp->w_width - win_col_off(wp); |
1023 | 6149 --wp->w_wrow; |
6150 while (wp->w_wrow >= wp->w_height) | |
6151 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
6152 wp->w_skipcol += wp->w_width - win_col_off(wp) |
1023 | 6153 + win_col_off2(wp); |
6154 --wp->w_wrow; | |
6155 } | |
6156 } | |
7 | 6157 } |
5936 | 6158 else if (sline > 0) |
7 | 6159 { |
1023 | 6160 while (sline > 0 && lnum > 1) |
7 | 6161 { |
6162 #ifdef FEAT_FOLDING | |
6163 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL); | |
6164 if (lnum == 1) | |
6165 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6166 // first line in buffer is folded |
7 | 6167 line_size = 1; |
6168 --sline; | |
6169 break; | |
6170 } | |
6171 #endif | |
6172 --lnum; | |
6173 #ifdef FEAT_DIFF | |
6174 if (lnum == wp->w_topline) | |
6175 line_size = plines_win_nofill(wp, lnum, TRUE) | |
6176 + wp->w_topfill; | |
6177 else | |
6178 #endif | |
6179 line_size = plines_win(wp, lnum, TRUE); | |
6180 sline -= line_size; | |
6181 } | |
47 | 6182 |
7 | 6183 if (sline < 0) |
6184 { | |
6185 /* | |
6186 * Line we want at top would go off top of screen. Use next | |
6187 * line instead. | |
6188 */ | |
6189 #ifdef FEAT_FOLDING | |
6190 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL); | |
6191 #endif | |
6192 lnum++; | |
6193 wp->w_wrow -= line_size + sline; | |
6194 } | |
5936 | 6195 else if (sline > 0) |
7 | 6196 { |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6197 // First line of file reached, use that as topline. |
7 | 6198 lnum = 1; |
6199 wp->w_wrow -= sline; | |
6200 } | |
6201 } | |
15977
7fbdceabad64
patch 8.1.0994: relative cursor position is not calculated correctly
Bram Moolenaar <Bram@vim.org>
parents:
15937
diff
changeset
|
6202 set_topline(wp, lnum); |
7 | 6203 } |
6204 | |
6205 if (wp == curwin) | |
6206 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
6207 if (get_scrolloff_value()) |
7 | 6208 update_topline(); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6209 curs_columns(FALSE); // validate w_wrow |
7 | 6210 } |
5875 | 6211 if (prev_height > 0) |
6212 wp->w_prev_fraction_row = wp->w_wrow; | |
7 | 6213 |
6214 win_comp_scroll(wp); | |
737 | 6215 redraw_win_later(wp, SOME_VALID); |
7 | 6216 wp->w_redr_status = TRUE; |
6217 invalidate_botline_win(wp); | |
6218 } | |
6219 | |
6220 /* | |
6221 * Set the width of a window. | |
6222 */ | |
3697 | 6223 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6224 win_new_width(win_T *wp, int width) |
7 | 6225 { |
6226 wp->w_width = width; | |
6227 wp->w_lines_valid = 0; | |
6228 changed_line_abv_curs_win(wp); | |
6229 invalidate_botline_win(wp); | |
6230 if (wp == curwin) | |
6231 { | |
6232 update_topline(); | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6233 curs_columns(TRUE); // validate w_wrow |
7 | 6234 } |
6235 redraw_win_later(wp, NOT_VALID); | |
6236 wp->w_redr_status = TRUE; | |
6237 } | |
6238 | |
6239 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6240 win_comp_scroll(win_T *wp) |
7 | 6241 { |
6242 wp->w_p_scr = ((unsigned)wp->w_height >> 1); | |
6243 if (wp->w_p_scr == 0) | |
6244 wp->w_p_scr = 1; | |
6245 } | |
6246 | |
6247 /* | |
6248 * command_height: called whenever p_ch has been changed | |
6249 */ | |
6250 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6251 command_height(void) |
7 | 6252 { |
6253 int h; | |
6254 frame_T *frp; | |
824 | 6255 int old_p_ch = curtab->tp_ch_used; |
6256 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6257 // 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
|
6258 // 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
|
6259 // p_ch was changed in another tab page. |
824 | 6260 curtab->tp_ch_used = p_ch; |
170 | 6261 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6262 // Find bottom frame with width of screen. |
7 | 6263 frp = lastwin->w_frame; |
6264 while (frp->fr_width != Columns && frp->fr_parent != NULL) | |
6265 frp = frp->fr_parent; | |
6266 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6267 // Avoid changing the height of a window with 'winfixheight' set. |
7 | 6268 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF |
6269 && frp->fr_win->w_p_wfh) | |
6270 frp = frp->fr_prev; | |
6271 | |
6272 if (starting != NO_SCREEN) | |
6273 { | |
6274 cmdline_row = Rows - p_ch; | |
6275 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6276 if (p_ch > old_p_ch) // p_ch got bigger |
7 | 6277 { |
6278 while (p_ch > old_p_ch) | |
6279 { | |
6280 if (frp == NULL) | |
6281 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6282 emsg(_(e_noroom)); |
7 | 6283 p_ch = old_p_ch; |
1404 | 6284 curtab->tp_ch_used = p_ch; |
7 | 6285 cmdline_row = Rows - p_ch; |
6286 break; | |
6287 } | |
6288 h = frp->fr_height - frame_minheight(frp, NULL); | |
6289 if (h > p_ch - old_p_ch) | |
6290 h = p_ch - old_p_ch; | |
6291 old_p_ch += h; | |
6292 frame_add_height(frp, -h); | |
6293 frp = frp->fr_prev; | |
6294 } | |
6295 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6296 // Recompute window positions. |
7 | 6297 (void)win_comp_pos(); |
6298 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6299 // clear the lines added to cmdline |
7 | 6300 if (full_screen) |
6301 screen_fill((int)(cmdline_row), (int)Rows, 0, | |
6302 (int)Columns, ' ', ' ', 0); | |
6303 msg_row = cmdline_row; | |
6304 redraw_cmdline = TRUE; | |
6305 return; | |
6306 } | |
6307 | |
6308 if (msg_row < cmdline_row) | |
6309 msg_row = cmdline_row; | |
6310 redraw_cmdline = TRUE; | |
6311 } | |
6312 frame_add_height(frp, (int)(old_p_ch - p_ch)); | |
6313 | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6314 // Recompute window positions. |
7 | 6315 if (frp != lastwin->w_frame) |
6316 (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
|
6317 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6318 |
7 | 6319 /* |
6320 * Resize frame "frp" to be "n" lines higher (negative for less high). | |
6321 * Also resize the frames it is contained in. | |
6322 */ | |
6323 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6324 frame_add_height(frame_T *frp, int n) |
7 | 6325 { |
6326 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE); | |
6327 for (;;) | |
6328 { | |
6329 frp = frp->fr_parent; | |
6330 if (frp == NULL) | |
6331 break; | |
6332 frp->fr_height += n; | |
6333 } | |
6334 } | |
6335 | |
6336 /* | |
6337 * Add or remove a status line for the bottom window(s), according to the | |
6338 * value of 'laststatus'. | |
6339 */ | |
6340 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6341 last_status( |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6342 int morewin) // pretend there are two or more windows |
7 | 6343 { |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6344 // Don't make a difference between horizontal or vertical split. |
7 | 6345 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
|
6346 || (p_ls == 1 && (morewin || !ONE_WINDOW)))); |
7 | 6347 } |
6348 | |
6349 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6350 last_status_rec(frame_T *fr, int statusline) |
7 | 6351 { |
6352 frame_T *fp; | |
6353 win_T *wp; | |
6354 | |
6355 if (fr->fr_layout == FR_LEAF) | |
6356 { | |
6357 wp = fr->fr_win; | |
6358 if (wp->w_status_height != 0 && !statusline) | |
6359 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6360 // remove status line |
7 | 6361 win_new_height(wp, wp->w_height + 1); |
6362 wp->w_status_height = 0; | |
6363 comp_col(); | |
6364 } | |
6365 else if (wp->w_status_height == 0 && statusline) | |
6366 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6367 // Find a frame to take a line from. |
7 | 6368 fp = fr; |
6369 while (fp->fr_height <= frame_minheight(fp, NULL)) | |
6370 { | |
6371 if (fp == topframe) | |
6372 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6373 emsg(_(e_noroom)); |
7 | 6374 return; |
6375 } | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6376 // 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
|
6377 // the top or in a row of frames: go to parent. |
7 | 6378 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL) |
6379 fp = fp->fr_prev; | |
6380 else | |
6381 fp = fp->fr_parent; | |
6382 } | |
6383 wp->w_status_height = 1; | |
6384 if (fp != fr) | |
6385 { | |
6386 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE); | |
6387 frame_fix_height(wp); | |
6388 (void)win_comp_pos(); | |
6389 } | |
6390 else | |
6391 win_new_height(wp, wp->w_height - 1); | |
6392 comp_col(); | |
737 | 6393 redraw_all_later(SOME_VALID); |
7 | 6394 } |
6395 } | |
6396 else if (fr->fr_layout == FR_ROW) | |
6397 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6398 // 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
|
6399 FOR_ALL_FRAMES(fp, fr->fr_child) |
7 | 6400 last_status_rec(fp, statusline); |
6401 } | |
6402 else | |
6403 { | |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6404 // horizontally split window, set status line for last one |
7 | 6405 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
6406 ; | |
6407 last_status_rec(fp, statusline); | |
6408 } | |
6409 } | |
6410 | |
667 | 6411 /* |
668 | 6412 * Return the number of lines used by the tab page line. |
667 | 6413 */ |
6414 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6415 tabline_height(void) |
667 | 6416 { |
685 | 6417 #ifdef FEAT_GUI_TABLINE |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6418 // When the GUI has the tabline then this always returns zero. |
685 | 6419 if (gui_use_tabline()) |
6420 return 0; | |
6421 #endif | |
675 | 6422 switch (p_stal) |
668 | 6423 { |
6424 case 0: return 0; | |
6425 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1; | |
6426 } | |
667 | 6427 return 1; |
6428 } | |
6429 | |
7 | 6430 /* |
6431 * Return the minimal number of rows that is needed on the screen to display | |
6432 * the current number of windows. | |
6433 */ | |
6434 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6435 min_rows(void) |
7 | 6436 { |
6437 int total; | |
671 | 6438 tabpage_T *tp; |
6439 int n; | |
7 | 6440 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6441 if (firstwin == NULL) // not initialized yet |
7 | 6442 return MIN_LINES; |
6443 | |
671 | 6444 total = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6445 FOR_ALL_TABPAGES(tp) |
671 | 6446 { |
6447 n = frame_minheight(tp->tp_topframe, NULL); | |
6448 if (total < n) | |
6449 total = n; | |
6450 } | |
685 | 6451 total += tabline_height(); |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6452 total += 1; // count the room for the command line |
7 | 6453 return total; |
6454 } | |
6455 | |
6456 /* | |
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
|
6457 * Return TRUE if there is only one window and only one tab page, not |
672 | 6458 * 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
|
6459 * Does not count unlisted windows. |
7 | 6460 */ |
6461 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6462 only_one_window(void) |
7 | 6463 { |
6464 int count = 0; | |
6465 win_T *wp; | |
6466 | |
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
|
6467 #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
|
6468 // 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
|
6469 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
|
6470 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
|
6471 #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
|
6472 |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6473 // If there is another tab page there always is another window. |
667 | 6474 if (first_tabpage->tp_next != NULL) |
6475 return FALSE; | |
6476 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
6477 FOR_ALL_WINDOWS(wp) |
4021 | 6478 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
|
6479 && (!((bt_help(wp->w_buffer) && !bt_help(curbuf)) |
7 | 6480 # ifdef FEAT_QUICKFIX |
6481 || wp->w_p_pvw | |
6482 # endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
6483 ) || wp == curwin) && wp != aucmd_win) |
7 | 6484 ++count; |
6485 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
|
6486 } |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6487 |
7 | 6488 /* |
6489 * Correct the cursor line number in other windows. Used after changing the | |
6490 * current buffer, and before applying autocommands. | |
6491 * When "do_curwin" is TRUE, also check current window. | |
6492 */ | |
6493 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6494 check_lnums(int do_curwin) |
7 | 6495 { |
6496 win_T *wp; | |
671 | 6497 tabpage_T *tp; |
6498 | |
6499 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7 | 6500 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf) |
6501 { | |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6502 // save the original cursor position and topline |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6503 wp->w_save_cursor.w_cursor_save = wp->w_cursor; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6504 wp->w_save_cursor.w_topline_save = wp->w_topline; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6505 |
7 | 6506 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
6507 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
6508 if (wp->w_topline > curbuf->b_ml.ml_line_count) | |
6509 wp->w_topline = curbuf->b_ml.ml_line_count; | |
16401
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6510 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6511 // save the corrected cursor position and topline |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6512 wp->w_save_cursor.w_cursor_corr = wp->w_cursor; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6513 wp->w_save_cursor.w_topline_corr = wp->w_topline; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6514 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6515 } |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6516 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6517 /* |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6518 * 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
|
6519 * 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
|
6520 */ |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6521 void |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6522 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
|
6523 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6524 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
|
6525 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
|
6526 |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6527 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
|
6528 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
|
6529 { |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6530 // Restore the value if the autocommand didn't change it. |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6531 if (EQUAL_POS(wp->w_save_cursor.w_cursor_corr, wp->w_cursor)) |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6532 wp->w_cursor = wp->w_save_cursor.w_cursor_save; |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6533 if (wp->w_save_cursor.w_topline_corr == wp->w_topline) |
3b2db762a509
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents:
16354
diff
changeset
|
6534 wp->w_topline = wp->w_save_cursor.w_topline_save; |
7 | 6535 } |
6536 } | |
6537 | |
6538 /* | |
6539 * A snapshot of the window sizes, to restore them after closing the help | |
6540 * window. | |
6541 * Only these fields are used: | |
6542 * fr_layout | |
6543 * fr_width | |
6544 * fr_height | |
6545 * fr_next | |
6546 * fr_child | |
6547 * fr_win (only valid for the old curwin, NULL otherwise) | |
6548 */ | |
6549 | |
6550 /* | |
6551 * Create a snapshot of the current frame sizes. | |
6552 */ | |
1906 | 6553 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6554 make_snapshot(int idx) |
7 | 6555 { |
1906 | 6556 clear_snapshot(curtab, idx); |
6557 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); | |
7 | 6558 } |
6559 | |
6560 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6561 make_snapshot_rec(frame_T *fr, frame_T **frp) |
7 | 6562 { |
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
|
6563 *frp = ALLOC_CLEAR_ONE(frame_T); |
7 | 6564 if (*frp == NULL) |
6565 return; | |
6566 (*frp)->fr_layout = fr->fr_layout; | |
6567 (*frp)->fr_width = fr->fr_width; | |
6568 (*frp)->fr_height = fr->fr_height; | |
6569 if (fr->fr_next != NULL) | |
6570 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next)); | |
6571 if (fr->fr_child != NULL) | |
6572 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child)); | |
6573 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin) | |
6574 (*frp)->fr_win = curwin; | |
6575 } | |
6576 | |
6577 /* | |
6578 * Remove any existing snapshot. | |
6579 */ | |
6580 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6581 clear_snapshot(tabpage_T *tp, int idx) |
7 | 6582 { |
1906 | 6583 clear_snapshot_rec(tp->tp_snapshot[idx]); |
6584 tp->tp_snapshot[idx] = NULL; | |
7 | 6585 } |
6586 | |
6587 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6588 clear_snapshot_rec(frame_T *fr) |
7 | 6589 { |
6590 if (fr != NULL) | |
6591 { | |
6592 clear_snapshot_rec(fr->fr_next); | |
6593 clear_snapshot_rec(fr->fr_child); | |
6594 vim_free(fr); | |
6595 } | |
6596 } | |
6597 | |
6598 /* | |
6599 * Restore a previously created snapshot, if there is any. | |
6600 * This is only done if the screen size didn't change and the window layout is | |
6601 * still the same. | |
6602 */ | |
1906 | 6603 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6604 restore_snapshot( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6605 int idx, |
18816
15539899a112
patch 8.1.2396: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
6606 int close_curwin) // closing current window |
7 | 6607 { |
6608 win_T *wp; | |
6609 | |
1906 | 6610 if (curtab->tp_snapshot[idx] != NULL |
6611 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width | |
6612 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height | |
6613 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) | |
6614 { | |
6615 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); | |
7 | 6616 win_comp_pos(); |
6617 if (wp != NULL && close_curwin) | |
6618 win_goto(wp); | |
15380
f62d6bd18a49
patch 8.1.0698: clearing the window is used too often
Bram Moolenaar <Bram@vim.org>
parents:
15227
diff
changeset
|
6619 redraw_all_later(NOT_VALID); |
7 | 6620 } |
1906 | 6621 clear_snapshot(curtab, idx); |
7 | 6622 } |
6623 | |
6624 /* | |
6625 * 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
|
6626 * and same children. And the window pointer is valid. |
7 | 6627 */ |
6628 static int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6629 check_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 6630 { |
6631 if (sn->fr_layout != fr->fr_layout | |
6632 || (sn->fr_next == NULL) != (fr->fr_next == NULL) | |
6633 || (sn->fr_child == NULL) != (fr->fr_child == NULL) | |
6634 || (sn->fr_next != NULL | |
6635 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL) | |
6636 || (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
|
6637 && 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
|
6638 || (sn->fr_win != NULL && !win_valid(sn->fr_win))) |
7 | 6639 return FAIL; |
6640 return OK; | |
6641 } | |
6642 | |
6643 /* | |
6644 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all | |
6645 * following frames and children. | |
6646 * Returns a pointer to the old current window, or NULL. | |
6647 */ | |
6648 static win_T * | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6649 restore_snapshot_rec(frame_T *sn, frame_T *fr) |
7 | 6650 { |
6651 win_T *wp = NULL; | |
6652 win_T *wp2; | |
6653 | |
6654 fr->fr_height = sn->fr_height; | |
6655 fr->fr_width = sn->fr_width; | |
6656 if (fr->fr_layout == FR_LEAF) | |
6657 { | |
6658 frame_new_height(fr, fr->fr_height, FALSE, FALSE); | |
779 | 6659 frame_new_width(fr, fr->fr_width, FALSE, FALSE); |
7 | 6660 wp = sn->fr_win; |
6661 } | |
6662 if (sn->fr_next != NULL) | |
6663 { | |
6664 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next); | |
6665 if (wp2 != NULL) | |
6666 wp = wp2; | |
6667 } | |
6668 if (sn->fr_child != NULL) | |
6669 { | |
6670 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child); | |
6671 if (wp2 != NULL) | |
6672 wp = wp2; | |
6673 } | |
6674 return wp; | |
6675 } | |
6676 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6677 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 6678 /* |
6679 * Return TRUE if there is any vertically split window. | |
6680 */ | |
6681 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6682 win_hasvertsplit(void) |
7 | 6683 { |
6684 frame_T *fr; | |
6685 | |
6686 if (topframe->fr_layout == FR_ROW) | |
6687 return TRUE; | |
6688 | |
6689 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
|
6690 FOR_ALL_FRAMES(fr, topframe->fr_child) |
7 | 6691 if (fr->fr_layout == FR_ROW) |
6692 return TRUE; | |
6693 | |
6694 return FALSE; | |
6695 } | |
6696 #endif | |
1326 | 6697 |
4379 | 6698 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) |
6699 int | |
4401 | 6700 get_win_number(win_T *wp, win_T *first_win) |
4379 | 6701 { |
6702 int i = 1; | |
6703 win_T *w; | |
6704 | |
4401 | 6705 for (w = first_win; w != NULL && w != wp; w = W_NEXT(w)) |
4379 | 6706 ++i; |
6707 | |
6708 if (w == NULL) | |
6709 return 0; | |
6710 else | |
6711 return i; | |
6712 } | |
4401 | 6713 |
6714 int | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4918
diff
changeset
|
6715 get_tab_number(tabpage_T *tp UNUSED) |
4401 | 6716 { |
6717 int i = 1; | |
6718 tabpage_T *t; | |
6719 | |
6720 for (t = first_tabpage; t != NULL && t != tp; t = t->tp_next) | |
6721 ++i; | |
6722 | |
6723 if (t == NULL) | |
6724 return 0; | |
6725 else | |
6726 return i; | |
6727 } | |
6728 #endif | |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6729 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6730 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6731 * 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
|
6732 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6733 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6734 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
|
6735 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6736 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6737 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6738 if (topfrp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6739 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6740 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6741 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
|
6742 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6743 if (frp->fr_height != height) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6744 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6745 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6746 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6747 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
6748 |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6749 /* |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6750 * 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
|
6751 */ |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6752 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6753 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
|
6754 { |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6755 frame_T *frp; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6756 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6757 if (topfrp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6758 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6759 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6760 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
|
6761 FOR_ALL_FRAMES(frp, topfrp->fr_child) |
5004
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6762 if (frp->fr_width != width) |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6763 return FALSE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6764 |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6765 return TRUE; |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6766 } |
a1b41dabc682
updated for version 7.3.1246
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
6767 |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6768 #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
|
6769 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6770 * 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
|
6771 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6772 static int |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6773 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
|
6774 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6775 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
|
6776 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6777 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6778 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6779 * 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
|
6780 * 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
|
6781 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6782 char * |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6783 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
|
6784 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6785 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
|
6786 int col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6787 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
|
6788 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
|
6789 int i; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6790 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
|
6791 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6792 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
|
6793 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
|
6794 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6795 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
|
6796 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6797 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
|
6798 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6799 // -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
|
6800 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
|
6801 ++s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6802 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
|
6803 return e_invarg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6804 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
|
6805 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
|
6806 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
|
6807 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
|
6808 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
|
6809 goto skip; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6810 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6811 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
|
6812 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
|
6813 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6814 return e_invarg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6815 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
|
6816 skip: |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6817 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
|
6818 break; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6819 if (*s != ',') |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6820 return e_invarg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6821 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
|
6822 return e_invarg; // illegal trailing comma as in "set cc=80," |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6823 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6824 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6825 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
|
6826 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
|
6827 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
|
6828 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6829 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6830 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
|
6831 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
|
6832 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6833 // 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
|
6834 // win_line() |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6835 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
|
6836 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6837 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
|
6838 // skip duplicates |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6839 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
|
6840 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
|
6841 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
|
6842 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6843 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6844 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6845 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
|
6846 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17932
diff
changeset
|
6847 #endif |