view src/proto/popupmenu.pro @ 19756:fe90a71a3fed v8.2.0434

patch 8.2.0434: MS-Windows with VTP: Normal color not working Commit: https://github.com/vim/vim/commit/a8bd3496380ceb32e544dfe39cb4d52e4943068c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 23 21:45:29 2020 +0100 patch 8.2.0434: MS-Windows with VTP: Normal color not working Problem: MS-Windows with VTP: Normal color not working. Solution: After changing the Normal color update the VTP console color. (Nobuhiro Takasaki, closes #5836)
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Mar 2020 22:00:05 +0100
parents ba5d8c5d77d7
children a878e5e892cf
line wrap: on
line source

/* popupmenu.c */
void pum_display(pumitem_T *array, int size, int selected);
void pum_call_update_screen(void);
int pum_under_menu(int row, int col);
void pum_redraw(void);
void pum_position_info_popup(win_T *wp);
void pum_undisplay(void);
void pum_clear(void);
int pum_visible(void);
void pum_may_redraw(void);
int pum_get_height(void);
void pum_set_event_info(dict_T *dict);
int split_message(char_u *mesg, pumitem_T **array);
void ui_remove_balloon(void);
void ui_post_balloon(char_u *mesg, list_T *list);
void ui_may_remove_balloon(void);
void pum_show_popupmenu(vimmenu_T *menu);
void pum_make_popup(char_u *path_name, int use_mouse_pos);
/* vim: set ft=c : */