commit 84c8610c04c7d7f3a9d7bed3e95b22ce37d67491
parent 5ca6fdf4965f9e78dc9e60814ced42504d0f525d
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Sat, 29 Dec 2018 08:49:07 +0100
Fix pass/fzf integration on arch
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/links/.zshrc b/links/.zshrc
@@ -221,7 +221,8 @@ _fzf_complete_pass() {
stringsize="${#pwdir}"
find "$pwdir" -name "*.gpg" -print |
cut -c "$((stringsize + 1))"- |
- sed -e 's/\/\(.*\)\.gpg/\1/'
+ sed -e 's/\(.*\)\.gpg/\1/'
+ #sed -e 's/\/\(.*\)\.gpg/\1/'
)
}