oh-my-fish/plugins/gi/gi.load
Bruno Pinto 00236e5af3 tidying
2013-11-20 07:53:39 -02:00

20 lines
427 B
Fish

# gitignore.io cli for fish
function gi
#curl http://gitignore.io/api/$argv
set -l params (echo $argv|tr ' ' ',')
curl http://gitignore.io/api/$params
end
# enable the complation by invoking `gi list`
if not set -q -g gi_list
timeout 2 ping -c 1 -q gitignore.io >/dev/null
set gi_available $status
if test $gi_available
set -g gi_list (gi list| tr ',' ' ' ^/dev/null)
end
end
complete -c gi -a "$gi_list"