mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2025-06-05 12:36:28 +08:00
check for deprecated 'default' value
This commit is contained in:
parent
a7f0106b31
commit
2aecead4f0
@ -49,7 +49,9 @@ zmodload zsh/zpty
|
|||||||
|
|
||||||
# Strategies to use to fetch a suggestion
|
# Strategies to use to fetch a suggestion
|
||||||
# Will try each strategy in order until a suggestion is returned
|
# Will try each strategy in order until a suggestion is returned
|
||||||
(( ! ${+ZSH_AUTOSUGGEST_STRATEGY} )) && ZSH_AUTOSUGGEST_STRATEGY=(history)
|
if (( ! ${+ZSH_AUTOSUGGEST_STRATEGY} )) || [ "$ZSH_AUTOSUGGEST_STRATEGY" = "default" ];then
|
||||||
|
ZSH_AUTOSUGGEST_STRATEGY=(history)
|
||||||
|
fi
|
||||||
|
|
||||||
# Widgets that clear the suggestion
|
# Widgets that clear the suggestion
|
||||||
(( ! ${+ZSH_AUTOSUGGEST_CLEAR_WIDGETS} )) && ZSH_AUTOSUGGEST_CLEAR_WIDGETS=(
|
(( ! ${+ZSH_AUTOSUGGEST_CLEAR_WIDGETS} )) && ZSH_AUTOSUGGEST_CLEAR_WIDGETS=(
|
||||||
|
Loading…
Reference in New Issue
Block a user