Mercurial > vim
annotate src/popupmenu.c @ 18679:fd95d4dbeb37 v8.1.2331
patch 8.1.2331: the option.c file is still very big
Commit: https://github.com/vim/vim/commit/7bae0b1bc84a95d565ffab38cf7f82ad21c656b6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 21 22:14:18 2019 +0100
patch 8.1.2331: the option.c file is still very big
Problem: The option.c file is still very big.
Solution: Move a few functions to where they fit better. (Yegappan
Lakshmanan, closes #4895)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 21 Nov 2019 22:15:03 +0100 |
parents | de350001150c |
children | 592c7b56db69 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
800 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
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 /* | |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
17950
diff
changeset
|
11 * popupmenu.c: Popup menu (PUM) |
800 | 12 */ |
13 #include "vim.h" | |
14 | |
15 static pumitem_T *pum_array = NULL; /* items of displayed pum */ | |
16 static int pum_size; /* nr of items in "pum_array" */ | |
17 static int pum_selected; /* index of selected item or -1 */ | |
18 static int pum_first = 0; /* index of top item */ | |
19 | |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
20 static int call_update_screen = FALSE; |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
21 |
800 | 22 static int pum_height; /* nr of displayed pum items */ |
23 static int pum_width; /* width of displayed pum items */ | |
24 static int pum_base_width; /* width of pum items base */ | |
25 static int pum_kind_width; /* width of pum items kind column */ | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
26 static int pum_extra_width; /* width of extra stuff */ |
800 | 27 static int pum_scrollbar; /* TRUE when scrollbar present */ |
28 | |
29 static int pum_row; /* top row of pum */ | |
30 static int pum_col; /* left column of pum */ | |
31 | |
14095
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
32 static win_T *pum_window = NULL; |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
33 static int pum_win_row; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
34 static int pum_win_height; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
35 static int pum_win_col; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
36 static int pum_win_wcol; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
37 static int pum_win_width; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
38 |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
39 static int pum_do_redraw = FALSE; // do redraw anyway |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
40 static int pum_skip_redraw = FALSE; // skip redraw |
800 | 41 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
42 static int pum_set_selected(int n, int repeat); |
800 | 43 |
44 #define PUM_DEF_HEIGHT 10 | |
45 | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
46 static void |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
47 pum_compute_size(void) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
48 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
49 int i; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
50 int w; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
51 |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
52 /* Compute the width of the widest match and the widest extra. */ |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
53 pum_base_width = 0; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
54 pum_kind_width = 0; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
55 pum_extra_width = 0; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
56 for (i = 0; i < pum_size; ++i) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
57 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
58 w = vim_strsize(pum_array[i].pum_text); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
59 if (pum_base_width < w) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
60 pum_base_width = w; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
61 if (pum_array[i].pum_kind != NULL) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
62 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
63 w = vim_strsize(pum_array[i].pum_kind) + 1; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
64 if (pum_kind_width < w) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
65 pum_kind_width = w; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
66 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
67 if (pum_array[i].pum_extra != NULL) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
68 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
69 w = vim_strsize(pum_array[i].pum_extra) + 1; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
70 if (pum_extra_width < w) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
71 pum_extra_width = w; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
72 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
73 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
74 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
75 |
800 | 76 /* |
77 * Show the popup menu with items "array[size]". | |
78 * "array" must remain valid until pum_undisplay() is called! | |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
79 * When possible the leftmost character is aligned with cursor column. |
800 | 80 * The menu appears above the screen line "row" or at "row" + "height" - 1. |
81 */ | |
82 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
83 pum_display( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
84 pumitem_T *array, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
85 int size, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
86 int selected) /* index of initially selected item, none if |
800 | 87 out of range */ |
88 { | |
89 int def_width; | |
90 int max_width; | |
1622 | 91 int context_lines; |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
92 int cursor_col; |
10326
7d10572eaba4
commit https://github.com/vim/vim/commit/91e44a3305ef6bf2d43496c351dcff0a45c6bfb8
Christian Brabandt <cb@256bit.org>
parents:
10302
diff
changeset
|
93 int above_row; |
7d10572eaba4
commit https://github.com/vim/vim/commit/91e44a3305ef6bf2d43496c351dcff0a45c6bfb8
Christian Brabandt <cb@256bit.org>
parents:
10302
diff
changeset
|
94 int below_row; |
838 | 95 int redo_count = 0; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
96 #if defined(FEAT_QUICKFIX) |
10326
7d10572eaba4
commit https://github.com/vim/vim/commit/91e44a3305ef6bf2d43496c351dcff0a45c6bfb8
Christian Brabandt <cb@256bit.org>
parents:
10302
diff
changeset
|
97 win_T *pvwin; |
10332
4d98f501d1c5
commit https://github.com/vim/vim/commit/aab3383e70456f054fe9d0963fe3eb45994aa5e7
Christian Brabandt <cb@256bit.org>
parents:
10326
diff
changeset
|
98 #endif |
800 | 99 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
100 do |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
101 { |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
102 def_width = p_pw; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
103 above_row = 0; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
104 below_row = cmdline_row; |
800 | 105 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
106 /* Pretend the pum is already there to avoid that must_redraw is set |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
107 * when 'cuc' is on. */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
108 pum_array = (pumitem_T *)1; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
109 validate_cursor_col(); |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
110 pum_array = NULL; |
800 | 111 |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
112 // Remember the essential parts of the window position and size, so we |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
113 // can decide when to reposition the popup menu. |
14095
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
114 pum_window = curwin; |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
115 pum_win_row = curwin->w_wrow + W_WINROW(curwin); |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
116 pum_win_height = curwin->w_height; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
117 pum_win_col = curwin->w_wincol; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
118 pum_win_wcol = curwin->w_wcol; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
119 pum_win_width = curwin->w_width; |
800 | 120 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
121 #if defined(FEAT_QUICKFIX) |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
122 FOR_ALL_WINDOWS(pvwin) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
123 if (pvwin->w_p_pvw) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
124 break; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
125 if (pvwin != NULL) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
126 { |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
127 if (W_WINROW(pvwin) < W_WINROW(curwin)) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
128 above_row = W_WINROW(pvwin) + pvwin->w_height; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
129 else if (W_WINROW(pvwin) > W_WINROW(curwin) + curwin->w_height) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
130 below_row = W_WINROW(pvwin); |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
131 } |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
132 #endif |
800 | 133 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
134 /* |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
135 * Figure out the size and position of the pum. |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
136 */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
137 if (size < PUM_DEF_HEIGHT) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
138 pum_height = size; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
139 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
140 pum_height = PUM_DEF_HEIGHT; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
141 if (p_ph > 0 && pum_height > p_ph) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
142 pum_height = p_ph; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
143 |
14685
17a7d9e71ebb
patch 8.1.0355: incorrect adjusting the popup menu for the preview window
Christian Brabandt <cb@256bit.org>
parents:
14095
diff
changeset
|
144 /* Put the pum below "pum_win_row" if possible. If there are few lines |
17a7d9e71ebb
patch 8.1.0355: incorrect adjusting the popup menu for the preview window
Christian Brabandt <cb@256bit.org>
parents:
14095
diff
changeset
|
145 * decide on where there is more room. */ |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
146 if (pum_win_row + 2 >= below_row - pum_height |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
147 && pum_win_row - above_row > (below_row - above_row) / 2) |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
148 { |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
149 /* pum above "pum_win_row" */ |
800 | 150 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
151 /* Leave two lines of context if possible */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
152 if (curwin->w_wrow - curwin->w_cline_row >= 2) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
153 context_lines = 2; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
154 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
155 context_lines = curwin->w_wrow - curwin->w_cline_row; |
1622 | 156 |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
157 if (pum_win_row >= size + context_lines) |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
158 { |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
159 pum_row = pum_win_row - size - context_lines; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
160 pum_height = size; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
161 } |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
162 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
163 { |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
164 pum_row = 0; |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
165 pum_height = pum_win_row - context_lines; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
166 } |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
167 if (p_ph > 0 && pum_height > p_ph) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
168 { |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
169 pum_row += pum_height - p_ph; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
170 pum_height = p_ph; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
171 } |
800 | 172 } |
173 else | |
174 { | |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
175 /* pum below "pum_win_row" */ |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
176 |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
177 /* Leave two lines of context if possible */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
178 if (curwin->w_cline_row |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
179 + curwin->w_cline_height - curwin->w_wrow >= 3) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
180 context_lines = 3; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
181 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
182 context_lines = curwin->w_cline_row |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
183 + curwin->w_cline_height - curwin->w_wrow; |
1622 | 184 |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
185 pum_row = pum_win_row + context_lines; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
186 if (size > below_row - pum_row) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
187 pum_height = below_row - pum_row; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
188 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
189 pum_height = size; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
190 if (p_ph > 0 && pum_height > p_ph) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
191 pum_height = p_ph; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
192 } |
1622 | 193 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
194 /* don't display when we only have room for one line */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
195 if (pum_height < 1 || (pum_height == 1 && size > 1)) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
196 return; |
800 | 197 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
198 #if defined(FEAT_QUICKFIX) |
15087
6a74cde86252
patch 8.1.0554: popup menu overlaps with preview window
Bram Moolenaar <Bram@vim.org>
parents:
14952
diff
changeset
|
199 // If there is a preview window above avoid drawing over it. |
6a74cde86252
patch 8.1.0554: popup menu overlaps with preview window
Bram Moolenaar <Bram@vim.org>
parents:
14952
diff
changeset
|
200 if (pvwin != NULL && pum_row < above_row && pum_height > above_row) |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
201 { |
15087
6a74cde86252
patch 8.1.0554: popup menu overlaps with preview window
Bram Moolenaar <Bram@vim.org>
parents:
14952
diff
changeset
|
202 pum_row = above_row; |
6a74cde86252
patch 8.1.0554: popup menu overlaps with preview window
Bram Moolenaar <Bram@vim.org>
parents:
14952
diff
changeset
|
203 pum_height = pum_win_row - above_row; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
204 } |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
205 #endif |
800 | 206 |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
207 pum_array = array; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
208 pum_size = size; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
209 pum_compute_size(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
210 max_width = pum_base_width; |
800 | 211 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
212 /* Calculate column */ |
1344 | 213 #ifdef FEAT_RIGHTLEFT |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
214 if (curwin->w_p_rl) |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
215 cursor_col = curwin->w_wincol + curwin->w_width |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
216 - curwin->w_wcol - 1; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
217 else |
1344 | 218 #endif |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
219 cursor_col = curwin->w_wincol + curwin->w_wcol; |
1344 | 220 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
221 /* if there are more items than room we need a scrollbar */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
222 if (pum_height < size) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
223 { |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
224 pum_scrollbar = 1; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
225 ++max_width; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
226 } |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
227 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
228 pum_scrollbar = 0; |
800 | 229 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
230 if (def_width < max_width) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
231 def_width = max_width; |
800 | 232 |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
233 if (((cursor_col < Columns - p_pw |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
234 || cursor_col < Columns - max_width) |
1344 | 235 #ifdef FEAT_RIGHTLEFT |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
236 && !curwin->w_p_rl) |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
237 || (curwin->w_p_rl |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
238 && (cursor_col > p_pw || cursor_col > max_width) |
1344 | 239 #endif |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
240 )) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
241 { |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
242 /* align pum with "cursor_col" */ |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
243 pum_col = cursor_col; |
1344 | 244 |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
245 /* start with the maximum space available */ |
1344 | 246 #ifdef FEAT_RIGHTLEFT |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
247 if (curwin->w_p_rl) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
248 pum_width = pum_col - pum_scrollbar + 1; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
249 else |
1344 | 250 #endif |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
251 pum_width = Columns - pum_col - pum_scrollbar; |
1344 | 252 |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
253 if (pum_width > max_width + pum_kind_width + pum_extra_width + 1 |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
254 && pum_width > p_pw) |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
255 { |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
256 /* the width is more than needed for the items, make it |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
257 * narrower */ |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
258 pum_width = max_width + pum_kind_width + pum_extra_width + 1; |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
259 if (pum_width < p_pw) |
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
260 pum_width = p_pw; |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
261 } |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
262 else if (((cursor_col > p_pw || cursor_col > max_width) |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
263 #ifdef FEAT_RIGHTLEFT |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
264 && !curwin->w_p_rl) |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
265 || (curwin->w_p_rl && (cursor_col < Columns - p_pw |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
266 || cursor_col < Columns - max_width) |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
267 #endif |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
268 )) |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
269 { |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
270 /* align pum edge with "cursor_col" */ |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
271 #ifdef FEAT_RIGHTLEFT |
13296
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
272 if (curwin->w_p_rl |
13328
2c639a9a4def
patch 8.0.1538: popupmenu is too far left when completion is long
Christian Brabandt <cb@256bit.org>
parents:
13296
diff
changeset
|
273 && W_ENDCOL(curwin) < max_width + pum_scrollbar + 1) |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
274 { |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
275 pum_col = cursor_col + max_width + pum_scrollbar + 1; |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
276 if (pum_col >= Columns) |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
277 pum_col = Columns - 1; |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
278 } |
13296
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
279 else if (!curwin->w_p_rl) |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
280 #endif |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
281 { |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
282 if (curwin->w_wincol > Columns - max_width - pum_scrollbar |
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
283 && max_width <= p_pw) |
13296
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
284 { |
13331
1ba4f926247c
patch 8.0.1540: popup menu positioning fails with longer string
Christian Brabandt <cb@256bit.org>
parents:
13328
diff
changeset
|
285 /* use full width to end of the screen */ |
13296
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
286 pum_col = Columns - max_width - pum_scrollbar; |
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
287 if (pum_col < 0) |
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
288 pum_col = 0; |
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
289 } |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
290 } |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
291 |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
292 #ifdef FEAT_RIGHTLEFT |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
293 if (curwin->w_p_rl) |
13296
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
294 pum_width = pum_col - pum_scrollbar + 1; |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
295 else |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
296 #endif |
13296
67345bc7fe31
patch 8.0.1522: popup menu is positioned in the wrong place
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
297 pum_width = Columns - pum_col - pum_scrollbar; |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
298 |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
299 if (pum_width < p_pw) |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
300 { |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
301 pum_width = p_pw; |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
302 #ifdef FEAT_RIGHTLEFT |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
303 if (curwin->w_p_rl) |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
304 { |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
305 if (pum_width > pum_col) |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
306 pum_width = pum_col; |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
307 } |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
308 else |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
309 #endif |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
310 { |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
311 if (pum_width >= Columns - pum_col) |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
312 pum_width = Columns - pum_col - 1; |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
313 } |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
314 } |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
315 else if (pum_width > max_width + pum_kind_width |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
316 + pum_extra_width + 1 |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
317 && pum_width > p_pw) |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
318 { |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
319 pum_width = max_width + pum_kind_width |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
320 + pum_extra_width + 1; |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
321 if (pum_width < p_pw) |
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
322 pum_width = p_pw; |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
323 } |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
324 } |
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
325 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
326 } |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
327 else if (Columns < def_width) |
800 | 328 { |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
329 /* not enough room, will use what we have */ |
1344 | 330 #ifdef FEAT_RIGHTLEFT |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
331 if (curwin->w_p_rl) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
332 pum_col = Columns - 1; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
333 else |
1344 | 334 #endif |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
335 pum_col = 0; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
336 pum_width = Columns - 1; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
337 } |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
338 else |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
339 { |
13242
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
340 if (max_width > p_pw) |
5b0faf628a55
patch 8.0.1495: having 'pumwidth' default to zero has no merit
Christian Brabandt <cb@256bit.org>
parents:
13234
diff
changeset
|
341 max_width = p_pw; /* truncate */ |
1344 | 342 #ifdef FEAT_RIGHTLEFT |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
343 if (curwin->w_p_rl) |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
344 pum_col = max_width - 1; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
345 else |
1344 | 346 #endif |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
347 pum_col = Columns - max_width; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
348 pum_width = max_width - pum_scrollbar; |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
349 } |
800 | 350 |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
351 /* Set selected item and redraw. If the window size changed need to |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
352 * redo the positioning. Limit this to two times, when there is not |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
353 * much room the window size will keep changing. */ |
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
354 } while (pum_set_selected(selected, redo_count) && ++redo_count <= 2); |
800 | 355 } |
356 | |
357 /* | |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
358 * Set a flag that when pum_redraw() is called it first calls update_screen(). |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
359 * This will avoid clearing and redrawing the popup menu, prevent flicker. |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
360 */ |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
361 void |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
362 pum_call_update_screen() |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
363 { |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
364 call_update_screen = TRUE; |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
365 |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
366 // Update the cursor position to be able to compute the popup menu |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
367 // position. The cursor line length may have changed because of the |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
368 // inserted completion. |
15683
adc6442118b8
patch 8.1.0849: cursorline highlight is not always updated
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
369 curwin->w_valid &= ~(VALID_CROW|VALID_CHEIGHT); |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
370 validate_cursor(); |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
371 } |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
372 |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
373 /* |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
374 * Return TRUE if we are going to redraw the popup menu and the screen position |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
375 * "row"/"col" is under the popup menu. |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
376 */ |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
377 int |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
378 pum_under_menu(int row, int col) |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
379 { |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
380 return pum_skip_redraw |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
381 && row >= pum_row |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
382 && row < pum_row + pum_height |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
383 && col >= pum_col - 1 |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
384 && col < pum_col + pum_width; |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
385 } |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
386 |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
387 /* |
800 | 388 * Redraw the popup menu, using "pum_first" and "pum_selected". |
389 */ | |
390 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
391 pum_redraw(void) |
800 | 392 { |
393 int row = pum_row; | |
394 int col; | |
395 int attr_norm = highlight_attr[HLF_PNI]; | |
396 int attr_select = highlight_attr[HLF_PSI]; | |
397 int attr_scroll = highlight_attr[HLF_PSB]; | |
398 int attr_thumb = highlight_attr[HLF_PST]; | |
399 int attr; | |
400 int i; | |
401 int idx; | |
402 char_u *s; | |
403 char_u *p = NULL; | |
404 int totwidth, width, w; | |
405 int thumb_pos = 0; | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
406 int thumb_height = 1; |
800 | 407 int round; |
408 int n; | |
409 | |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
410 if (call_update_screen) |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
411 { |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
412 call_update_screen = FALSE; |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
413 pum_skip_redraw = TRUE; // do not redraw in pum_may_redraw(). |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
414 update_screen(0); |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
415 pum_skip_redraw = FALSE; |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
416 } |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
417 |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
418 // never display more than we have |
5444 | 419 if (pum_first > pum_size - pum_height) |
420 pum_first = pum_size - pum_height; | |
421 | |
800 | 422 if (pum_scrollbar) |
423 { | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
424 thumb_height = pum_height * pum_height / pum_size; |
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
425 if (thumb_height == 0) |
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
426 thumb_height = 1; |
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
427 thumb_pos = (pum_first * (pum_height - thumb_height) |
800 | 428 + (pum_size - pum_height) / 2) |
429 / (pum_size - pum_height); | |
430 } | |
431 | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
432 #ifdef FEAT_TEXT_PROP |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
433 // The popup menu is drawn over popup menus with zindex under |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
434 // POPUPMENU_ZINDEX. |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
435 screen_zindex = POPUPMENU_ZINDEX; |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
436 #endif |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
437 |
800 | 438 for (i = 0; i < pum_height; ++i) |
439 { | |
440 idx = i + pum_first; | |
441 attr = (idx == pum_selected) ? attr_select : attr_norm; | |
442 | |
443 /* prepend a space if there is room */ | |
1344 | 444 #ifdef FEAT_RIGHTLEFT |
445 if (curwin->w_p_rl) | |
446 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
447 if (pum_col < curwin->w_wincol + curwin->w_width - 1) |
1344 | 448 screen_putchar(' ', row, pum_col + 1, attr); |
449 } | |
450 else | |
451 #endif | |
452 if (pum_col > 0) | |
453 screen_putchar(' ', row, pum_col - 1, attr); | |
800 | 454 |
455 /* Display each entry, use two spaces for a Tab. | |
456 * Do this 3 times: For the main text, kind and extra info */ | |
457 col = pum_col; | |
458 totwidth = 0; | |
459 for (round = 1; round <= 3; ++round) | |
460 { | |
461 width = 0; | |
462 s = NULL; | |
463 switch (round) | |
464 { | |
465 case 1: p = pum_array[idx].pum_text; break; | |
466 case 2: p = pum_array[idx].pum_kind; break; | |
467 case 3: p = pum_array[idx].pum_extra; break; | |
468 } | |
469 if (p != NULL) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
470 for ( ; ; MB_PTR_ADV(p)) |
800 | 471 { |
472 if (s == NULL) | |
473 s = p; | |
474 w = ptr2cells(p); | |
475 if (*p == NUL || *p == TAB || totwidth + w > pum_width) | |
476 { | |
1097 | 477 /* Display the text that fits or comes before a Tab. |
478 * First convert it to printable characters. */ | |
1344 | 479 char_u *st; |
480 int saved = *p; | |
1097 | 481 |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
482 if (saved != NUL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
483 *p = NUL; |
1097 | 484 st = transstr(s); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
485 if (saved != NUL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
486 *p = saved; |
1344 | 487 #ifdef FEAT_RIGHTLEFT |
488 if (curwin->w_p_rl) | |
1097 | 489 { |
1344 | 490 if (st != NULL) |
491 { | |
492 char_u *rt = reverse_text(st); | |
493 | |
494 if (rt != NULL) | |
495 { | |
2056
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
496 char_u *rt_start = rt; |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
497 int size; |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
498 |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
499 size = vim_strsize(rt); |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
500 if (size > pum_width) |
1344 | 501 { |
2056
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
502 do |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
503 { |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
504 size -= has_mbyte |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
505 ? (*mb_ptr2cells)(rt) : 1; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
506 MB_PTR_ADV(rt); |
2056
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
507 } while (size > pum_width); |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
508 |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
509 if (size < pum_width) |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
510 { |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
511 /* Most left character requires |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
512 * 2-cells but only 1 cell is |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
513 * available on screen. Put a |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
514 * '<' on the left of the pum |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
515 * item */ |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
516 *(--rt) = '<'; |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
517 size++; |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
518 } |
1344 | 519 } |
2056
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
520 screen_puts_len(rt, (int)STRLEN(rt), |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
521 row, col - size + 1, attr); |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
1743
diff
changeset
|
522 vim_free(rt_start); |
1344 | 523 } |
524 vim_free(st); | |
525 } | |
526 col -= width; | |
527 } | |
528 else | |
529 #endif | |
530 { | |
531 if (st != NULL) | |
532 { | |
533 screen_puts_len(st, (int)STRLEN(st), row, col, | |
1097 | 534 attr); |
1344 | 535 vim_free(st); |
536 } | |
537 col += width; | |
1097 | 538 } |
800 | 539 |
540 if (*p != TAB) | |
541 break; | |
542 | |
543 /* Display two spaces for a Tab. */ | |
1344 | 544 #ifdef FEAT_RIGHTLEFT |
545 if (curwin->w_p_rl) | |
546 { | |
547 screen_puts_len((char_u *)" ", 2, row, col - 1, | |
548 attr); | |
549 col -= 2; | |
550 } | |
551 else | |
552 #endif | |
553 { | |
554 screen_puts_len((char_u *)" ", 2, row, col, attr); | |
555 col += 2; | |
556 } | |
800 | 557 totwidth += 2; |
558 s = NULL; /* start text at next char */ | |
559 width = 0; | |
560 } | |
561 else | |
562 width += w; | |
563 } | |
564 | |
565 if (round > 1) | |
566 n = pum_kind_width + 1; | |
567 else | |
568 n = 1; | |
569 | |
570 /* Stop when there is nothing more to display. */ | |
571 if (round == 3 | |
572 || (round == 2 && pum_array[idx].pum_extra == NULL) | |
573 || (round == 1 && pum_array[idx].pum_kind == NULL | |
574 && pum_array[idx].pum_extra == NULL) | |
575 || pum_base_width + n >= pum_width) | |
576 break; | |
1344 | 577 #ifdef FEAT_RIGHTLEFT |
578 if (curwin->w_p_rl) | |
579 { | |
580 screen_fill(row, row + 1, pum_col - pum_base_width - n + 1, | |
581 col + 1, ' ', ' ', attr); | |
582 col = pum_col - pum_base_width - n + 1; | |
583 } | |
584 else | |
585 #endif | |
586 { | |
587 screen_fill(row, row + 1, col, pum_col + pum_base_width + n, | |
800 | 588 ' ', ' ', attr); |
1344 | 589 col = pum_col + pum_base_width + n; |
590 } | |
800 | 591 totwidth = pum_base_width + n; |
592 } | |
593 | |
1344 | 594 #ifdef FEAT_RIGHTLEFT |
595 if (curwin->w_p_rl) | |
596 screen_fill(row, row + 1, pum_col - pum_width + 1, col + 1, ' ', | |
597 ' ', attr); | |
598 else | |
599 #endif | |
600 screen_fill(row, row + 1, col, pum_col + pum_width, ' ', ' ', | |
601 attr); | |
800 | 602 if (pum_scrollbar > 0) |
1344 | 603 { |
604 #ifdef FEAT_RIGHTLEFT | |
605 if (curwin->w_p_rl) | |
606 screen_putchar(' ', row, pum_col - pum_width, | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
607 i >= thumb_pos && i < thumb_pos + thumb_height |
800 | 608 ? attr_thumb : attr_scroll); |
1344 | 609 else |
610 #endif | |
611 screen_putchar(' ', row, pum_col + pum_width, | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15683
diff
changeset
|
612 i >= thumb_pos && i < thumb_pos + thumb_height |
1344 | 613 ? attr_thumb : attr_scroll); |
614 } | |
800 | 615 |
616 ++row; | |
617 } | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
618 |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
619 #ifdef FEAT_TEXT_PROP |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
620 screen_zindex = 0; |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16845
diff
changeset
|
621 #endif |
800 | 622 } |
623 | |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
624 #if defined(FEAT_TEXT_PROP) && defined(FEAT_QUICKFIX) |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
625 /* |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
626 * Position the info popup relative to the popup menu item. |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
627 */ |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
628 void |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
629 pum_position_info_popup(win_T *wp) |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
630 { |
18665
7369756d05de
patch 8.1.2324: with of scrollbar in popup menu not taken into account
Bram Moolenaar <Bram@vim.org>
parents:
18560
diff
changeset
|
631 int col = pum_col + pum_width + pum_scrollbar + 1; |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
632 int row = pum_row; |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
633 int botpos = POPPOS_BOTLEFT; |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
634 |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
635 wp->w_popup_pos = POPPOS_TOPLEFT; |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
636 if (Columns - col < 20 && Columns - col < pum_col) |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
637 { |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
638 col = pum_col - 1; |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
639 wp->w_popup_pos = POPPOS_TOPRIGHT; |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
640 botpos = POPPOS_BOTRIGHT; |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
641 wp->w_maxwidth = pum_col - 1; |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
642 } |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
643 else |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
644 wp->w_maxwidth = Columns - col + 1; |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
645 wp->w_maxwidth -= popup_extra_width(wp); |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
646 |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
647 row -= popup_top_extra(wp); |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
648 if (wp->w_popup_flags & POPF_INFO_MENU) |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
649 { |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
650 if (pum_row < pum_win_row) |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
651 { |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
652 // menu above cursor line, align with bottom |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
653 row += pum_height; |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
654 wp->w_popup_pos = botpos; |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
655 } |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
656 else |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
657 // menu below cursor line, align with top |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
658 row += 1; |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
659 } |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
660 else |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
661 // align with the selected item |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
662 row += pum_selected - pum_first + 1; |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
663 |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
664 popup_set_wantpos_rowcol(wp, row, col); |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
665 } |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
666 #endif |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
667 |
800 | 668 /* |
669 * Set the index of the currently selected item. The menu will scroll when | |
670 * necessary. When "n" is out of range don't scroll. | |
838 | 671 * This may be repeated when the preview window is used: |
672 * "repeat" == 0: open preview window normally | |
673 * "repeat" == 1: open preview window but don't set the size | |
674 * "repeat" == 2: don't open preview window | |
800 | 675 * Returns TRUE when the window was resized and the location of the popup menu |
676 * must be recomputed. | |
677 */ | |
678 static int | |
17813
8ca20b0a3dc3
patch 8.1.1903: cannot build without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
17811
diff
changeset
|
679 pum_set_selected(int n, int repeat UNUSED) |
800 | 680 { |
681 int resized = FALSE; | |
682 int context = pum_height / 2; | |
17799
87c5c07a4cac
patch 8.1.1896: compiler warning for unused variable
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
683 #ifdef FEAT_QUICKFIX |
17775
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
684 int prev_selected = pum_selected; |
17799
87c5c07a4cac
patch 8.1.1896: compiler warning for unused variable
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
685 #endif |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
686 #ifdef FEAT_TEXT_PROP |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
687 int has_info = FALSE; |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
688 #endif |
800 | 689 |
690 pum_selected = n; | |
691 | |
692 if (pum_selected >= 0 && pum_selected < pum_size) | |
693 { | |
694 if (pum_first > pum_selected - 4) | |
695 { | |
696 /* scroll down; when we did a jump it's probably a PageUp then | |
697 * scroll a whole page */ | |
698 if (pum_first > pum_selected - 2) | |
699 { | |
700 pum_first -= pum_height - 2; | |
701 if (pum_first < 0) | |
702 pum_first = 0; | |
703 else if (pum_first > pum_selected) | |
704 pum_first = pum_selected; | |
705 } | |
706 else | |
707 pum_first = pum_selected; | |
708 } | |
709 else if (pum_first < pum_selected - pum_height + 5) | |
710 { | |
711 /* scroll up; when we did a jump it's probably a PageDown then | |
712 * scroll a whole page */ | |
713 if (pum_first < pum_selected - pum_height + 1 + 2) | |
714 { | |
715 pum_first += pum_height - 2; | |
716 if (pum_first < pum_selected - pum_height + 1) | |
717 pum_first = pum_selected - pum_height + 1; | |
718 } | |
719 else | |
720 pum_first = pum_selected - pum_height + 1; | |
721 } | |
722 | |
723 /* Give a few lines of context when possible. */ | |
724 if (context > 3) | |
725 context = 3; | |
726 if (pum_height > 2) | |
727 { | |
728 if (pum_first > pum_selected - context) | |
729 { | |
730 /* scroll down */ | |
731 pum_first = pum_selected - context; | |
732 if (pum_first < 0) | |
733 pum_first = 0; | |
734 } | |
735 else if (pum_first < pum_selected + context - pum_height + 1) | |
736 { | |
737 /* scroll up */ | |
738 pum_first = pum_selected + context - pum_height + 1; | |
739 } | |
740 } | |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
741 // adjust for the number of lines displayed |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
742 if (pum_first > pum_size - pum_height) |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
743 pum_first = pum_size - pum_height; |
800 | 744 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
745 #if defined(FEAT_QUICKFIX) |
816 | 746 /* |
747 * Show extra info in the preview window if there is something and | |
18665
7369756d05de
patch 8.1.2324: with of scrollbar in popup menu not taken into account
Bram Moolenaar <Bram@vim.org>
parents:
18560
diff
changeset
|
748 * 'completeopt' contains "preview" or "popup" or "popuphidden". |
838 | 749 * Skip this when tried twice already. |
750 * Skip this also when there is not much room. | |
816 | 751 * NOTE: Be very careful not to sync undo! |
752 */ | |
800 | 753 if (pum_array[pum_selected].pum_info != NULL |
838 | 754 && Rows > 10 |
755 && repeat <= 1 | |
756 && vim_strchr(p_cot, 'p') != NULL) | |
800 | 757 { |
758 win_T *curwin_save = curwin; | |
12690
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
759 tabpage_T *curtab_save = curtab; |
800 | 760 int res = OK; |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
761 # ifdef FEAT_TEXT_PROP |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
762 use_popup_T use_popup; |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
763 # else |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
764 # define use_popup POPUP_NONE |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
765 # endif |
17950
bb0e25a8b5d7
patch 8.1.1971: manually enabling features causes build errors
Bram Moolenaar <Bram@vim.org>
parents:
17819
diff
changeset
|
766 # ifdef FEAT_TEXT_PROP |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
767 has_info = TRUE; |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
768 if (strstr((char *)p_cot, "popuphidden") != NULL) |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
769 use_popup = USEPOPUP_HIDDEN; |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
770 else if (strstr((char *)p_cot, "popup") != NULL) |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
771 use_popup = USEPOPUP_NORMAL; |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
772 else |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
773 use_popup = USEPOPUP_NONE; |
17950
bb0e25a8b5d7
patch 8.1.1971: manually enabling features causes build errors
Bram Moolenaar <Bram@vim.org>
parents:
17819
diff
changeset
|
774 # endif |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
775 // Open a preview window and set "curwin" to it. |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
776 // 3 lines by default, prefer 'previewheight' if set and smaller. |
800 | 777 g_do_tagpreview = 3; |
2622 | 778 if (p_pvh > 0 && p_pvh < g_do_tagpreview) |
779 g_do_tagpreview = p_pvh; | |
6043 | 780 ++RedrawingDisabled; |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
781 // Prevent undo sync here, if an autocommand syncs undo weird |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
782 // things can happen to the undo tree. |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
783 ++no_u_sync; |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
784 resized = prepare_tagpreview(FALSE, FALSE, use_popup); |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
785 --no_u_sync; |
6043 | 786 --RedrawingDisabled; |
800 | 787 g_do_tagpreview = 0; |
788 | |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
789 if (curwin->w_p_pvw |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
790 # ifdef FEAT_TEXT_PROP |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
791 || (curwin->w_popup_flags & POPF_INFO) |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
792 # endif |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
793 ) |
800 | 794 { |
10302
210af8588e8a
commit https://github.com/vim/vim/commit/50e5376926dc2ec4a26a7a16f8f0f3213c4afdf0
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
795 if (!resized |
210af8588e8a
commit https://github.com/vim/vim/commit/50e5376926dc2ec4a26a7a16f8f0f3213c4afdf0
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
796 && curbuf->b_nwindows == 1 |
210af8588e8a
commit https://github.com/vim/vim/commit/50e5376926dc2ec4a26a7a16f8f0f3213c4afdf0
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
797 && curbuf->b_fname == NULL |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16986
diff
changeset
|
798 && bt_nofile(curbuf) |
800 | 799 && curbuf->b_p_bh[0] == 'w') |
800 { | |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
801 // Already a "wipeout" buffer, make it empty. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10410
diff
changeset
|
802 while (!BUFEMPTY()) |
800 | 803 ml_delete((linenr_T)1, FALSE); |
804 } | |
825 | 805 else |
800 | 806 { |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
807 // Don't want to sync undo in the current buffer. |
825 | 808 ++no_u_sync; |
1743 | 809 res = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, 0, NULL); |
825 | 810 --no_u_sync; |
811 if (res == OK) | |
812 { | |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
813 // Edit a new, empty buffer. Set options for a "wipeout" |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
814 // buffer. |
825 | 815 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); |
816 set_option_value((char_u *)"bt", 0L, | |
817 (char_u *)"nofile", OPT_LOCAL); | |
818 set_option_value((char_u *)"bh", 0L, | |
819 (char_u *)"wipe", OPT_LOCAL); | |
820 set_option_value((char_u *)"diff", 0L, | |
1302 | 821 NULL, OPT_LOCAL); |
825 | 822 } |
800 | 823 } |
824 if (res == OK) | |
825 { | |
826 char_u *p, *e; | |
827 linenr_T lnum = 0; | |
828 | |
829 for (p = pum_array[pum_selected].pum_info; *p != NUL; ) | |
830 { | |
831 e = vim_strchr(p, '\n'); | |
832 if (e == NULL) | |
833 { | |
834 ml_append(lnum++, p, 0, FALSE); | |
835 break; | |
836 } | |
837 else | |
838 { | |
839 *e = NUL; | |
835 | 840 ml_append(lnum++, p, (int)(e - p + 1), FALSE); |
800 | 841 *e = '\n'; |
842 p = e + 1; | |
843 } | |
844 } | |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
845 // delete the empty last line |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
846 ml_delete(curbuf->b_ml.ml_line_count, FALSE); |
800 | 847 |
848 /* Increase the height of the preview window to show the | |
849 * text, but no more than 'previewheight' lines. */ | |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
850 if (repeat == 0 && use_popup == USEPOPUP_NONE) |
800 | 851 { |
838 | 852 if (lnum > p_pvh) |
853 lnum = p_pvh; | |
854 if (curwin->w_height < lnum) | |
855 { | |
856 win_setheight((int)lnum); | |
857 resized = TRUE; | |
858 } | |
800 | 859 } |
860 | |
861 curbuf->b_changed = 0; | |
862 curbuf->b_p_ma = FALSE; | |
17775
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
863 if (pum_selected != prev_selected) |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
864 { |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
865 # ifdef FEAT_TEXT_PROP |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
866 curwin->w_firstline = 1; |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
867 # endif |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
868 curwin->w_topline = 1; |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
869 } |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
870 else if (curwin->w_topline > curbuf->b_ml.ml_line_count) |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
871 curwin->w_topline = curbuf->b_ml.ml_line_count; |
b423bd231f33
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
872 curwin->w_cursor.lnum = curwin->w_topline; |
800 | 873 curwin->w_cursor.col = 0; |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
874 # ifdef FEAT_TEXT_PROP |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
875 if (use_popup != USEPOPUP_NONE) |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
876 { |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
877 pum_position_info_popup(curwin); |
17819
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
878 if (win_valid(curwin_save)) |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
879 redraw_win_later(curwin_save, SOME_VALID); |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
880 } |
1f74a3c600a3
patch 8.1.1906: info popup size is sometimes incorrect
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
881 # endif |
12690
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
882 if ((curwin != curwin_save && win_valid(curwin_save)) |
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
883 || (curtab != curtab_save |
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
884 && valid_tabpage(curtab_save))) |
800 | 885 { |
12690
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
886 if (curtab != curtab_save && valid_tabpage(curtab_save)) |
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
887 goto_tabpage_tp(curtab_save, FALSE, FALSE); |
fad36581f788
patch 8.0.1223: crash when using autocomplete and tab pages
Christian Brabandt <cb@256bit.org>
parents:
12566
diff
changeset
|
888 |
6089 | 889 /* When the first completion is done and the preview |
890 * window is not resized, skip the preview window's | |
891 * status line redrawing. */ | |
892 if (ins_compl_active() && !resized) | |
893 curwin->w_redr_status = FALSE; | |
894 | |
800 | 895 /* Return cursor to where we were */ |
896 validate_cursor(); | |
897 redraw_later(SOME_VALID); | |
898 | |
899 /* When the preview window was resized we need to | |
900 * update the view on the buffer. Only go back to | |
901 * the window when needed, otherwise it will always be | |
902 * redraw. */ | |
17706
431d52b7f7d3
patch 8.1.1850: focus may remain in popup window
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
903 if (resized && win_valid(curwin_save)) |
800 | 904 { |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
905 ++no_u_sync; |
800 | 906 win_enter(curwin_save, TRUE); |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
907 --no_u_sync; |
800 | 908 update_topline(); |
909 } | |
910 | |
911 /* Update the screen before drawing the popup menu. | |
912 * Enable updating the status lines. */ | |
913 pum_do_redraw = TRUE; | |
914 update_screen(0); | |
915 pum_do_redraw = FALSE; | |
916 | |
816 | 917 if (!resized && win_valid(curwin_save)) |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
918 { |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
919 # ifdef FEAT_TEXT_PROP |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
920 win_T *wp = curwin; |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
921 # endif |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
922 ++no_u_sync; |
800 | 923 win_enter(curwin_save, TRUE); |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
924 --no_u_sync; |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
925 # ifdef FEAT_TEXT_PROP |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
926 if (use_popup == USEPOPUP_HIDDEN && win_valid(wp)) |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
927 popup_hide(wp); |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
928 # endif |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
6089
diff
changeset
|
929 } |
800 | 930 |
931 /* May need to update the screen again when there are | |
932 * autocommands involved. */ | |
933 pum_do_redraw = TRUE; | |
934 update_screen(0); | |
935 pum_do_redraw = FALSE; | |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
936 call_update_screen = FALSE; |
800 | 937 } |
938 } | |
939 } | |
17799
87c5c07a4cac
patch 8.1.1896: compiler warning for unused variable
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
940 # if defined(FEAT_TEXT_PROP) && defined(FEAT_QUICKFIX) |
17706
431d52b7f7d3
patch 8.1.1850: focus may remain in popup window
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
941 if (WIN_IS_POPUP(curwin)) |
431d52b7f7d3
patch 8.1.1850: focus may remain in popup window
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
942 // can't keep focus in a popup window |
431d52b7f7d3
patch 8.1.1850: focus may remain in popup window
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
943 win_enter(firstwin, TRUE); |
431d52b7f7d3
patch 8.1.1850: focus may remain in popup window
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
944 # endif |
800 | 945 } |
946 #endif | |
947 } | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
948 #if defined(FEAT_TEXT_PROP) && defined(FEAT_QUICKFIX) |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
949 if (!has_info) |
17817
e8a7029efa40
patch 8.1.1905: cannot set all properties of the info popup
Bram Moolenaar <Bram@vim.org>
parents:
17815
diff
changeset
|
950 // hide any popup info window |
e8a7029efa40
patch 8.1.1905: cannot set all properties of the info popup
Bram Moolenaar <Bram@vim.org>
parents:
17815
diff
changeset
|
951 popup_hide_info(); |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
952 #endif |
800 | 953 |
954 if (!resized) | |
955 pum_redraw(); | |
956 | |
957 return resized; | |
958 } | |
959 | |
960 /* | |
961 * Undisplay the popup menu (later). | |
962 */ | |
963 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
964 pum_undisplay(void) |
800 | 965 { |
966 pum_array = NULL; | |
13944
ddf02a93796f
patch 8.0.1842: popup menu inside terminal window isn't cleared
Christian Brabandt <cb@256bit.org>
parents:
13427
diff
changeset
|
967 redraw_all_later(NOT_VALID); |
940 | 968 redraw_tabline = TRUE; |
800 | 969 status_redraw_all(); |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
970 #if defined(FEAT_TEXT_PROP) && defined(FEAT_QUICKFIX) |
17817
e8a7029efa40
patch 8.1.1905: cannot set all properties of the info popup
Bram Moolenaar <Bram@vim.org>
parents:
17815
diff
changeset
|
971 // hide any popup info window |
e8a7029efa40
patch 8.1.1905: cannot set all properties of the info popup
Bram Moolenaar <Bram@vim.org>
parents:
17815
diff
changeset
|
972 popup_hide_info(); |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17706
diff
changeset
|
973 #endif |
800 | 974 } |
975 | |
976 /* | |
977 * Clear the popup menu. Currently only resets the offset to the first | |
978 * displayed item. | |
979 */ | |
980 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
981 pum_clear(void) |
800 | 982 { |
983 pum_first = 0; | |
984 } | |
985 | |
986 /* | |
987 * Return TRUE if the popup menu is displayed. | |
988 * Overruled when "pum_do_redraw" is set, used to redraw the status lines. | |
989 */ | |
990 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
991 pum_visible(void) |
800 | 992 { |
993 return !pum_do_redraw && pum_array != NULL; | |
994 } | |
995 | |
996 /* | |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
997 * Reposition the popup menu to adjust for window layout changes. |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
998 */ |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
999 void |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1000 pum_may_redraw(void) |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1001 { |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1002 pumitem_T *array = pum_array; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1003 int len = pum_size; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1004 int selected = pum_selected; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1005 |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1006 if (!pum_visible() || pum_skip_redraw) |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1007 return; // nothing to do |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1008 |
14095
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1009 if (pum_window != curwin |
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1010 || (pum_win_row == curwin->w_wrow + W_WINROW(curwin) |
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1011 && pum_win_height == curwin->w_height |
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1012 && pum_win_col == curwin->w_wincol |
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1013 && pum_win_width == curwin->w_width)) |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1014 { |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1015 // window position didn't change, redraw in the same position |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1016 pum_redraw(); |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1017 } |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1018 else |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1019 { |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1020 int wcol = curwin->w_wcol; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1021 |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1022 // Window layout changed, recompute the position. |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1023 // Use the remembered w_wcol value, the cursor may have moved when a |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1024 // completion was inserted, but we want the menu in the same position. |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1025 pum_undisplay(); |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1026 curwin->w_wcol = pum_win_wcol; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1027 curwin->w_valid |= VALID_WCOL; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1028 pum_display(array, len, selected); |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1029 curwin->w_wcol = wcol; |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1030 } |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1031 } |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1032 |
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13944
diff
changeset
|
1033 /* |
800 | 1034 * Return the height of the popup menu, the number of entries visible. |
1035 * Only valid when pum_visible() returns TRUE! | |
1036 */ | |
1037 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1038 pum_get_height(void) |
800 | 1039 { |
1040 return pum_height; | |
1041 } | |
1042 | |
17813
8ca20b0a3dc3
patch 8.1.1903: cannot build without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
17811
diff
changeset
|
1043 #if defined(FEAT_EVAL) || defined(PROTO) |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1044 /* |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1045 * Add size information about the pum to "dict". |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1046 */ |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1047 void |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1048 pum_set_event_info(dict_T *dict) |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1049 { |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1050 if (!pum_visible()) |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1051 return; |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1052 dict_add_number(dict, "height", pum_height); |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1053 dict_add_number(dict, "width", pum_width); |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1054 dict_add_number(dict, "row", pum_row); |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1055 dict_add_number(dict, "col", pum_col); |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1056 dict_add_number(dict, "size", pum_size); |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1057 dict_add_special(dict, "scrollbar", pum_scrollbar ? VVAL_TRUE : VVAL_FALSE); |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1058 } |
17813
8ca20b0a3dc3
patch 8.1.1903: cannot build without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
17811
diff
changeset
|
1059 #endif |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1060 |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1061 #if defined(FEAT_BEVAL_TERM) || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO) |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1062 static void |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1063 pum_position_at_mouse(int min_width) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1064 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1065 if (Rows - mouse_row > pum_size) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1066 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1067 /* Enough space below the mouse row. */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1068 pum_row = mouse_row + 1; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1069 if (pum_height > Rows - pum_row) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1070 pum_height = Rows - pum_row; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1071 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1072 else |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1073 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1074 /* Show above the mouse row, reduce height if it does not fit. */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1075 pum_row = mouse_row - pum_size; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1076 if (pum_row < 0) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1077 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1078 pum_height += pum_row; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1079 pum_row = 0; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1080 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1081 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1082 if (Columns - mouse_col >= pum_base_width |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1083 || Columns - mouse_col > min_width) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1084 /* Enough space to show at mouse column. */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1085 pum_col = mouse_col; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1086 else |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1087 /* Not enough space, right align with window. */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1088 pum_col = Columns - (pum_base_width > min_width |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1089 ? min_width : pum_base_width); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1090 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1091 pum_width = Columns - pum_col; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1092 if (pum_width > pum_base_width + 1) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1093 pum_width = pum_base_width + 1; |
14095
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1094 |
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1095 // Do not redraw at cursor position. |
f452c4aeb837
patch 8.1.0065: balloon displayed at the wrong position
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
1096 pum_window = NULL; |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1097 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1098 |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1099 #endif |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1100 |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1101 #if defined(FEAT_BEVAL_TERM) || defined(PROTO) |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1102 static pumitem_T *balloon_array = NULL; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1103 static int balloon_arraysize; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1104 |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1105 # define BALLOON_MIN_WIDTH 50 |
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1106 # define BALLOON_MIN_HEIGHT 10 |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1107 |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1108 typedef struct { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1109 char_u *start; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1110 int bytelen; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1111 int cells; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1112 int indent; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1113 } balpart_T; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1114 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1115 /* |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1116 * Split a string into parts to display in the balloon. |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1117 * Aimed at output from gdb. Attempts to split at white space, preserve quoted |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1118 * strings and make a struct look good. |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1119 * Resulting array is stored in "array" and returns the size of the array. |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1120 */ |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1121 int |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1122 split_message(char_u *mesg, pumitem_T **array) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1123 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1124 garray_T ga; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1125 char_u *p; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1126 balpart_T *item; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1127 int quoted = FALSE; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1128 int height; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1129 int line; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1130 int item_idx; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1131 int indent = 0; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1132 int max_cells = 0; |
18560
81272918c0ea
patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
1133 int max_height = Rows / 2 - 1; |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1134 int long_item_count = 0; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1135 int split_long_items = FALSE; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1136 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1137 ga_init2(&ga, sizeof(balpart_T), 20); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1138 p = mesg; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1139 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1140 while (*p != NUL) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1141 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1142 if (ga_grow(&ga, 1) == FAIL) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1143 goto failed; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1144 item = ((balpart_T *)ga.ga_data) + ga.ga_len; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1145 item->start = p; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1146 item->indent = indent; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1147 item->cells = indent * 2; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1148 ++ga.ga_len; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1149 while (*p != NUL) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1150 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1151 if (*p == '"') |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1152 quoted = !quoted; |
18560
81272918c0ea
patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
1153 else if (*p == '\n') |
81272918c0ea
patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
1154 break; |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1155 else if (*p == '\\' && p[1] != NUL) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1156 ++p; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1157 else if (!quoted) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1158 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1159 if ((*p == ',' && p[1] == ' ') || *p == '{' || *p == '}') |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1160 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1161 /* Looks like a good point to break. */ |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1162 if (*p == '{') |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1163 ++indent; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1164 else if (*p == '}' && indent > 0) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1165 --indent; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1166 ++item->cells; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1167 p = skipwhite(p + 1); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1168 break; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1169 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1170 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1171 item->cells += ptr2cells(p); |
18251
c8a53c0daeed
patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
1172 p += mb_ptr2len(p); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1173 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1174 item->bytelen = p - item->start; |
18560
81272918c0ea
patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
1175 if (*p == '\n') |
81272918c0ea
patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
1176 ++p; |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1177 if (item->cells > max_cells) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1178 max_cells = item->cells; |
12940
5045d3076db0
patch 8.0.1346: crash when passing 50 char string to balloon_split()
Christian Brabandt <cb@256bit.org>
parents:
12883
diff
changeset
|
1179 long_item_count += (item->cells - 1) / BALLOON_MIN_WIDTH; |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1180 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1181 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1182 height = 2 + ga.ga_len; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1183 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1184 /* If there are long items and the height is below the limit: split lines */ |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1185 if (long_item_count > 0 && height + long_item_count <= max_height) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1186 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1187 split_long_items = TRUE; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1188 height += long_item_count; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1189 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1190 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1191 /* Limit to half the window height, it has to fit above or below the mouse |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1192 * position. */ |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1193 if (height > max_height) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1194 height = max_height; |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1195 *array = ALLOC_CLEAR_MULT(pumitem_T, height); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1196 if (*array == NULL) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1197 goto failed; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1198 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1199 /* Add an empty line above and below, looks better. */ |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1200 (*array)->pum_text = vim_strsave((char_u *)""); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1201 (*array + height - 1)->pum_text = vim_strsave((char_u *)""); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1202 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1203 for (line = 1, item_idx = 0; line < height - 1; ++item_idx) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1204 { |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1205 int skip; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1206 int thislen; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1207 int copylen; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1208 int ind; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1209 int cells; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1210 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1211 item = ((balpart_T *)ga.ga_data) + item_idx; |
18667
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1212 if (item->bytelen == 0) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1213 (*array)[line++].pum_text = vim_strsave((char_u *)""); |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1214 else |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1215 for (skip = 0; skip < item->bytelen; skip += thislen) |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16268
diff
changeset
|
1216 { |
18667
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1217 if (split_long_items && item->cells >= BALLOON_MIN_WIDTH) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1218 { |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1219 cells = item->indent * 2; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1220 for (p = item->start + skip; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1221 p < item->start + item->bytelen; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1222 p += mb_ptr2len(p)) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1223 if ((cells += ptr2cells(p)) > BALLOON_MIN_WIDTH) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1224 break; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1225 thislen = p - (item->start + skip); |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1226 } |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1227 else |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1228 thislen = item->bytelen; |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1229 |
18667
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1230 // put indent at the start |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1231 p = alloc(thislen + item->indent * 2 + 1); |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1232 if (p == NULL) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1233 { |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1234 for (line = 0; line <= height - 1; ++line) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1235 vim_free((*array)[line].pum_text); |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1236 vim_free(*array); |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1237 goto failed; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1238 } |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1239 for (ind = 0; ind < item->indent * 2; ++ind) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1240 p[ind] = ' '; |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1241 |
18667
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1242 // exclude spaces at the end of the string |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1243 for (copylen = thislen; copylen > 0; --copylen) |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1244 if (item->start[skip + copylen - 1] != ' ') |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1245 break; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1246 |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1247 vim_strncpy(p + ind, item->start + skip, copylen); |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1248 (*array)[line].pum_text = p; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1249 item->indent = 0; /* wrapped line has no indent */ |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1250 ++line; |
de350001150c
patch 8.1.2325: crash when using balloon with empty line
Bram Moolenaar <Bram@vim.org>
parents:
18665
diff
changeset
|
1251 } |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1252 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1253 ga_clear(&ga); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1254 return height; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1255 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1256 failed: |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1257 ga_clear(&ga); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1258 return 0; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1259 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1260 |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1261 void |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1262 ui_remove_balloon(void) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1263 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1264 if (balloon_array != NULL) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1265 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1266 pum_undisplay(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1267 while (balloon_arraysize > 0) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1268 vim_free(balloon_array[--balloon_arraysize].pum_text); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13242
diff
changeset
|
1269 VIM_CLEAR(balloon_array); |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1270 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1271 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1272 |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1273 /* |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1274 * Terminal version of a balloon, uses the popup menu code. |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1275 */ |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1276 void |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1277 ui_post_balloon(char_u *mesg, list_T *list) |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1278 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1279 ui_remove_balloon(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1280 |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1281 if (mesg == NULL && list == NULL) |
16600
ff3c99bd1038
patch 8.1.1303: not possible to hide a balloon
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1282 { |
ff3c99bd1038
patch 8.1.1303: not possible to hide a balloon
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1283 pum_undisplay(); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1284 return; |
16600
ff3c99bd1038
patch 8.1.1303: not possible to hide a balloon
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1285 } |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1286 if (list != NULL) |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1287 { |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1288 listitem_T *li; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1289 int idx; |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1290 |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1291 balloon_arraysize = list->lv_len; |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1292 balloon_array = ALLOC_CLEAR_MULT(pumitem_T, list->lv_len); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1293 if (balloon_array == NULL) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1294 return; |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1295 for (idx = 0, li = list->lv_first; li != NULL; li = li->li_next, ++idx) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1296 { |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15087
diff
changeset
|
1297 char_u *text = tv_get_string_chk(&li->li_tv); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1298 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1299 balloon_array[idx].pum_text = vim_strsave( |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1300 text == NULL ? (char_u *)"" : text); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1301 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1302 } |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1303 else |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1304 balloon_arraysize = split_message(mesg, &balloon_array); |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1305 |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1306 if (balloon_arraysize > 0) |
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1307 { |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1308 pum_array = balloon_array; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1309 pum_size = balloon_arraysize; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1310 pum_compute_size(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1311 pum_scrollbar = 0; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1312 pum_height = balloon_arraysize; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1313 |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1314 pum_position_at_mouse(BALLOON_MIN_WIDTH); |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1315 pum_selected = -1; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1316 pum_first = 0; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1317 pum_redraw(); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1318 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1319 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1320 |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1321 /* |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1322 * Called when the mouse moved, may remove any displayed balloon. |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1323 */ |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1324 void |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1325 ui_may_remove_balloon(void) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1326 { |
17292
8a095d343c59
patch 8.1.1645: cannot use a popup window for a balloon
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
1327 // For now: remove the balloon whenever the mouse moves to another screen |
8a095d343c59
patch 8.1.1645: cannot use a popup window for a balloon
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
1328 // cell. |
8a095d343c59
patch 8.1.1645: cannot use a popup window for a balloon
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
1329 ui_remove_balloon(); |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12690
diff
changeset
|
1330 } |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1331 #endif |
13234
6e972d830e13
patch 8.0.1491: the minimum width of the popup menu is hard coded
Christian Brabandt <cb@256bit.org>
parents:
12940
diff
changeset
|
1332 |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1333 #if defined(FEAT_TERM_POPUP_MENU) || defined(PROTO) |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1334 /* |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1335 * Select the pum entry at the mouse position. |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1336 */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1337 static void |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1338 pum_select_mouse_pos(void) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1339 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1340 int idx = mouse_row - pum_row; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1341 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1342 if (idx < 0 || idx >= pum_size) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1343 pum_selected = -1; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1344 else if (*pum_array[idx].pum_text != NUL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1345 pum_selected = idx; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1346 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1347 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1348 /* |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1349 * Execute the currently selected popup menu item. |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1350 */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1351 static void |
13400
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13392
diff
changeset
|
1352 pum_execute_menu(vimmenu_T *menu, int mode) |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1353 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1354 vimmenu_T *mp; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1355 int idx = 0; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1356 exarg_T ea; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1357 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1358 for (mp = menu->children; mp != NULL; mp = mp->next) |
13400
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13392
diff
changeset
|
1359 if ((mp->modes & mp->enabled & mode) && idx++ == pum_selected) |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1360 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1361 vim_memset(&ea, 0, sizeof(ea)); |
14952
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14685
diff
changeset
|
1362 execute_menu(&ea, mp, -1); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1363 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1364 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1365 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1366 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1367 /* |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1368 * Open the terminal version of the popup menu and don't return until it is |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1369 * closed. |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1370 */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1371 void |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1372 pum_show_popupmenu(vimmenu_T *menu) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1373 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1374 vimmenu_T *mp; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1375 int idx = 0; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1376 pumitem_T *array; |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1377 # ifdef FEAT_BEVAL_TERM |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1378 int save_bevalterm = p_bevalterm; |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1379 # endif |
13392
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1380 int mode; |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1381 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1382 pum_undisplay(); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1383 pum_size = 0; |
13392
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1384 mode = get_menu_mode_flag(); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1385 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1386 for (mp = menu->children; mp != NULL; mp = mp->next) |
13392
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1387 if (menu_is_separator(mp->dname) |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1388 || (mp->modes & mp->enabled & mode)) |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1389 ++pum_size; |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1390 |
15375
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1391 // When there are only Terminal mode menus, using "popup Edit" results in |
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1392 // pum_size being zero. |
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1393 if (pum_size <= 0) |
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1394 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15375
diff
changeset
|
1395 emsg(e_menuothermode); |
15375
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1396 return; |
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1397 } |
6012cc6936f7
patch 8.1.0695: internal error when using :popup
Bram Moolenaar <Bram@vim.org>
parents:
15324
diff
changeset
|
1398 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1399 array = ALLOC_CLEAR_MULT(pumitem_T, pum_size); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1400 if (array == NULL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1401 return; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1402 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1403 for (mp = menu->children; mp != NULL; mp = mp->next) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1404 if (menu_is_separator(mp->dname)) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1405 array[idx++].pum_text = (char_u *)""; |
13392
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1406 else if (mp->modes & mp->enabled & mode) |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1407 array[idx++].pum_text = mp->dname; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1408 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1409 pum_array = array; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1410 pum_compute_size(); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1411 pum_scrollbar = 0; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1412 pum_height = pum_size; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1413 pum_position_at_mouse(20); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1414 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1415 pum_selected = -1; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1416 pum_first = 0; |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1417 # ifdef FEAT_BEVAL_TERM |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1418 p_bevalterm = TRUE; /* track mouse movement */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1419 mch_setmouse(TRUE); |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1420 # endif |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1421 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1422 for (;;) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1423 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1424 int c; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1425 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1426 pum_redraw(); |
13400
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13392
diff
changeset
|
1427 setcursor_mayforce(TRUE); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1428 out_flush(); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1429 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1430 c = vgetc(); |
16845
d4c50bca8dbc
patch 8.1.1424: crash when popup menu is deleted while waiting for char
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1431 |
d4c50bca8dbc
patch 8.1.1424: crash when popup menu is deleted while waiting for char
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1432 // Bail out when typing Esc, CTRL-C or some callback closed the popup |
d4c50bca8dbc
patch 8.1.1424: crash when popup menu is deleted while waiting for char
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1433 // menu. |
d4c50bca8dbc
patch 8.1.1424: crash when popup menu is deleted while waiting for char
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1434 if (c == ESC || c == Ctrl_C || pum_array == NULL) |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1435 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1436 else if (c == CAR || c == NL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1437 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1438 /* enter: select current item, if any, and close */ |
13400
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13392
diff
changeset
|
1439 pum_execute_menu(menu, mode); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1440 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1441 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1442 else if (c == 'k' || c == K_UP || c == K_MOUSEUP) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1443 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1444 /* cursor up: select previous item */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1445 while (pum_selected > 0) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1446 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1447 --pum_selected; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1448 if (*array[pum_selected].pum_text != NUL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1449 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1450 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1451 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1452 else if (c == 'j' || c == K_DOWN || c == K_MOUSEDOWN) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1453 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1454 /* cursor down: select next item */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1455 while (pum_selected < pum_size - 1) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1456 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1457 ++pum_selected; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1458 if (*array[pum_selected].pum_text != NUL) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1459 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1460 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1461 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1462 else if (c == K_RIGHTMOUSE) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1463 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1464 /* Right mouse down: reposition the menu. */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1465 vungetc(c); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1466 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1467 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1468 else if (c == K_LEFTDRAG || c == K_RIGHTDRAG || c == K_MOUSEMOVE) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1469 { |
13427
b85526d90aba
patch 8.0.1588: popup menu hangs after typing CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
13400
diff
changeset
|
1470 /* mouse moved: select item in the mouse row */ |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1471 pum_select_mouse_pos(); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1472 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1473 else if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM || c == K_RIGHTRELEASE) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1474 { |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1475 /* left mouse click: select clicked item, if any, and close; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1476 * right mouse release: select clicked item, close if any */ |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1477 pum_select_mouse_pos(); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1478 if (pum_selected >= 0) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1479 { |
13400
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13392
diff
changeset
|
1480 pum_execute_menu(menu, mode); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1481 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1482 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1483 if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM) |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1484 break; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1485 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1486 } |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1487 |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1488 vim_free(array); |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1489 pum_undisplay(); |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1490 # ifdef FEAT_BEVAL_TERM |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1491 p_bevalterm = save_bevalterm; |
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1492 mch_setmouse(TRUE); |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17799
diff
changeset
|
1493 # endif |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1494 } |
13392
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1495 |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1496 void |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1497 pum_make_popup(char_u *path_name, int use_mouse_pos) |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1498 { |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1499 vimmenu_T *menu; |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1500 |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1501 if (!use_mouse_pos) |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1502 { |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1503 /* Hack: set mouse position at the cursor so that the menu pops up |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1504 * around there. */ |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1505 mouse_row = curwin->w_winrow + curwin->w_wrow; |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1506 mouse_col = curwin->w_wincol + curwin->w_wcol; |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1507 } |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1508 |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1509 menu = gui_find_menu(path_name); |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1510 if (menu != NULL) |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1511 pum_show_popupmenu(menu); |
d5347779fb20
patch 8.0.1570: can't use :popup for a menu in the terminal
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1512 } |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
13331
diff
changeset
|
1513 #endif |