diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-01 17:13:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-01 17:13:36 +0200 |
commit | bf0eff0b724ebf4951f7ca82e6c648451f9f0c01 (patch) | |
tree | 3be6478692b535abb96b8fe3963137e15581b206 /src/structs.h | |
parent | 2d247849ce612050ba1085df806746b23be1f0a3 (diff) | |
download | vim-git-bf0eff0b724ebf4951f7ca82e6c648451f9f0c01.tar.gz |
patch 8.1.1441: popup window filter not yet implementedv8.1.1441
Problem: Popup window filter not yet implemented.
Solution: Implement the popup filter.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 2c164ca2b..9589b67db 100644 --- a/src/structs.h +++ b/src/structs.h @@ -2890,6 +2890,7 @@ struct window_S int w_wantcol; // "col" for popup window varnumber_T w_popup_last_changedtick; // b:changedtick when position was // computed + callback_T w_filter_cb; // popup filter callback # if defined(FEAT_TIMERS) timer_T *w_popup_timer; // timer for closing popup window # endif |