From 3c05b111963ea714bb2006e14ee1391c5f8755e8 Mon Sep 17 00:00:00 2001 From: Delapouite Date: Thu, 21 Sep 2017 10:56:20 +0200 Subject: [PATCH] Fix missing spaces / new lines in commands docstring --- src/commands.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/commands.cc b/src/commands.cc index 016323c1..96839a85 100644 --- a/src/commands.cc +++ b/src/commands.cc @@ -470,7 +470,7 @@ void write_quit(const ParametersParser& parser, Context& context, const CommandDesc write_quit_cmd = { "write-quit", "wq", - "write current buffer and quit current client. An optional integer" + "write current buffer and quit current client. An optional integer " "parameter can set the client exit status", { {}, ParameterDesc::Flags::SwitchesAsPositional, 0, 1 }, CommandFlags::None, @@ -787,7 +787,7 @@ const CommandDesc add_hook_cmd = { nullptr, "hook : add in " "to be executed on hook when its parameter matches the regex\n" - "scope can be: \n" + " can be:\n" " * global: hook is executed for any buffer or window\n" " * buffer: hook is executed only for the current buffer\n" " (and any window for that buffer)\n" @@ -1039,7 +1039,7 @@ const CommandDesc define_command_cmd = { { "client-completion", { false, "complete parameters using client name completion" } }, { "buffer-completion", { false, "complete parameters using buffer name completion" } }, { "command-completion", { false, "complete parameters using kakoune command completion" } }, - { "shell-completion", { true, "complete the parameters using the given shell-script" } }, + { "shell-completion", { true, "complete parameters using the given shell-script" } }, { "shell-candidates", { true, "get the parameter candidates using the given shell-script" } } }, ParameterDesc::Flags::None, 2, 2 @@ -1233,7 +1233,7 @@ const CommandDesc set_option_cmd = { "set-option", "set", "set-option : set option in to \n" - " can be global, buffer, window, or current which refers to the narrowest\n" + " can be global, buffer, window, or current which refers to the narrowest " "scope the option is set in", ParameterDesc{ { { "add", { false, "add to option rather than replacing it" } } }, @@ -1294,8 +1294,8 @@ Completions complete_option(const Context& context, CompletionFlags, const CommandDesc unset_option_cmd = { "unset-option", "unset", - "unset-option : remove option from scope, falling back on parent scope value" - " can be buffer, window, or current which refers to the narrowest\n" + "unset-option : remove option from scope, falling back on parent scope value\n" + " can be buffer, window, or current which refers to the narrowest " "scope the option is set in", ParameterDesc{ {}, ParameterDesc::Flags::None, 2, 2 }, CommandFlags::None, @@ -1315,7 +1315,7 @@ const CommandDesc update_option_cmd = { nullptr, "update-option : update option from scope\n" "some option types, such as line-descs or range-descs can be updated to latest buffer timestamp\n" - " can be buffer, window, or current which refers to the narrowest\n" + " can be buffer, window, or current which refers to the narrowest " "scope the option is set in", ParameterDesc{ {}, ParameterDesc::Flags::None, 2, 2 }, CommandFlags::None,