diff --git a/highlighters/brackets/brackets-highlighter.zsh b/highlighters/brackets/brackets-highlighter.zsh index 46ab7bd..675b4cd 100644 --- a/highlighters/brackets/brackets-highlighter.zsh +++ b/highlighters/brackets/brackets-highlighter.zsh @@ -79,10 +79,8 @@ _zsh_highlight_brackets_highlighter() fi done ((pos = CURSOR + 1)) - if [[ -n $levelpos[$pos] ]]; then - local otherpos - ((otherpos = -1)) - [[ -n $matching[$pos] ]] && otherpos=$matching[$pos] + if [[ -n $levelpos[$pos] ]] && [[ -n $matching[$pos] ]]; then + local otherpos=$matching[$pos] region_highlight+=("$((otherpos - 1)) $otherpos standout") fi }