24 lines
954 B
Bash
24 lines
954 B
Bash
|
|
||
|
#--------------------------------------------------------------------#
|
||
|
# Start #
|
||
|
#--------------------------------------------------------------------#
|
||
|
|
||
|
# Start the autosuggestion widgets
|
||
|
_zsh_autosuggest_start() {
|
||
|
# By default we re-bind widgets on every precmd to ensure we wrap other
|
||
|
# wrappers. Specifically, highlighting breaks if our widgets are wrapped by
|
||
|
# zsh-syntax-highlighting widgets. This also allows modifications to the
|
||
|
# widget list variables to take effect on the next precmd. However this has
|
||
|
# a decent performance hit, so users can set ZSH_AUTOSUGGEST_MANUAL_REBIND
|
||
|
# to disable the automatic re-binding.
|
||
|
if (( ${+ZSH_AUTOSUGGEST_MANUAL_REBIND} )); then
|
||
|
add-zsh-hook -d precmd _zsh_autosuggest_start
|
||
|
fi
|
||
|
|
||
|
_zsh_autosuggest_bind_widgets
|
||
|
}
|
||
|
|
||
|
# Start the autosuggestion widgets on the next precmd
|
||
|
autoload -Uz add-zsh-hook
|
||
|
add-zsh-hook precmd _zsh_autosuggest_start
|