Mercurial > vim
annotate src/proto/popupmnu.pro @ 16780:491c01280a5d v8.1.1392
patch 8.1.1392: build failure in tiny version
commit https://github.com/vim/vim/commit/682725c1415f50681877df60257115a966e2a3d4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 25 20:10:37 2019 +0200
patch 8.1.1392: build failure in tiny version
Problem: Build failure in tiny version.
Solution: Define ex_popupclear to ex_ni if not implemented. Add UNUSED.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 25 May 2019 20:15:04 +0200 |
parents | 0f65f2808470 |
children | 1ec6539cef68 |
rev | line source |
---|---|
799 | 1 /* popupmnu.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1121
diff
changeset
|
2 void pum_display(pumitem_T *array, int size, int selected); |
15521
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
14089
diff
changeset
|
3 void pum_call_update_screen(void); |
6d949e552e99
patch 8.1.0768: updating completions may cause the popup menu to flicker
Bram Moolenaar <Bram@vim.org>
parents:
14089
diff
changeset
|
4 int pum_under_menu(int row, int col); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1121
diff
changeset
|
5 void pum_redraw(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1121
diff
changeset
|
6 void pum_undisplay(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1121
diff
changeset
|
7 void pum_clear(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1121
diff
changeset
|
8 int pum_visible(void); |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
9 void pum_may_redraw(void); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1121
diff
changeset
|
10 int pum_get_height(void); |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
11 void pum_set_event_info(dict_T *dict); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
12 int split_message(char_u *mesg, pumitem_T **array); |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
13 void ui_remove_balloon(void); |
12883
058e93aee621
patch 8.0.1318: terminal balloon only shows one line
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
14 void 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:
7668
diff
changeset
|
15 void ui_may_remove_balloon(void); |
13369
244ff1b6d2ad
patch 8.0.1558: no right-click menu in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12883
diff
changeset
|
16 void pum_show_popupmenu(vimmenu_T *menu); |
13963 | 17 void pum_make_popup(char_u *path_name, int use_mouse_pos); |
799 | 18 /* vim: set ft=c : */ |