simplify check for bracket under cursor

This commit is contained in:
garinger 2011-07-12 08:07:08 -07:00
parent 05e4a031c7
commit 2fe9505647

View File

@ -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
}