prezto/modules/git/functions/_git-hub

42 lines
879 B
Plaintext
Raw Normal View History

#compdef git-hub
#autoload
2012-02-01 05:37:51 +01:00
#
# Completes git-hub.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
local state remotes remote branches files ret=1
_arguments -C -s -S \
'1::args:->remote' \
'2::args:->branch' \
'3::args:->file' && ret=0
case "$state" in
(remote)
remotes=($(
2012-09-24 07:46:24 +02:00
git config --local --get-regexp 'remote.*.url' \
| awk 'BEGIN {FS="."} ; {print $2}'
))
_describe -t branch 'remotes' remotes && ret=0
;;
(branch)
remote="$words[(($CURRENT - 1))]"
branches=($(
2012-09-24 07:46:24 +02:00
git ls-remote --heads "$remote" \
| awk '{gsub(/refs\/heads\//, "", $2)} ; {print $2}'
))
_describe -t branch 'branches' branches && ret=0
;;
(file)
files=(${(0)"$(_call_program files git ls-files -z --exclude-standard 2>/dev/null)"})
_wanted file expl 'file' _multi_parts - / files && ret=0
;;
esac
return $ret