m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/completion/pass.bash-completion
AgeCommit message (Collapse)Author
2021-09-23Replace 'which' with POSIX equivalent 'command -v'Ayush Agarwal
The 'which' command is an external command that must be called each and every time pass is used. 'which' is also not mentioned in the README as one of the dependencies that might be needed to run pass. Instead of 'which', we can use the POSIX compatible and shell built-in 'command -v'. It saves pass from making an external call and is, arguably, more reliable than using 'which' as mentioned in the following link.
2018-10-19bash-completion: detect whether to use gpg/gpg2 binary for complete keysElan Ruusamäe
Signed-off-by: Elan Ruusamäe <glen@pld-linux.org>
2018-10-19bash_completion: do not leak variables to globals scopeElan Ruusamäe
Signed-off-by: Elan Ruusamäe <glen@pld-linux.org>
2018-07-26Add custom bash completion for extensionsLars Flitter
Bash completion now allows usage of extension commands. (see pass.bash-completion for details)
2016-02-06completion: Output a space when appropriate on bash completionAnas Syed
Did this by not passing "-o nospace" to complete. Instead, put "compopt -o nospace" after a COMPREPLY that shouldn't add a space when autocompleting the only match
2015-05-11bashcomp: PASSWORD_STORE_DIR env var does not necessarily have a trailing slashSamuel Lethiec
2014-05-08completion: add new generate flagsJason A. Donenfeld
2014-04-18bash-completion: filter dot files from resultsJason A. Donenfeld
2014-04-18reencrypt: remove option, do automaticallyJason A. Donenfeld
2014-04-18reencryption: add to completion filesJason A. Donenfeld
2014-04-17move/copy: always reencrypt passwords at destinationJason A. Donenfeld
2014-04-17mv: Add pass mv/rename supportJason A. Donenfeld
Based-on-work-by: Matthieu Weber <mweber@free.fr> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2014-04-15grep: add to completion filesJason A. Donenfeld
2014-04-15find: add find/search commandJason A. Donenfeld
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>
2014-04-06Make completion cleaner.Jason A. Donenfeld
2014-04-06bash-completion: complete the new init -p switch.Jason A. Donenfeld
2014-03-22Makefile: do not use recursion and organizeJason A. Donenfeld