From 6a6222eef23d25bec90015e49bd69c42062434ee Mon Sep 17 00:00:00 2001 From: Lars Flitter Date: Wed, 18 Jul 2018 15:17:45 +0200 Subject: Add custom bash completion for extensions Bash completion now allows usage of extension commands. (see pass.bash-completion for details) --- src/completion/pass.bash-completion | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/completion/pass.bash-completion b/src/completion/pass.bash-completion index 456485b..bbe9d0c 100644 --- a/src/completion/pass.bash-completion +++ b/src/completion/pass.bash-completion @@ -81,7 +81,7 @@ _pass() { COMPREPLY=() local cur="${COMP_WORDS[COMP_CWORD]}" - local commands="init ls find grep show insert generate edit rm mv cp git help version" + local commands="init ls find grep show insert generate edit rm mv cp git help version ${PASSWORD_STORE_EXTENSION_COMMANDS[*]}" if [[ $COMP_CWORD -gt 1 ]]; then local lastarg="${COMP_WORDS[$COMP_CWORD-1]}" case "${COMP_WORDS[1]}" in @@ -121,6 +121,17 @@ _pass() COMPREPLY+=($(compgen -W "init push pull config log reflog rebase" -- ${cur})) ;; esac + + # To add completion for an extension command define a function like this: + # __password_store_extension_complete_() { + # COMPREPLY+=($(compgen -W "-o --option" -- ${cur})) + # _pass_complete_entries 1 + # } + # + # and add the command to the $PASSWORD_STORE_EXTENSION_COMMANDS array + if [[ " ${PASSWORD_STORE_EXTENSION_COMMANDS[*]} " == *" ${COMP_WORDS[1]} "* ]] && type "__password_store_extension_complete_${COMP_WORDS[1]}" &> /dev/null; then + "__password_store_extension_complete_${COMP_WORDS[1]}" + fi else COMPREPLY+=($(compgen -W "${commands}" -- ${cur})) _pass_complete_entries 1 -- cgit v1.2.3-59-g8ed1b