Fix interactive completion with zsh-autocomplete
This commit is contained in:
parent
0e21153107
commit
0c6a8687b5
|
|
@ -112,6 +112,10 @@ if [[ -o zle ]]; then
|
|||
else
|
||||
__zoxide_result=''
|
||||
fi
|
||||
if [[ -v functions[.autocomplete._complete] ]]; then
|
||||
# zsh-autocomplete needs a match or it will run __zoxide_z_complete multiple times
|
||||
compadd ""
|
||||
fi
|
||||
\builtin printf '\e[5n'
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue