|
|
@ -132,13 +132,13 @@ _zsh_autosuggest_bind_widget() {
|
|
|
|
|
|
|
|
|
|
|
|
# Built-in widget
|
|
|
|
# Built-in widget
|
|
|
|
builtin)
|
|
|
|
builtin)
|
|
|
|
eval "_zsh_autosuggest_orig_$widget() { zle .$widget }"
|
|
|
|
eval "_zsh_autosuggest_orig_${(q)widget}() { zle .${(q)widget} }"
|
|
|
|
zle -N $prefix$widget _zsh_autosuggest_orig_$widget
|
|
|
|
zle -N $prefix$widget _zsh_autosuggest_orig_$widget
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
|
|
# Completion widget
|
|
|
|
# Completion widget
|
|
|
|
completion:*)
|
|
|
|
completion:*)
|
|
|
|
eval "zle -C $prefix$widget ${${widgets[$widget]#*:}/:/ }"
|
|
|
|
eval "zle -C $prefix${(q)widget} ${${widgets[$widget]#*:}/:/ }"
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
@ -148,8 +148,8 @@ _zsh_autosuggest_bind_widget() {
|
|
|
|
# correctly. $WIDGET cannot be trusted because other plugins call
|
|
|
|
# correctly. $WIDGET cannot be trusted because other plugins call
|
|
|
|
# zle without the `-w` flag (e.g. `zle self-insert` instead of
|
|
|
|
# zle without the `-w` flag (e.g. `zle self-insert` instead of
|
|
|
|
# `zle self-insert -w`).
|
|
|
|
# `zle self-insert -w`).
|
|
|
|
eval "_zsh_autosuggest_bound_$widget() {
|
|
|
|
eval "_zsh_autosuggest_bound_${(q)widget}() {
|
|
|
|
_zsh_autosuggest_widget_$autosuggest_action $prefix$widget \$@
|
|
|
|
_zsh_autosuggest_widget_$autosuggest_action $prefix${(q)widget} \$@
|
|
|
|
}"
|
|
|
|
}"
|
|
|
|
|
|
|
|
|
|
|
|
# Create the bound widget
|
|
|
|
# Create the bound widget
|
|
|
|