summaryrefslogtreecommitdiffstats
path: root/runtime/doc/index.txt
diff options
context:
space:
mode:
authorYee Cheng Chin <ychin.git@gmail.com>2023-10-14 02:23:45 -0700
committerGitHub <noreply@github.com>2023-10-14 11:23:45 +0200
commit2bbd0d30eebdea66c0da3895e83d999ed6ad83fb (patch)
tree8bb6c2bfeb49553e2295643812180e148a4090f7 /runtime/doc/index.txt
parent29bb67f1beefc7fd393dbfd9ee77d92f1db3a3c0 (diff)
runtime(doc): Improve command-line completion docs (#13331)
* Improve command-line completion docs Add more details about 'ignorecase' and its effect on cmdline completion. Make sure keys used in wildmenu are properly documented and linked in the keys' documentation entries, and in `:h index` for proper cross-referencing, as wildmenu popup is slightly different from insert-mode popup menu. * Fix docs typos Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc/index.txt')
-rw-r--r--runtime/doc/index.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index a302c59fe9..e7e99e2ec0 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1112,6 +1112,22 @@ tag command action in Command-line editing mode ~
|c_<Insert>| <Insert> toggle insert/overstrike mode
|c_<LeftMouse>| <LeftMouse> cursor at mouse click
+commands in wildmenu mode (see 'wildmenu')
+
+ <Up> move up to parent / select the previous match
+ <Down> move down to submenu / select the next match
+ <Left> select the previous match / move up to parent
+ <Down> select the next match / move down to submenu
+ <CR> move into submenu when doing menu completion
+ other stop completion and insert the typed character
+
+commands in wildmenu mode with 'wildoptions' set to "pum"
+
+ CTRL-E stop completion and go back to original text
+ CTRL-Y accept selected match and stop completion
+ <PageUp> select a match several entries back
+ <PageDown> select a match several entries forward
+
==============================================================================
5. Terminal-Job mode *terminal-job-index*