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