From 9beb5f8b0674bb1502b92bb15d55aecf2e37b45d Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 21 Sep 2012 08:35:21 +0200 Subject: Reformat bash completion and add missing options. Common git commands, --reencrypt, --force. --- contrib/pass.bash-completion | 117 ++++++++++++++++++++++--------------------- 1 file changed, 61 insertions(+), 56 deletions(-) (limited to 'contrib') diff --git a/contrib/pass.bash-completion b/contrib/pass.bash-completion index 95b905f..36c0cf2 100644 --- a/contrib/pass.bash-completion +++ b/contrib/pass.bash-completion @@ -1,12 +1,13 @@ # completion file for bash -# (C) Copyright 2012 Jason A. Donenfeld . All Rights Reserved. +# (C) Copyright 2012 Jason A. Donenfeld and +# Brian Mattern . All Rights Reserved. # This is released under the GPLv2+. Please see COPYING for more information. _pass_complete_entries () { - prefix="$HOME/.password-store/" + prefix="${PASSWORD_STORE_DIR:-$HOME/.password-store/}" suffix=".gpg" - autoexpand=${1:-0} + autoexpand=${1:-0} local IFS=$'\n' local i=0 @@ -14,68 +15,72 @@ _pass_complete_entries () { if [[ $item == $prefix.* ]]; then continue fi - # append / to directories and recursively expand single-entry dirs - while [[ -d $item ]]; do - item="$item/" - if [[ $autoexpand -eq 1 ]]; then - subitems=($(compgen -f $item)) - if [[ ${#subitems[@]} -eq 1 ]]; then - item="${subitems[0]}" - else - break - fi - else - break - fi - done + # append / to directories and recursively expand single-entry dirs + while [[ -d $item ]]; do + item="$item/" + if [[ $autoexpand -eq 1 ]]; then + subitems=($(compgen -f $item)) + if [[ ${#subitems[@]} -eq 1 ]]; then + item="${subitems[0]}" + else + break + fi + else + break + fi + done item="${item%$suffix}" - COMPREPLY[$i]=$(printf "%q" "${item#$prefix}" ) + COMPREPLY[$i]=$(printf "%q" "${item#$prefix}" ) (( i++ )) done } _pass() { - local cur prev opts base + local cur prev opts base - COMPREPLY=() - cur="${COMP_WORDS[COMP_CWORD]}" - prev="${COMP_WORDS[COMP_CWORD-1]}" + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" - commands="init ls show insert generate edit rm git help version --version" - if [[ $COMP_CWORD -gt 1 ]]; then - case "${COMP_WORDS[1]}" in - init) - keys=$(gpg --list-keys |grep uid |sed 's/.*<\(.*\)>/\1/') - COMPREPLY+=($(compgen -W "${keys}" -- ${cur})) - ;; - ls) - _pass_complete_entries - ;; - show|-*) - COMPREPLY+=($(compgen -W "-c --clip" -- ${cur})) - _pass_complete_entries 1 - ;; - insert) - COMPREPLY+=($(compgen -W "-n --no-echo -m --multiline -f --force" -- ${cur})) - _pass_complete_entries - ;; - generate) - COMPREPLY+=($(compgen -W "-n --no-symbols -c --clip" -- ${cur})) - _pass_complete_entries - ;; - edit) - _pass_complete_entries - ;; - rm) - COMPREPLY+=($(compgen -W "-r --recursive -f --force" -- ${cur})) - _pass_complete_entries - ;; - esac - else - COMPREPLY+=($(compgen -W "${commands}" -- ${cur})) - _pass_complete_entries 1 - fi + commands="init ls show insert generate edit rm git help --help version --version" + if [[ $COMP_CWORD -gt 1 ]]; then + case "${COMP_WORDS[1]}" in + init) + COMPREPLY+=($(compgen -W "-e --reencrypt" -- ${cur})) + keys=$(gpg --list-keys |grep uid |sed 's/.*<\(.*\)>/\1/') + COMPREPLY+=($(compgen -W "${keys}" -- ${cur})) + ;; + ls|list) + _pass_complete_entries + ;; + show|-*) + COMPREPLY+=($(compgen -W "-c --clip" -- ${cur})) + _pass_complete_entries 1 + ;; + insert) + COMPREPLY+=($(compgen -W "-n --no-echo -m --multiline -f --force" -- ${cur})) + _pass_complete_entries + ;; + generate) + COMPREPLY+=($(compgen -W "-n --no-symbols -c --clip -f --force" -- ${cur})) + _pass_complete_entries + ;; + edit) + _pass_complete_entries + ;; + rm|remove|delete) + COMPREPLY+=($(compgen -W "-r --recursive -f --force" -- ${cur})) + _pass_complete_entries + ;; + git) + COMPREPLY+=($(compgen -W "init push pull config log reflog" -- ${cur})) + ;; + esac + else + COMPREPLY+=($(compgen -W "${commands}" -- ${cur})) + _pass_complete_entries 1 + fi } complete -o nospace -F _pass pass -- cgit v1.2.3-59-g8ed1b