aboutsummaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-09-18 20:20:01 +0200
committerKarel Kočí <cynerd@email.cz>2017-09-18 20:20:01 +0200
commit04029c520f4cd1c7fbf9444e6ba5304b632d23f4 (patch)
treec8518debfd7bafb016ffe6942020a5b06a9d31c8 /bashrc
parent73f3fc2eb900d54915debb23017c7b9bca978645 (diff)
downloadmyconfigs-04029c520f4cd1c7fbf9444e6ba5304b632d23f4.tar.gz
myconfigs-04029c520f4cd1c7fbf9444e6ba5304b632d23f4.tar.bz2
myconfigs-04029c520f4cd1c7fbf9444e6ba5304b632d23f4.zip
Add completions for gitbmerge
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc24
1 files changed, 24 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index ef4e60c..aee1c22 100644
--- a/bashrc
+++ b/bashrc
@@ -37,3 +37,27 @@ case "$TERM" in
;;
esac
+# Completions ##################################################
+
+# Some completion functions
+_gitbmerge() {
+ local cur prev
+ _init_completion || return
+ [ $COMP_CWORD -gt 1 ] && return # Complete only single dependency
+ COMPREPLY=()
+ 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 ops=""
+ for B in "$GDIR"/refs/heads/*; do
+ # TODO skip branch on HEAD
+ ops="$ops ${B#$GDIR/refs/heads/}"
+ done
+ COMPREPLY+=($(compgen -W "${ops}" -- ${cur}))
+}
+complete -F _gitbmerge gitbmerge