You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
397 B
27 lines
397 B
10 years ago
|
#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;
|