diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-03-16 13:33:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-16 13:33:53 +0000 |
commit | 5cffa8df7e3c28681b9e5deef6df395784359b6b (patch) | |
tree | 0164635aec712ab5ca866b9f7354288664f568b1 /src/vim.h | |
parent | fe8e9f674036f3206b0080f4a931c991cf142f8b (diff) | |
download | vim-git-5cffa8df7e3c28681b9e5deef6df395784359b6b.tar.gz |
patch 8.2.4579: cannot use page-up and page-down in the cmdline popup menuv8.2.4579
Problem: Cannot use page-up and page-down in the command line completion
popup menu.
Solution: Check for to page-up and page-down keys. (Yegappan Lakshmanan,
closes #9960)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -818,6 +818,8 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring); #define WILD_ALL_KEEP 8 #define WILD_CANCEL 9 #define WILD_APPLY 10 +#define WILD_PAGEUP 11 +#define WILD_PAGEDOWN 12 #define WILD_LIST_NOTFOUND 0x01 #define WILD_HOME_REPLACE 0x02 |