diff --git a/zsh-autosuggestions.zsh b/zsh-autosuggestions.zsh index e780225..20be0c6 100644 --- a/zsh-autosuggestions.zsh +++ b/zsh-autosuggestions.zsh @@ -173,7 +173,8 @@ _zsh_autosuggest_bind_widget() { # Completion widget completion:*) _zsh_autosuggest_incr_bind_count $widget - eval "zle -C $prefix$bind_count-${(q)widget} ${${(s.:.)widgets[$widget]}[2,3]}" + local -a widget_split=("${(@s.:.)widgets[$widget]}") + eval 'zle -C "$prefix$bind_count-${(q)widget}" "${widget_split[2]}" "${widget_split[3]}"' ;; esac