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

7 lines
110 B
Plaintext
Raw Normal View History

#compdef j
cur=${words[2, -1]}
autojump --completion ${=cur[*]} | while read i; do
compadd -U "$i";
2009-10-03 18:25:16 +00:00
done