mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Add support for plural nouns in bash completion
This commit is contained in:
parent
8092588fb8
commit
ea9a77d312
1 changed files with 2 additions and 0 deletions
|
@ -189,6 +189,8 @@ __handle_noun()
|
||||||
|
|
||||||
if __contains_word "${words[c]}" "${must_have_one_noun[@]}"; then
|
if __contains_word "${words[c]}" "${must_have_one_noun[@]}"; then
|
||||||
must_have_one_noun=()
|
must_have_one_noun=()
|
||||||
|
elif __contains_word "${words[c]%s}" "${must_have_one_noun[@]}"; then
|
||||||
|
must_have_one_noun=()
|
||||||
fi
|
fi
|
||||||
|
|
||||||
nouns+=("${words[c]}")
|
nouns+=("${words[c]}")
|
||||||
|
|
Loading…
Reference in a new issue