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