2012-10-27 22:50:17 +02:00
# fish completion for ponysay -*- shell-script -*-
2012-07-19 14:56:43 +02:00
# Author: Elis Axelsson <etu AT elis DOT nu>
2012-08-26 10:15:48 +02:00
set -g ponies ( '/usr/bin/ponysay' --onelist )
set -g xponies ( '/usr/bin/ponysay' ++onelist)
set -g quoters ( '/usr/bin/ponysay' --quoters )
2012-08-21 17:26:21 +02:00
set -g balloons ( '/usr/bin/ponysay' --balloonlist )
2012-07-19 21:28:35 +02:00
2012-08-18 02:34:54 +02:00
2012-10-11 22:47:39 +02:00
## TODO: update with options [see info manual]: +l +L ++list ++altlist ++file --file ++pony {-A, +A, -V, -K, -X}(with alternative)
2012-08-26 10:15:48 +02:00
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 F --arguments " $xponies " --description 'extra 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 " --no-files --description 'balloon style'
2012-10-27 22:50:17 +02:00
complete --command ponysay --short-option W --long-option wrap --arguments 'Integer' --description 'specify the column when the message should be wrapped' ## TODO arguments `none` and `inherit` should be suggested
2012-08-26 10:15:48 +02:00
complete --command ponysay --arguments 'MESSAGE'
2012-07-19 21:28:35 +02:00
2012-08-22 16:25:35 +02:00
2012-08-18 16:37:55 +02:00
set -e ponies
2012-08-22 16:25:35 +02:00
set -e xponies
2012-08-18 02:34:54 +02:00
set -e quoters
2012-08-21 17:26:21 +02:00
set -e balloons