diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-15 07:01:14 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-15 07:36:58 +0800 |
commit | 066a1a069b2b0d97308ed2bdb18fbef488051e12 (patch) | |
tree | e1924b5e59dfba842f034873a55fec50b62bb819 /src/nvim/cmdexpand.h | |
parent | 44710a91d06cdd6cba01a2d62fc9652f94651363 (diff) | |
download | rneovim-066a1a069b2b0d97308ed2bdb18fbef488051e12.tar.gz rneovim-066a1a069b2b0d97308ed2bdb18fbef488051e12.tar.bz2 rneovim-066a1a069b2b0d97308ed2bdb18fbef488051e12.zip |
vim-patch:8.2.4579: cannot use page-up and page-down in the cmdline popup menu
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 vim/vim#9960)
https://github.com/vim/vim/commit/5cffa8df7e3c28681b9e5deef6df395784359b6b
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/cmdexpand.h')
-rw-r--r-- | src/nvim/cmdexpand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/cmdexpand.h b/src/nvim/cmdexpand.h index cdd6192086..810e289f7c 100644 --- a/src/nvim/cmdexpand.h +++ b/src/nvim/cmdexpand.h @@ -19,8 +19,8 @@ enum { WILD_ALL_KEEP = 8, WILD_CANCEL = 9, WILD_APPLY = 10, - // WILD_PAGEUP = 11, not ported yet - // WILD_PAGEDOWN = 12, not ported yet + WILD_PAGEUP = 11, + WILD_PAGEDOWN = 12, WILD_PUM_WANT = 13, }; |