diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index a2d95dda..d9a0e053 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -654,9 +654,9 @@ func (b *Buffer) clearCursors() { } var bracePairs = [][2]rune{ - [2]rune{'(', ')'}, - [2]rune{'{', '}'}, - [2]rune{'[', ']'}, + {'(', ')'}, + {'{', '}'}, + {'[', ']'}, } // FindMatchingBrace returns the location in the buffer of the matching bracket