diff options
author | Oliver Kiddle <opk@zsh.org> | 2021-07-09 00:23:52 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2021-07-09 00:23:52 +0200 |
commit | e6fdd35a83881a957ac206b4e128886d07f37c71 (patch) | |
tree | 3b5c1128104ee38544c89e10329be417f057bb78 /Completion/Zsh/Context | |
parent | bffe543142978b036621291dcfe08771ad6b4bda (diff) | |
download | zsh-e6fdd35a83881a957ac206b4e128886d07f37c71.tar.gz zsh-e6fdd35a83881a957ac206b4e128886d07f37c71.zip |
49150: consistently use singular form for headings on completion match groups
Diffstat (limited to 'Completion/Zsh/Context')
-rw-r--r-- | Completion/Zsh/Context/_subscript | 2 | ||||
-rw-r--r-- | Completion/Zsh/Context/_zcalc_line | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Zsh/Context/_subscript b/Completion/Zsh/Context/_subscript index 0d9632864..25cedd193 100644 --- a/Completion/Zsh/Context/_subscript +++ b/Completion/Zsh/Context/_subscript @@ -80,7 +80,7 @@ elif compset -P '\('; then );; esac - _values -s '' 'subscript flags' $flags + _values -s '' 'subscript flag' $flags elif [[ ${(Pt)${compstate[parameter]}} = assoc* ]]; then local suf MATCH MBEGIN MEND local -a keys diff --git a/Completion/Zsh/Context/_zcalc_line b/Completion/Zsh/Context/_zcalc_line index 50fb8c17c..ab8e42df9 100644 --- a/Completion/Zsh/Context/_zcalc_line +++ b/Completion/Zsh/Context/_zcalc_line @@ -16,7 +16,7 @@ _zcalc_line_escapes() { "function:define math function (also \:func or \:f)" ) cmds=("\:"${^cmds}) - _describe -t command-escapes "command escapes" cmds -Q + _describe -t command-escapes "command escape" cmds -Q } _zcalc_line() { |