2012-01-22 08:39:11 +01:00
|
|
|
|
2024-04-16 14:51:44 +02:00
|
|
|
# shellcheck shell=bash
|
|
|
|
|
2012-01-22 08:39:11 +01:00
|
|
|
# Check for bash
|
|
|
|
[ -z "$BASH_VERSION" ] && return
|
|
|
|
|
|
|
|
####################################################################################################
|
|
|
|
|
|
|
|
__gresource() {
|
|
|
|
local choices coffset section
|
|
|
|
|
2024-04-16 14:58:49 +02:00
|
|
|
if [ "${COMP_CWORD}" -gt 2 ]; then
|
|
|
|
if [ "${COMP_WORDS[1]}" = --section ]; then
|
2012-01-22 08:39:11 +01:00
|
|
|
section=${COMP_WORDS[2]}
|
|
|
|
coffset=2
|
|
|
|
else
|
|
|
|
coffset=0
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
coffset=0
|
|
|
|
fi
|
|
|
|
|
2024-04-16 15:03:19 +02:00
|
|
|
case "$((COMP_CWORD-coffset))" in
|
2012-01-22 08:39:11 +01:00
|
|
|
1)
|
|
|
|
choices=$'--section \nhelp \nsections \nlist \ndetails \nextract '
|
|
|
|
;;
|
|
|
|
|
|
|
|
2)
|
2024-04-16 15:03:19 +02:00
|
|
|
case "${COMP_WORDS[$((coffset+1))]}" in
|
2012-01-22 08:39:11 +01:00
|
|
|
--section)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
|
|
|
|
help)
|
|
|
|
choices=$'sections\nlist\ndetails\nextract'
|
|
|
|
;;
|
|
|
|
|
|
|
|
sections|list|details|extract)
|
2024-04-16 14:58:49 +02:00
|
|
|
COMPREPLY=($(compgen -f -- "${COMP_WORDS[${COMP_CWORD}]}"))
|
2012-01-22 08:39:11 +01:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
|
|
|
|
3)
|
2024-04-16 15:03:19 +02:00
|
|
|
case "${COMP_WORDS[$((coffset+1))]}" in
|
2012-01-22 08:39:11 +01:00
|
|
|
list|details|extract)
|
2024-04-16 15:03:19 +02:00
|
|
|
choices="$(gresource list "${COMP_WORDS[$((coffset+2))]}" 2> /dev/null | sed -e 's.$. .')"
|
2012-01-22 08:39:11 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
local IFS=$'\n'
|
|
|
|
COMPREPLY=($(compgen -W "${choices}" -- "${COMP_WORDS[${COMP_CWORD}]}"))
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################
|
|
|
|
|
|
|
|
complete -o nospace -F __gresource gresource
|