Oztaco
Oztaco

Reputation: 3459

Better code highlighting support in VS 2015?

Is it possible to achieve more sophisticated syntax highlighting in VS 2015? Specifically, I want to specify different colors for JS function names, function parameters, operators, and braces. Basically, I want to turn this:

VS 2015 screenshot with poor highlighting

into this:

VS Code screenshot with good highlighting

As you can see, the VS Code screenshot on the bottom has separate colors for the function name and parameters. However, I would also like to color the operators a different color as well similar to Sublime Text.

I already know about the "Fonts and Colors" tab in the Options menu, however it lumps functions, variables, etc. into "identifiers" and it lumps operators and braces into "operators," which doesn't serve my purpose well.

Upvotes: 0

Views: 67

Answers (1)

sergiol
sergiol

Reputation: 4337

Try to install the Viasfora extension.

Upvotes: 1

Related Questions