1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

fix completion for zsh (thanks simon!)

This commit is contained in:
Joel Schaerer 2010-04-27 14:16:08 +02:00
parent 3fa72536e9
commit d0b7758130

4
_j
View File

@ -18,6 +18,6 @@
cur=${words[2, -1]}
autojump --completion ${cur[*]} | while read i; do
compadd -U $i;
autojump --completion ${=cur[*]} | while read i; do
compadd -U "$i";
done