Don't brace highlight with selection

This commit is contained in:
Zachary Yedidia
2018-01-07 20:58:01 -05:00
parent fc2566a0de
commit 805d6ccaf7

View File

@@ -149,7 +149,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) {
if viewCol >= 0 {
st := curStyle
if colN == matchingBrace.X && lineN == matchingBrace.Y {
if colN == matchingBrace.X && lineN == matchingBrace.Y && !buf.Cursor.HasSelection() {
st = curStyle.Reverse(true)
}
c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, st, 1}