diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-19 20:14:46 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-19 20:14:46 +0200 |
commit | d9ada3be2fa1a87e271704de82969582f2d6dfd7 (patch) | |
tree | b61b85df386f36092f43dc08263f6a60c92aafc5 | |
parent | 285fbf3ff565229343b437ba8470c076e5aa334a (diff) | |
download | ponysay-d9ada3be2fa1a87e271704de82969582f2d6dfd7.tar.gz ponysay-d9ada3be2fa1a87e271704de82969582f2d6dfd7.tar.bz2 ponysay-d9ada3be2fa1a87e271704de82969582f2d6dfd7.zip |
bash completion: suggesting long options rather than short options as they are more descriptive (not needed in fish and zsh) and adding --altlist
-rw-r--r-- | completion/bash-completion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/completion/bash-completion.sh b/completion/bash-completion.sh index ca6755e..bb575f4 100644 --- a/completion/bash-completion.sh +++ b/completion/bash-completion.sh @@ -5,7 +5,7 @@ _ponysay() local cur prev words cword _init_completion -n = || return - options='-v -h -l -f -W -q' + options='--version --help --list --altlist --pony --wrap --quote' COMPREPLY=( $( compgen -W "$options" -- "$cur" ) ) if [ $prev = "-f" ] || [ $prev = "--pony" ]; then |