1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-10 04:51:53 +03:00

doc commands: fix names of complete-command's completion_type arguments

This commit is contained in:
Johannes Altmanninger 2022-03-08 22:05:55 +01:00
parent 1d6476d329
commit 0f0f2b126d

View File

@ -515,22 +515,22 @@ Command completion can be configured with the *complete-command* command:
*completion_type* can be: *completion_type* can be:
*file-completion*::: *file*:::
try file completion on any parameter passed to the command try file completion on any parameter passed to the command
*client-completion*::: *client*:::
try client name completion on any parameter passed to the command try client name completion on any parameter passed to the command
*buffer-completion*::: *buffer*:::
try buffer name completion on any parameter passed to the command try buffer name completion on any parameter passed to the command
*command-completion*::: *command*:::
try command completion on any parameter passed to the command try command completion on any parameter passed to the command
*shell-completion*::: *shell*:::
try shell command completion on any parameter passed to the command try shell command completion on any parameter passed to the command
*shell-script-completion*::: *shell-script*:::
following string is a shell command which takes parameters as following string is a shell command which takes parameters as
positional params and outputs one completion candidate per line. positional params and outputs one completion candidate per line.
The provided shell command will run after each keypress. The provided shell command will run after each keypress.