aboutsummaryrefslogtreecommitdiff
path: root/zsh-completion
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-01-26 15:02:07 +0100
committerKarel Kočí <cynerd@email.cz>2018-01-26 15:26:36 +0100
commit47d3b6fc1966df43b37751165d6fa4229904c0fa (patch)
treecccb190aad69ed1afb93654922575a95e7745d03 /zsh-completion
downloadshellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.tar.gz
shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.tar.bz2
shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.zip
Initial commitv0.1
Diffstat (limited to 'zsh-completion')
-rw-r--r--zsh-completion/_gitbmerge23
1 files changed, 23 insertions, 0 deletions
diff --git a/zsh-completion/_gitbmerge b/zsh-completion/_gitbmerge
new file mode 100644
index 0000000..733dbfb
--- /dev/null
+++ b/zsh-completion/_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