prezto_config/modules/git/functions/_git-hub-browse

48 lines
1.1 KiB
Plaintext
Raw Normal View History

#compdef git-hub-browse
#autoload
2012-02-01 05:37:51 +01:00
#
2012-09-25 07:46:41 +02:00
# Completes git-hub-browse.
2012-02-01 05:37:51 +01:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
if ! is-true "$(git rev-parse --is-inside-work-tree 2> /dev/null)"; then
return 1
fi
2012-09-29 19:42:15 +02:00
local state expl remotes remote branches_or_tags branches tags files ret=1
_arguments -C -s -S \
'1::args:->remote' \
2012-09-24 23:57:48 +02:00
'2::args:->branch-or-tag' \
'3::args:->file' && ret=0
case "$state" in
(remote)
2012-09-30 05:17:39 +02:00
remotes=($(git config --get-regexp 'remote.*.url' | cut -d. -f2))
_describe -t branch 'remotes' remotes && ret=0
;;
2012-09-24 23:57:48 +02:00
(branch-or-tag)
remote="$words[(($CURRENT - 1))]"
2012-09-24 23:57:48 +02:00
branches_or_tags=($(
2012-09-30 05:17:39 +02:00
git ls-remote --heads --tags "$remote" 2>/dev/null | cut -f2
))
2012-09-24 23:57:48 +02:00
branches=(HEAD ${${(M)branches_or_tags[@]##refs/heads/?##}##refs/heads/})
tags=(${${(M)branches_or_tags[@]##refs/tags/?##}##refs/tags/})
_describe -t branch 'branches' branches && ret=0
2012-09-24 23:57:48 +02:00
_describe -t tag 'tags' tags && 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