Dot_Files/.zsh/completions/_j

7 lines
108 B
Plaintext
Raw Normal View History

2022-01-09 00:26:48 -06:00
#compdef j
cur=${words[2, -1]}
autojump --complete ${=cur[*]} | while read i; do
compadd -U "$i";
done