From 31250c77bfce764c9540037911ae25fb586de10c Mon Sep 17 00:00:00 2001 From: Daniel Shahaf Date: Wed, 19 Oct 2016 23:03:19 +0000 Subject: [PATCH] Revert "apply suffix and isearch zle_highlights on top" This reverts commit 79e4d3d1240599ab00a5e9aae54dfbd5c18fb270. --- zsh-syntax-highlighting.zsh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/zsh-syntax-highlighting.zsh b/zsh-syntax-highlighting.zsh index 1313d5c..35c0364 100644 --- a/zsh-syntax-highlighting.zsh +++ b/zsh-syntax-highlighting.zsh @@ -142,12 +142,6 @@ _zsh_highlight() # yank / paste (zsh-5.1.1 and newer) (( $+YANK_ACTIVE )) && (( YANK_ACTIVE )) && _zsh_highlight_apply_zle_highlight paste standout "$YANK_START" "$YANK_END" - # isearch - (( $+ISEARCH_ACTIVE )) && (( ISEARCH_ACTIVE )) && _zsh_highlight_apply_zle_highlight isearch underline "$ISEARCH_START" "$ISEARCH_END" - - # suffix - (( $+SUFFIX_ACTIVE )) && (( SUFFIX_ACTIVE )) && _zsh_highlight_apply_zle_highlight suffix bold "$SUFFIX_START" "$SUFFIX_END" - return $ret