Sublime Forum

How do this in Sublime Text?

#1

How do this in Sublime Text?. In notepad++ I can color code, when put the cursor in the code. I wanna do this in Sublime text2.

http://raylinaquino.com/notepad-cursor-color.jpg

0 Likes

#2

Couple ways - turn on bracket matching :

"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,

Or install backet highlighter: https://github.com/facelessuser/BracketHighlighter

it will put open/close brackets in your gutter

https://camo.githubusercontent.com/771f9df16f29a134369cbcb0913f55932d156983/687474703a2f2f646c2e64726f70626f782e636f6d2f752f3334323639382f427261636b6574486967686c6967687465722f4578616d706c65312e706e67

0 Likes