Skip to content
Snippets Groups Projects
Commit 1a87b502 authored by Jason A. Donenfeld's avatar Jason A. Donenfeld
Browse files

grep: add to completion files

parent 0146aa50
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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'
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment