parent
a14b6e5c31
commit
72328d0eed
@ -0,0 +1,26 @@
|
||||
#compdef _gitignireio git-ignore-template
|
||||
#autoload
|
||||
|
||||
#
|
||||
# Completes git-ignore-template
|
||||
#
|
||||
# Authors:
|
||||
# Haojia Che <haojia.che@gmail.com>
|
||||
#
|
||||
|
||||
typeset -A opt_args
|
||||
|
||||
_arguments -C \
|
||||
'1::ignore:->ignores' \
|
||||
&& ret=0
|
||||
|
||||
list=(`git-ignore-template`)
|
||||
|
||||
case "$state" in
|
||||
(ignores)
|
||||
languages=(`echo $list| tr "," "\n"`)
|
||||
_describe 'templates' languages && ret=0
|
||||
;;
|
||||
esac;
|
||||
|
||||
return 1;
|
@ -0,0 +1,20 @@
|
||||
#
|
||||
# Get ignore template from https://gitignore.io.
|
||||
#
|
||||
# Authors:
|
||||
# Haojia Che <haojia.che@gmail.com>
|
||||
#
|
||||
# Use `git-ignore-template` or `git-ignore-template list` to get the list
|
||||
# Uset `git-ignore-template <template name>` to get the template
|
||||
#
|
||||
# Example:
|
||||
# `git-ignore-template java` to get a gitignore template for java.
|
||||
#
|
||||
|
||||
function git-ignore-template() {
|
||||
if [ $@ ]; then
|
||||
curl -L -s https://www.gitignore.io/api/$@;
|
||||
else
|
||||
curl -L -s https://www.gitignore.io/api/list;
|
||||
fi
|
||||
}
|
@ -1 +0,0 @@
|
||||
function gi() { curl http://www.gitignore.io/api/$@ ;}
|
Loading…
Reference in new issue