diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-02 23:13:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-02 23:13:53 +0200 |
commit | d529ba58dc7566833546e4beb5c4c50d8b78816a (patch) | |
tree | 5ad57b5229039d76e0ae4ede7d21c5be9a1ddd05 /src/structs.h | |
parent | 8531dc66e8da1cb4d944d5b447f6f05e8c91401f (diff) | |
download | vim-git-8.1.1617.tar.gz |
patch 8.1.1617: no test for popup window with mask and position fixedv8.1.1617
Problem: No test for popup window with mask and position fixed.
Solution: Add a couple of screenshots. Fix deteced problems.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index b579de3f5..c3d75bdde 100644 --- a/src/structs.h +++ b/src/structs.h @@ -2916,6 +2916,9 @@ struct window_S int w_popup_border[4]; // popup border top/right/bot/left char_u *w_border_highlight[4]; // popup border highlight int w_border_char[8]; // popup border characters + + int w_popup_leftoff; // columns left of the screen + int w_popup_rightoff; // columns right of the screen varnumber_T w_popup_last_changedtick; // b:changedtick when position was // computed callback_T w_close_cb; // popup close callback @@ -2927,8 +2930,8 @@ struct window_S colnr_T w_popup_maxcol; // close popup if cursor after this col int w_popup_drag; // allow moving the popup with the mouse popclose_T w_popup_close; // allow closing the popup with the mouse - list_T *w_popup_mask; // list of lists for "mask" + list_T *w_popup_mask; // list of lists for "mask" # if defined(FEAT_TIMERS) timer_T *w_popup_timer; // timer for closing popup window # endif |