summaryrefslogtreecommitdiff
path: root/src/completion/pass.zsh-completion (follow)
Commit message (Collapse)AuthorAgeFilesLines
* zsh-completion: only remove next char if /Jason A. Donenfeld2014-04-221-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From Kevin: I found a small bug in the zsh completions. Basically when the PASSWORD_STORE_DIR ends in a slash the first character of the result is eaten, making completion essentially useless. (It does this before determining matches). This can be fixed by changing what is line 106 in my version from: _values -C 'passwords' $(find -L "$prefix" \( -name .git -o -name .gpg-id \) -prune -o $@ -print | sed -e "s#${prefix}.##" -e 's#\.gpg##' | sort) to _values -C 'passwords' $(find -L "$prefix" \( -name .git -o -name .gpg-id \) -prune -o $@ -print | sed -e "s#${prefix}/\\?##" -e 's#\.gpg##' | sort) The difference is the first sed regex expression. The original version assumed that the next character was a slash and removed it while the new version only removes it if it is a slash. "s#${prefix}.##" -> "s#${prefix}/\\?##" Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Reported-by: Kevin Cox <kevincox@kevincox.ca>
* reencrypt: remove option, do automaticallyJason A. Donenfeld2014-04-181-5/+1
|
* reencryption: add to completion filesJason A. Donenfeld2014-04-181-0/+2
|
* move/copy: always reencrypt passwords at destinationJason A. Donenfeld2014-04-171-1/+2
|
* mv: Add pass mv/rename supportJason A. Donenfeld2014-04-171-0/+7
| | | | | Based-on-work-by: Matthieu Weber <mweber@free.fr> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* grep: add to completion filesJason A. Donenfeld2014-04-151-0/+1
|
* find: add find/search commandJason A. Donenfeld2014-04-151-0/+1
| | | | | | | This relies on a patched version of tree to work, unfortunately. Hopefully upstream will accept our patch. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* Update zsh completion.Johan Venant2014-03-241-2/+7
|
* Makefile: do not use recursion and organizeJason A. Donenfeld2014-03-221-0/+116