mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Allow loading the plugin in the background
If zle is already active (plugin has been loaded in the background), just start the widgets and set up the automatic re-binding (if manual rebind has not been specified). See GitHub issue #481
This commit is contained in:
parent
19e375bbc8
commit
767d55eba0
2 changed files with 16 additions and 4 deletions
|
@ -21,5 +21,11 @@ _zsh_autosuggest_start() {
|
||||||
# Mark for auto-loading the functions that we use
|
# Mark for auto-loading the functions that we use
|
||||||
autoload -Uz add-zsh-hook is-at-least
|
autoload -Uz add-zsh-hook is-at-least
|
||||||
|
|
||||||
# Start the autosuggestion widgets on the next precmd
|
# If zle is already running, go ahead and start the autosuggestion widgets.
|
||||||
add-zsh-hook precmd _zsh_autosuggest_start
|
# Otherwise, wait until the next precmd.
|
||||||
|
if zle; then
|
||||||
|
_zsh_autosuggest_start
|
||||||
|
(( ! ${+ZSH_AUTOSUGGEST_MANUAL_REBIND} )) && add-zsh-hook precmd _zsh_autosuggest_start
|
||||||
|
else
|
||||||
|
add-zsh-hook precmd _zsh_autosuggest_start
|
||||||
|
fi
|
||||||
|
|
|
@ -854,5 +854,11 @@ _zsh_autosuggest_start() {
|
||||||
# Mark for auto-loading the functions that we use
|
# Mark for auto-loading the functions that we use
|
||||||
autoload -Uz add-zsh-hook is-at-least
|
autoload -Uz add-zsh-hook is-at-least
|
||||||
|
|
||||||
# Start the autosuggestion widgets on the next precmd
|
# If zle is already running, go ahead and start the autosuggestion widgets.
|
||||||
add-zsh-hook precmd _zsh_autosuggest_start
|
# Otherwise, wait until the next precmd.
|
||||||
|
if zle; then
|
||||||
|
_zsh_autosuggest_start
|
||||||
|
(( ! ${+ZSH_AUTOSUGGEST_MANUAL_REBIND} )) && add-zsh-hook precmd _zsh_autosuggest_start
|
||||||
|
else
|
||||||
|
add-zsh-hook precmd _zsh_autosuggest_start
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue