1
0
mirror of https://github.com/wting/autojump synced 2026-03-02 03:49:26 +00:00

update shell scripts to use new tab completion argument --complete, update docs with new --preserve option

This commit is contained in:
William Ting
2012-05-06 15:17:33 -10:00
parent ad10e13c4a
commit 6a16a7ec67
5 changed files with 12 additions and 6 deletions

2
bin/_j
View File

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