aboutsummaryrefslogtreecommitdiff
path: root/2018-linuxdays/examples/gitbmerge/_gitbmerge
diff options
context:
space:
mode:
Diffstat (limited to '2018-linuxdays/examples/gitbmerge/_gitbmerge')
-rw-r--r--2018-linuxdays/examples/gitbmerge/_gitbmerge23
1 files changed, 23 insertions, 0 deletions
diff --git a/2018-linuxdays/examples/gitbmerge/_gitbmerge b/2018-linuxdays/examples/gitbmerge/_gitbmerge
new file mode 100644
index 0000000..49977dc
--- /dev/null
+++ b/2018-linuxdays/examples/gitbmerge/_gitbmerge
@@ -0,0 +1,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