aboutsummaryrefslogtreecommitdiff
path: root/2018-linuxdays/examples/gitbmerge/_gitbmerge
blob: 49977dc19f53ed8c69d83bcdc4339275240ed53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#compdef gitbmerge
#autoload

_gitbmerge() {
	((CURRENT > 2)) &&  return # Complete only single dependency
	local GDIR="$(pwd)"
	while [ ! -d "$GDIR/.git"  ]; do
		[ -z "$GDIR" ] && return
		GDIR="${GDIR%/*}"
	done
	GDIR="$GDIR/.git"
	[ -f "$GDIR" ] && GDIR="$(cat "$GDIR")" # This just points to some other directory
	[ -d "$GDIR/refs/heads" ] || return # No completion if there is no local branch
	local branches=()
	for B in "$GDIR"/refs/heads/*; do
		# TODO skip branch on HEAD
		branches+=("${B#$GDIR/refs/heads/}")
	done
	_describe -t branches 'gitbmerge' branches
}

_gitbmerge
# vim: ft=zsh