1
0
Fork 0

Merging upstream version 0.16.7.2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-11 18:52:12 +01:00
parent 6b6067194b
commit cf5dbba8e5
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
15 changed files with 737 additions and 81 deletions

View file

@ -1,45 +0,0 @@
_gita_completions()
{
local cur commands repos cmd
local IFS=$'\n\t '
cur=${COMP_WORDS[COMP_CWORD]}
cmd=${COMP_WORDS[1]}
# this doesn't work for two repos with the same basename
#gita_path=${XDG_CONFIG_HOME:-$HOME/.config}/gita/repo_path
#repos=`awk '{split($0, paths, ":")} END {for (i in paths) {n=split(paths[i],b, /\//); print b[n]}}' ${gita_path}`
if [ $COMP_CWORD -eq 1 ]; then
# FIXME: this is somewhat slow
commands=`gita -h | sed '2q;d' |sed 's/[{}.,]/ /g'`
COMPREPLY=($(compgen -W "${commands}" ${cur}))
elif [ $COMP_CWORD -gt 1 ]; then
case $cmd in
add)
COMPREPLY=($(compgen -d ${cur}))
;;
clone)
COMPREPLY=($(compgen -f ${cur}))
;;
color | flags)
COMPREPLY=($(compgen -W "ll set" ${cur}))
;;
ll | context)
groups=`gita group ls`
COMPREPLY=($(compgen -W "${groups}" ${cur}))
return
;;
*)
repos=`gita ls`
COMPREPLY=($(compgen -W "${repos}" ${cur}))
;;
esac
fi
}
complete -F _gita_completions gita