aboutsummaryrefslogtreecommitdiff
path: root/completion/fish-completion.fish
blob: 0023c5842409879b4a008b9494513acec39cf7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Completions for ponysay
# https://github.com/erkin/ponysay/
#
# Author: Elis Axelsson <etu AT elis DOT nu>

if test $TERM = "linux"
	set -g systempath "/usr/share/ponysay/ttyponies/"
	set -g homepath   "~/.local/share/ponysay/ttyponies/"
else
	set -g systempath "/usr/share/ponysay/ponies/"
	set -g homepath   "~/.local/share/ponysay/ponies/"
end


if test -d $systempath
	set -g systemponies (ls --color=no $systempath | sed 's/\.pony//')
end

if test -d $homepath
	set -g homeponies   (ls --color=no $homepath | sed 's/\.pony//')
end


complete -c ponysay -s h --description "Help of ponysay"
complete -c ponysay -s v --description "Version of ponysay"
complete -c ponysay -s l --description "List pony files"
complete -c ponysay -s f -a "$homeponies $systemponies" --description "Ponyfile"
complete -c ponysay -s W -a "Integer" --description "The screen column where the message should be wrapped"


set -e systempath
set -e homepath
set -e systemponies
set -e homeponies