mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-29 06:13:20 +00:00
Simplify choice completion
This commit is contained in:
parent
3f7cfdd144
commit
bc52198b5e
1 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
complete --command choice --no-files --arguments '/c\t"Specify the list of choices to be created"
|
complete --command choice --no-files --arguments '/c' --description "Specify the list of choices to be created"
|
||||||
/n\t"Hide the list of choices"
|
complete --command choice --no-files --arguments '/n' --description "Hide the list of choices"
|
||||||
/cs\t"Specify that the choices are case-sensitive"
|
complete --command choice --no-files --arguments '/cs' --description "Specify that the choices are case-sensitive"
|
||||||
/t\t"Specify the number of seconds"
|
complete --command choice --no-files --arguments '/t' --description "Specify the number of seconds"
|
||||||
/d\t"Specify the default choice"
|
complete --command choice --no-files --arguments '/d' --description "Specify the default choice"
|
||||||
/m\t"Specify a message"
|
complete --command choice --no-files --arguments '/m' --description "Specify a message"
|
||||||
/?\t"Show help"'
|
complete --command choice --no-files --arguments '/?' --description "Show help"
|
||||||
|
|
Loading…
Reference in a new issue