1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +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]} cur=${words[2, -1]}
autojump --completion ${cur[*]} | while read i; do autojump --completion ${=cur[*]} | while read i; do
compadd -U $i; compadd -U "$i";
done done