comparison src/proto/popupwin.pro @ 17767:c75da1064e33 v8.1.1880

patch 8.1.1880: cannot show extra info for completion in a popup window commit https://github.com/vim/vim/commit/576a4a6ff14da876d7c4418e5f27e926fcfa8d2a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 18 15:25:17 2019 +0200 patch 8.1.1880: cannot show extra info for completion in a popup window Problem: Cannot show extra info for completion in a popup window. Solution: Add the "popup" entry in 'completeopt'.
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Aug 2019 15:30:06 +0200
parents 506dd2efcbb2
children 4bd21046902b
comparison
equal deleted inserted replaced
17766:be00d5dad3f5 17767:c75da1064e33
6 void popup_set_firstline(win_T *wp); 6 void popup_set_firstline(win_T *wp);
7 int popup_is_in_scrollbar(win_T *wp, int row, int col); 7 int popup_is_in_scrollbar(win_T *wp, int row, int col);
8 void popup_handle_scrollbar_click(win_T *wp, int row, int col); 8 void popup_handle_scrollbar_click(win_T *wp, int row, int col);
9 int popup_height(win_T *wp); 9 int popup_height(win_T *wp);
10 int popup_width(win_T *wp); 10 int popup_width(win_T *wp);
11 int popup_extra_width(win_T *wp);
11 void popup_adjust_position(win_T *wp); 12 void popup_adjust_position(win_T *wp);
12 int parse_previewpopup(win_T *wp); 13 int parse_previewpopup(win_T *wp);
13 void popup_set_wantpos(win_T *wp, int width); 14 void popup_set_wantpos_cursor(win_T *wp, int width);
15 void popup_set_wantpos_rowcol(win_T *wp, int row, int col);
14 void f_popup_clear(typval_T *argvars, typval_T *rettv); 16 void f_popup_clear(typval_T *argvars, typval_T *rettv);
15 void f_popup_create(typval_T *argvars, typval_T *rettv); 17 void f_popup_create(typval_T *argvars, typval_T *rettv);
16 void f_popup_atcursor(typval_T *argvars, typval_T *rettv); 18 void f_popup_atcursor(typval_T *argvars, typval_T *rettv);
17 void f_popup_beval(typval_T *argvars, typval_T *rettv); 19 void f_popup_beval(typval_T *argvars, typval_T *rettv);
18 void popup_close_for_mouse_click(win_T *wp); 20 void popup_close_for_mouse_click(win_T *wp);
42 void popup_check_cursor_pos(void); 44 void popup_check_cursor_pos(void);
43 void may_update_popup_mask(int type); 45 void may_update_popup_mask(int type);
44 void update_popups(void (*win_update)(win_T *wp)); 46 void update_popups(void (*win_update)(win_T *wp));
45 int set_ref_in_popups(int copyID); 47 int set_ref_in_popups(int copyID);
46 win_T *popup_find_preview_window(void); 48 win_T *popup_find_preview_window(void);
49 int popup_is_popup(win_T *wp);
50 win_T *popup_find_info_window(void);
47 void f_popup_getpreview(typval_T *argvars, typval_T *rettv); 51 void f_popup_getpreview(typval_T *argvars, typval_T *rettv);
48 int popup_is_popup(win_T *wp); 52 int popup_create_preview_window(int info);
49 int popup_create_preview_window(void); 53 void popup_close_preview(int info);
50 void popup_close_preview(void);
51 void popup_set_title(win_T *wp); 54 void popup_set_title(win_T *wp);
52 void popup_update_preview_title(void); 55 void popup_update_preview_title(void);
53 /* vim: set ft=c : */ 56 /* vim: set ft=c : */