summaryrefslogtreecommitdiffstats
path: root/runtime/doc/popup.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-04 13:18:30 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-04 13:18:30 +0100
commit014f698cb68ff80c49f9f5d3dbe78127df281885 (patch)
treebfcc78ebe7438f54f8902f3a34ea3ab3afa9793d /runtime/doc/popup.txt
parentd93a7fc1a98a58f8101ee780d4735079ad99ae35 (diff)
patch 8.2.2296: cannot use CTRL-N and CTRL-P in a popup menuv8.2.2296
Problem: Cannot use CTRL-N and CTRL-P in a popup menu. Solution: Use CTRL-N like <Down> and CTRL-P like <Up>. (closes #7614)
Diffstat (limited to 'runtime/doc/popup.txt')
-rw-r--r--runtime/doc/popup.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/popup.txt b/runtime/doc/popup.txt
index be0b7e2133..54302a95d8 100644
--- a/runtime/doc/popup.txt
+++ b/runtime/doc/popup.txt
@@ -309,8 +309,8 @@ popup_dialog({what}, {options}) *popup_dialog()*
popup_filter_menu({id}, {key}) *popup_filter_menu()*
Filter that can be used for a popup. These keys can be used:
- j <Down> select item below
- k <Up> select item above
+ j <Down> <C-N> select item below
+ k <Up> <C-P> select item above
<Space> <Enter> accept current selection
x Esc CTRL-C cancel the menu
Other keys are ignored.