mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-08 00:44:26 +01:00
b8e4aa2b0c
This fixes a problem when completion filenames with colons. Source: https://git.zx2c4.com/password-store/commit/?id=ff5ac38f7984d7b3d2912dba106baa2fed52e530 |
||
---|---|---|
.. | ||
_pass | ||
README.md |
pass
This plugin provides completion for the pass password manager.
To use it, add pass
to the plugins array in your zshrc file.
plugins=(... pass)
Configuration
Multiple repositories
If you use multiple repositories, you can configure completion like this:
compdef _pass workpass
zstyle ':completion::complete:workpass::' prefix "$HOME/work/pass"
workpass() {
PASSWORD_STORE_DIR=$HOME/work/pass pass $@
}