diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-03 22:08:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-03 22:08:33 +0200 |
commit | 581ba39aefe837298a9943b04a1dab13a7ec6772 (patch) | |
tree | 156f0c8dd74bd6e76c850239f753cbaa17c12924 /src/structs.h | |
parent | 27da7de7c547dbf983ed7dd901ea59be4e7c9ab2 (diff) | |
download | vim-git-581ba39aefe837298a9943b04a1dab13a7ec6772.tar.gz |
patch 8.1.1969: popup window filter is used in all modesv8.1.1969
Problem: Popup window filter is used in all modes.
Solution: Add the "filtermode" property.
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 35a22b102..e599550a1 100644 --- a/src/structs.h +++ b/src/structs.h @@ -3054,6 +3054,7 @@ struct window_S // computed callback_T w_close_cb; // popup close callback callback_T w_filter_cb; // popup filter callback + int w_filter_mode; // mode when filter callback is used win_T *w_popup_curwin; // close popup if curwin differs linenr_T w_popup_lnum; // close popup if cursor not on this line |