aboutsummaryrefslogtreecommitdiff
path: root/completion/zsh-completion.zsh
blob: c19604d269f8064c2ab4083f6a43be85bfe5f8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#compdef ponysay
_shortopts=(
    '-v[Show version and exit]'
    '-h[Show this help and exit]'
    '-l[list pony names]'
    '-L[list pony names with alternatives]'
    '-B[list balloon style names]'
    '-f[Select a pony (either a file name or a pony name]: :_path_files -W '/usr/share/ponysay/ponies' -g "*(\:r)"'
    '-q[Select ponies for MLP:FiM quotes]'
    '-b[Selecy a balloon style]'
    '-W[The screen column where the message should be wrapped]'
    )
_arguments -s : \
    "$_shortopts[@]"