password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit aea785914f5549e16363d83b0ef660a59d184f55
parent a6cf42c7330ad3e5a7d6e25feeb2eb99dd896a87
Author: Dmitry Medvinsky <me@dmedvinsky.name>
Date:   Mon, 24 Mar 2014 11:29:29 +0400

Add some commonly used completions for `pass git`

Diffstat:
Msrc/completion/pass.fish-completion | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/completion/pass.fish-completion b/src/completion/pass.fish-completion @@ -100,6 +100,9 @@ complete -c $PROG -f -A -n '__fish_pass_uses_command --clip' -a "(__fish_pass_pr complete -c $PROG -f -A -n '__fish_pass_needs_command' -a git -d 'Command: execute a git command' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'init' -d 'Initialize git repository' +complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'status' -d 'Show status of the repo' +complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'add' -d 'Add changes to the index' +complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'commit' -d 'Commit changes to the repo' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'push' -d 'Push changes to remote repo' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'pull' -d 'Pull changes from remote repo' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'log' -d 'View changelog'