1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-01 18:39:26 +00:00

move gitignore template function to modules/git

This commit is contained in:
Haojia Che
2014-11-03 16:48:54 +08:00
parent a14b6e5c31
commit 72328d0eed
5 changed files with 51 additions and 1 deletions

View File

@ -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;