rc tools doc: use menu behavior for completion again

Commit e43c7d6ab (Use complete-command for the :doc command,
2022-10-19) forgot to carry over the "-menu" flag, which means that
:doc completions are no longer auto-selected, even though they are
the only valid inputs.

Fix that.

Closes #4790
This commit is contained in:
Johannes Altmanninger 2024-03-12 20:42:55 +01:00 committed by Maxime Coste
parent cde5f5a258
commit 4d8de48ec3

View File

@ -134,7 +134,7 @@ define-command -params 1 -hidden doc-render %{
map buffer normal <ret> :doc-follow-link<ret> map buffer normal <ret> :doc-follow-link<ret>
} }
define-command doc -params 0..2 -menu -docstring %{ define-command doc -params 0..2 -docstring %{
doc <topic> [<keyword>]: open a buffer containing documentation about a given topic doc <topic> [<keyword>]: open a buffer containing documentation about a given topic
An optional keyword argument can be passed to the function, which will be automatically selected in the documentation An optional keyword argument can be passed to the function, which will be automatically selected in the documentation
@ -165,7 +165,7 @@ define-command doc -params 0..2 -menu -docstring %{
} }
} }
complete-command doc shell-script-candidates %{ complete-command -menu doc shell-script-candidates %{
case "$kak_token_to_complete" in case "$kak_token_to_complete" in
0) 0)
find -L \ find -L \