mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
19 lines
391 B
Fish
19 lines
391 B
Fish
# gitignore.io cli for fish
|
|
|
|
function gi
|
|
set -l params (echo $argv|tr ' ' ',')
|
|
curl -s http://www.gitignore.io/api/$params
|
|
end
|
|
|
|
# enable the complation by invoking `gi list`
|
|
if not set -q -g gi_list
|
|
ping -t 2 -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"
|