aboutsummaryrefslogtreecommitdiff
path: root/2018-linuxdays/examples/gitbmerge/_gitbmerge
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-10-07 20:03:35 +0200
committerKarel Kočí <cynerd@email.cz>2018-10-07 20:03:35 +0200
commit7cf03a1555d46117b5f1a3d0db7c28c02498fcee (patch)
treee7ded2835880ad350fad3209ce667f469858cfed /2018-linuxdays/examples/gitbmerge/_gitbmerge
parent8958b564509b4a4a63004763d70457d3ff5e5392 (diff)
downloadpresentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.tar.gz
presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.tar.bz2
presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.zip
Add presentation from LinuxDays 2018
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