blob: 5825daf93204ae5941f6563248f0ed3a41c32cd6 (
plain)
1
2
3
4
5
6
7
|
compdef _pass mypass
zstyle ':completion::complete:mypass::' prefix "$HOME/Data/henksfiles/password-store"
mypass() {
PASSWORD_STORE_DIR=$HOME/Data/henksfiles/password-store pass $@
}
|