aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-21 21:31:25 +0800
committerGitHub <noreply@github.com>2022-08-21 21:31:25 +0800
commite3eb6967bcce6a7f82639aa9d2e925080804026d (patch)
tree587cf43476ffb1d40f79e46101d8ce12552730f6 /runtime/doc
parentdde90f0ca4e394667afe39c18f4a4dabdd8a6666 (diff)
downloadrneovim-e3eb6967bcce6a7f82639aa9d2e925080804026d.tar.gz
rneovim-e3eb6967bcce6a7f82639aa9d2e925080804026d.tar.bz2
rneovim-e3eb6967bcce6a7f82639aa9d2e925080804026d.zip
vim-patch:8.2.4325: 'wildmenu' only shows few matches (#19876)
Problem: 'wildmenu' only shows few matches. Solution: Add the "pum" option: use a popup menu to show the matches. (Yegappan Lakshmanan et al., closes vim/vim#9707) https://github.com/vim/vim/commit/3908ef5017a6b4425727013588f72cc7343199b9 Omit p_wmnu check in cmdline_pum_active() as it can cause problems. Omit vim_strchr() flags as that isn't really better than bitmasks. Omit key translations and document it in vim_diff.txt.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/options.txt3
-rw-r--r--runtime/doc/vim_diff.txt4
2 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index b5e8b7a99a..2e0c1f8cc4 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -7020,7 +7020,8 @@ A jump table for the options with a short description can be found at |Q_op|.
*'wildoptions'* *'wop'*
'wildoptions' 'wop' string (default "pum,tagfile")
global
- List of words that change how |cmdline-completion| is done.
+ A list of words that change how |cmdline-completion| is done.
+ The following values are supported:
pum Display the completion matches using the popup menu
in the same style as the |ins-completion-menu|.
tagfile When using CTRL-D to list matching tags, the kind of
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index 76beaf9830..53effa1443 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -207,7 +207,6 @@ Commands:
|:checkhealth|
|:drop| is always available
|:Man| is available by default, with many improvements such as completion
- |:sign-define| accepts a `numhl` argument, to highlight the line number
|:match| can be invoked before highlight group is defined
|:source| works with Lua
User commands can support |:command-preview| to show results as you type
@@ -374,6 +373,9 @@ Commands:
|:doautocmd| does not warn about "No matching autocommands".
|:wincmd| accepts a count.
+Command line completion:
+ The meanings of arrow keys do not change depending on 'wildoptions'.
+
Functions:
|input()| and |inputdialog()| support for each other’s features (return on
cancel and completion respectively) via dictionary argument (replaces all