From 7cf03a1555d46117b5f1a3d0db7c28c02498fcee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 7 Oct 2018 20:03:35 +0200 Subject: Add presentation from LinuxDays 2018 --- 2018-linuxdays/examples/gitbmerge/_gitbmerge | 23 +++++++++++++++++++++++ 2018-linuxdays/examples/gitbmerge/gitbmerge | 20 ++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 2018-linuxdays/examples/gitbmerge/_gitbmerge create mode 100644 2018-linuxdays/examples/gitbmerge/gitbmerge (limited to '2018-linuxdays/examples/gitbmerge') 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 diff --git a/2018-linuxdays/examples/gitbmerge/gitbmerge b/2018-linuxdays/examples/gitbmerge/gitbmerge new file mode 100644 index 0000000..bd892b6 --- /dev/null +++ b/2018-linuxdays/examples/gitbmerge/gitbmerge @@ -0,0 +1,20 @@ +_gitbmerge() { + [ $COMP_CWORD -gt 1 ] && return # Complete only single dependency + local cur prev words cword + _init_completion || return + 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 -- cgit v1.2.3