Sublime Forum

Bracket matching no longer works

#1

I’m unable to see the underline from the matching brackets, parenthesis etc.

I’ve got all match_brackets_* set to true, but nothing, this happened before updating to the latest version.

0 Likes

#2

What colour scheme are you using?

0 Likes

#3

I’m using DobDark from here.

0 Likes

#4

Can you run these commands in the console, and verify that both return true:

view.settings().get(‘match_brackets’)
view.settings().get(‘match_brackets_content’)

0 Likes

#5

All true.

[code]>>> view.settings().get(‘match_brackets’)
True

view.settings().get(‘match_brackets_content’)
True[/code]

0 Likes

#6

Wait! Nevermind!

I realised that I was trying to match brackets inside a string, which doesn’t work. Is there a way we could get them to work?

0 Likes