mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Quote the suggestion to support sh_split_word option
This commit is contained in:
parent
e5a5b0c1e0
commit
ab2742537f
2 changed files with 2 additions and 2 deletions
|
@ -129,7 +129,7 @@ zle -N autosuggest-clear _zsh_autosuggest_widget_clear
|
|||
zle -N autosuggest-execute _zsh_autosuggest_widget_execute
|
||||
|
||||
_zsh_autosuggest_show_suggestion() {
|
||||
local suggestion=$1
|
||||
local suggestion="$1"
|
||||
|
||||
_zsh_autosuggest_highlight_reset
|
||||
|
||||
|
|
|
@ -394,7 +394,7 @@ zle -N autosuggest-clear _zsh_autosuggest_widget_clear
|
|||
zle -N autosuggest-execute _zsh_autosuggest_widget_execute
|
||||
|
||||
_zsh_autosuggest_show_suggestion() {
|
||||
local suggestion=$1
|
||||
local suggestion="$1"
|
||||
|
||||
_zsh_autosuggest_highlight_reset
|
||||
|
||||
|
|
Loading…
Reference in a new issue