mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
|
#compdef j
|
||
|
cur=${words[2, -1]}
|
||
|
|
||
|
autojump --complete ${=cur[*]} | while read i; do
|
||
|
compadd -U "$i";
|
||
|
done
|