mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
cleaned the code
This commit is contained in:
parent
0abbcabe89
commit
904fc8b744
12
_j
12
_j
@ -4,14 +4,8 @@ cur=${words[2, -1]}
|
||||
|
||||
ret=$(autojump --completion "${cur[*]}")
|
||||
|
||||
#echo "complete on " ${cur[*]}
|
||||
|
||||
if [ "$ret" != "" ]; then # if at least one answer
|
||||
#if [ $( echo "$ret" | wc -l ) -eq 1 ]; then # Only one answer
|
||||
# echo $ret
|
||||
#else # several answers
|
||||
for i in $(echo "$ret"); do
|
||||
compadd -U $i
|
||||
done
|
||||
#fi
|
||||
for i in $(echo "$ret"); do
|
||||
compadd -U $i # add all of them as possible completion
|
||||
done
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user