mirror of
https://github.com/spf13/cobra.git
synced 2024-11-15 01:38:17 -07:00
Fix grammar: 'allows to' (#1978)
The use in generated bash completion files is getting flagged by Lintian (the Debian package linting tool). Signed-off-by: Taavi Väänänen <hi@taavi.wtf>
This commit is contained in:
parent
0e3a0bfe91
commit
2246fa82e9
@ -85,7 +85,7 @@ __%[1]s_handle_go_custom_completion()
|
|||||||
local out requestComp lastParam lastChar comp directive args
|
local out requestComp lastParam lastChar comp directive args
|
||||||
|
|
||||||
# Prepare the command to request completions for the program.
|
# Prepare the command to request completions for the program.
|
||||||
# Calling ${words[0]} instead of directly %[1]s allows to handle aliases
|
# Calling ${words[0]} instead of directly %[1]s allows handling aliases
|
||||||
args=("${words[@]:1}")
|
args=("${words[@]:1}")
|
||||||
# Disable ActiveHelp which is not supported for bash completion v1
|
# Disable ActiveHelp which is not supported for bash completion v1
|
||||||
requestComp="%[8]s=0 ${words[0]} %[2]s ${args[*]}"
|
requestComp="%[8]s=0 ${words[0]} %[2]s ${args[*]}"
|
||||||
|
@ -57,7 +57,7 @@ __%[1]s_get_completion_results() {
|
|||||||
local requestComp lastParam lastChar args
|
local requestComp lastParam lastChar args
|
||||||
|
|
||||||
# Prepare the command to request completions for the program.
|
# Prepare the command to request completions for the program.
|
||||||
# Calling ${words[0]} instead of directly %[1]s allows to handle aliases
|
# Calling ${words[0]} instead of directly %[1]s allows handling aliases
|
||||||
args=("${words[@]:1}")
|
args=("${words[@]:1}")
|
||||||
requestComp="${words[0]} %[2]s ${args[*]}"
|
requestComp="${words[0]} %[2]s ${args[*]}"
|
||||||
|
|
||||||
|
2
cobra.go
2
cobra.go
@ -48,7 +48,7 @@ const (
|
|||||||
defaultCaseInsensitive = false
|
defaultCaseInsensitive = false
|
||||||
)
|
)
|
||||||
|
|
||||||
// EnablePrefixMatching allows to set automatic prefix matching. Automatic prefix matching can be a dangerous thing
|
// EnablePrefixMatching allows setting automatic prefix matching. Automatic prefix matching can be a dangerous thing
|
||||||
// to automatically enable in CLI tools.
|
// to automatically enable in CLI tools.
|
||||||
// Set this to true to enable it.
|
// Set this to true to enable it.
|
||||||
var EnablePrefixMatching = defaultPrefixMatching
|
var EnablePrefixMatching = defaultPrefixMatching
|
||||||
|
Loading…
Reference in New Issue
Block a user