From 14546b3bbc3f03412c55c2797df134c88bc83cbf Mon Sep 17 00:00:00 2001 From: Matthew Martin Date: Sun, 24 Dec 2017 22:30:42 -0600 Subject: [PATCH] driver: Highlight even after a widget returns non-zero Closes #90. --- zsh-syntax-highlighting.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh-syntax-highlighting.zsh b/zsh-syntax-highlighting.zsh index d100edbbc..b6bef9e54 100644 --- a/zsh-syntax-highlighting.zsh +++ b/zsh-syntax-highlighting.zsh @@ -284,7 +284,7 @@ _zsh_highlight_add_highlight() # $1 is name of widget to call _zsh_highlight_call_widget() { - builtin zle "$@" && + builtin zle "$@" _zsh_highlight }