From 0f0f2b126d78b63b52895116685f044b96324ae5 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 8 Mar 2022 22:05:55 +0100 Subject: [PATCH] doc commands: fix names of complete-command's completion_type arguments --- doc/pages/commands.asciidoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/pages/commands.asciidoc b/doc/pages/commands.asciidoc index 650cebb4..9df31c2d 100644 --- a/doc/pages/commands.asciidoc +++ b/doc/pages/commands.asciidoc @@ -515,22 +515,22 @@ Command completion can be configured with the *complete-command* command: *completion_type* can be: - *file-completion*::: + *file*::: try file completion on any parameter passed to the command - *client-completion*::: + *client*::: 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 - *command-completion*::: + *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 - *shell-script-completion*::: + *shell-script*::: following string is a shell command which takes parameters as positional params and outputs one completion candidate per line. The provided shell command will run after each keypress.