comparison src/proto/popupmenu.pro @ 18174:1ec6539cef68 v8.1.2082

patch 8.1.2082: some files have a weird name to fit in 8.3 characters Commit: https://github.com/vim/vim/commit/30e8e73506e4522ef4aebf7d525c0e6ffe8805fd Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 27 13:08:36 2019 +0200 patch 8.1.2082: some files have a weird name to fit in 8.3 characters Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Sep 2019 13:15:03 +0200
parents
children 9b6bfce90778
comparison
equal deleted inserted replaced
18173:f046fb05b08f 18174:1ec6539cef68
1 /* popupmnu.c */
2 void pum_display(pumitem_T *array, int size, int selected);
3 void pum_call_update_screen(void);
4 int pum_under_menu(int row, int col);
5 void pum_redraw(void);
6 void pum_undisplay(void);
7 void pum_clear(void);
8 int pum_visible(void);
9 void pum_may_redraw(void);
10 int pum_get_height(void);
11 void pum_set_event_info(dict_T *dict);
12 int split_message(char_u *mesg, pumitem_T **array);
13 void ui_remove_balloon(void);
14 void ui_post_balloon(char_u *mesg, list_T *list);
15 void ui_may_remove_balloon(void);
16 void pum_show_popupmenu(vimmenu_T *menu);
17 void pum_make_popup(char_u *path_name, int use_mouse_pos);
18 /* vim: set ft=c : */