mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2026-07-21 20:11:04 +00:00
13 lines
239 B
Bash
13 lines
239 B
Bash
|
|
#-------#
|
|
# Start #
|
|
#-------#
|
|
|
|
# Start the autosuggestion widgets
|
|
_zsh_autosuggest_start() {
|
|
_zsh_autosuggest_check_deprecated_config
|
|
_zsh_autosuggest_bind_widgets
|
|
}
|
|
|
|
autoload -Uz add-zsh-hook
|
|
add-zsh-hook precmd _zsh_autosuggest_start
|