Sublime Forum

Changing color for class name during object declaration in C++

#1

How can I change the color for class name during declaration of object of any class in c++?


Here I want to change the color for myClass and vector underlined in the screenshot. How can I do this?

0 Likes

#2

That’s not possible because those underlined tokens are not scoped. A scope is required to be able to assign them a color.

0 Likes