aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/completions/zsh
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-08-21 15:37:06 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-08-21 15:37:06 -0300
commit6ae4c3884701f31edbf84666a7b1b76dc01a1068 (patch)
treed3ded3c8c7c39849ab4dbd4bc097caa8cfa619af /lib/keyringer/completions/zsh
parentbfd718703aac6fe706ee751f232b0e80601913d1 (diff)
downloadkeyringer-6ae4c3884701f31edbf84666a7b1b76dc01a1068.tar.gz
keyringer-6ae4c3884701f31edbf84666a7b1b76dc01a1068.tar.bz2
Shell completions: fix handling of keyrings with '-' in their names
Diffstat (limited to 'lib/keyringer/completions/zsh')
-rw-r--r--lib/keyringer/completions/zsh/_keyringer3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/keyringer/completions/zsh/_keyringer b/lib/keyringer/completions/zsh/_keyringer
index b4ccdd4..6142949 100644
--- a/lib/keyringer/completions/zsh/_keyringer
+++ b/lib/keyringer/completions/zsh/_keyringer
@@ -19,9 +19,8 @@ _keyringer() {
fi
# Process config
- source $config/config
local keyrings="`ls --color=never $config | sed -e '/^config$/d' | xargs`"
- local keyring_path="`eval echo '$'$words[2]`"
+ local keyring_path="`grep -e "^$words[2]=" "$config/config" | tail -n 1 | cut -d = -f 2 | sed -e 's/"//g' -e "s/'//g" | sed -e 's/ *#.*$//'`"
local instances="`echo $keyrings | sed -e 's/ /$\\\|^/g' -e 's/^/^/' -e 's/$/$/'`"
_arguments \