diff options
Diffstat (limited to 'completion')
-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 |