aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/completion
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-04-15 18:15:32 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2014-04-15 18:15:32 +0200
commit1a87b50208a9f26cb60d93edf7ddebd1fdc277b7 (patch)
tree005cbd64a2e3a6ae15e14d912c47a50e255c0061 /src/completion
parentBump version (diff)
downloadpassword-store-1a87b50208a9f26cb60d93edf7ddebd1fdc277b7.tar.xz
password-store-1a87b50208a9f26cb60d93edf7ddebd1fdc277b7.zip
grep: add to completion files
Diffstat (limited to 'src/completion')
-rw-r--r--src/completion/pass.bash-completion2
-rw-r--r--src/completion/pass.fish-completion1
-rw-r--r--src/completion/pass.zsh-completion1
3 files changed, 3 insertions, 1 deletions
diff --git a/src/completion/pass.bash-completion b/src/completion/pass.bash-completion
index f7a51e9..1f20f51 100644
--- a/src/completion/pass.bash-completion
+++ b/src/completion/pass.bash-completion
@@ -57,7 +57,7 @@ _pass()
{
COMPREPLY=()
local cur="${COMP_WORDS[COMP_CWORD]}"
- local commands="init ls find show insert generate edit rm git help version"
+ local commands="init ls find grep show insert generate edit rm git help version"
if [[ $COMP_CWORD -gt 1 ]]; then
local lastarg="${COMP_WORDS[$COMP_CWORD-1]}"
case "${COMP_WORDS[1]}" in
diff --git a/src/completion/pass.fish-completion b/src/completion/pass.fish-completion
index d8f97e2..10c9488 100644
--- a/src/completion/pass.fish-completion
+++ b/src/completion/pass.fish-completion
@@ -108,3 +108,4 @@ complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'pull' -d 'Pull cha
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'log' -d 'View changelog'
complete -c $PROG -f -A -n '__fish_pass_needs_command' -a find -d 'Command: find a password file or directory matching pattern'
+complete -c $PROG -f -A -n '__fish_pass_needs_command' -a grep -d 'Command: search inside of decrypted password files for matching pattern'
diff --git a/src/completion/pass.zsh-completion b/src/completion/pass.zsh-completion
index ca983e2..90045f0 100644
--- a/src/completion/pass.zsh-completion
+++ b/src/completion/pass.zsh-completion
@@ -78,6 +78,7 @@ _pass () {
"init:Initialize new password storage"
"ls:List passwords"
"find:Find password files or directories based on pattern"
+ "grep:Search inside decrypted password files for matching pattern"
"show:Decrypt and print a password"
"insert:Insert a new password"
"generate:Generate a new password using pwgen"