diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-15 07:59:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 07:59:24 +0800 |
commit | fe17cd50fbff5ebed44b6b0d46f3dc933696c1da (patch) | |
tree | d0fb1562b4281efd1f9b3453c649d625321ebcb3 /src/nvim/cmdexpand.h | |
parent | 4c8d707a5e28805a1211726817576cd1bb32ecf7 (diff) | |
parent | 940643aa331e31678467c770b77808e0b4240b34 (diff) | |
download | rneovim-fe17cd50fbff5ebed44b6b0d46f3dc933696c1da.tar.gz rneovim-fe17cd50fbff5ebed44b6b0d46f3dc933696c1da.tar.bz2 rneovim-fe17cd50fbff5ebed44b6b0d46f3dc933696c1da.zip |
Merge pull request #21807 from zeertzjq/vim-8.2.4579
vim-patch:8.2.{4481,4579,4585}: PageUp/PageDown for cmdline pum
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, }; |