diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-21 21:41:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-21 21:41:08 +0200 |
commit | 8cc7a919b4cdd8b4a9c0873dfb0cb8f6ff3dac59 (patch) | |
tree | 21da70bb473acc68cc7f82e821ae0638ac77282d /completion | |
parent | 2eb9342b864725d301a3dbc25423da6fcb174c13 (diff) | |
download | ponysay-8cc7a919b4cdd8b4a9c0873dfb0cb8f6ff3dac59.tar.gz ponysay-8cc7a919b4cdd8b4a9c0873dfb0cb8f6ff3dac59.tar.bz2 ponysay-8cc7a919b4cdd8b4a9c0873dfb0cb8f6ff3dac59.zip |
misc
Diffstat (limited to 'completion')
-rw-r--r-- | completion/fish-completion.fish | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/completion/fish-completion.fish b/completion/fish-completion.fish index ead664b..c211982 100644 --- a/completion/fish-completion.fish +++ b/completion/fish-completion.fish @@ -8,15 +8,15 @@ set -g quoters ('/usr/bin/ponysay' --quoters) set -g balloons ('/usr/bin/ponysay' --balloonlist) -complete --command ponysay --short-option h --long-option help --description 'help of ponysay' -complete --command ponysay --short-option v --long-option version --description 'version of ponysay' -complete --command ponysay --short-option l --long-option list --description 'list pony names' -complete --command ponysay --short-option L --long-option altlist --description 'list pony names with alternatives' -complete --command ponysay --short-option B --long-option balloonlist --description 'list balloon style names' -complete --command ponysay --short-option f --long-option pony --arguments "$ponies" --description 'pony' -complete --command ponysay --short-option q --long-option quote --arguments "$quoters" --no-files --description 'pony' -complete --command ponysay --short-option b --long-option balloon --arguments "$balloons" --description 'balloon style' -complete --command ponysay --short-option W --long-option wrap --arguments 'Integer' --description 'specify the column when the message should be wrapped' +complete --command ponysay --short-option h --long-option help --description 'help of ponysay' +complete --command ponysay --short-option v --long-option version --description 'version of ponysay' +complete --command ponysay --short-option l --long-option list --description 'list pony names' +complete --command ponysay --short-option L --long-option altlist --description 'list pony names with alternatives' +complete --command ponysay --short-option B --long-option balloonlist --description 'list balloon style names' +complete --command ponysay --short-option f --long-option pony --arguments "$ponies" --description 'pony' +complete --command ponysay --short-option q --long-option quote --arguments "$quoters" --description 'pony' +complete --command ponysay --short-option b --long-option balloon --arguments "$balloons" --description 'balloon style' +complete --command ponysay --short-option W --long-option wrap --arguments 'Integer' --description 'specify the column when the message should be wrapped' complete --command ponysay --arguments 'MESSAGE' set -e ponies |