1
0
mirror of https://github.com/wting/autojump synced 2026-09-22 20:04:57 +00:00
Files
wting_autojump/bin/_j
2013-12-31 09:54:50 -06:00

7 lines
108 B
Plaintext

#compdef j
cur=${words[2, -1]}
autojump --complete ${=cur[*]} | while read i; do
compadd -U "$i";
done