YonahW
YonahW

Reputation: 16520

How can I change the font and color settings for js files in Visual Studio 2010?

I don't see where in the fonts and colors settings javascript settings can be changed.

Upvotes: 6

Views: 3664

Answers (3)

Burak Karakuş
Burak Karakuş

Reputation: 1410

This is not a completely related topic for this question, but Google redirects me for what I searched, so I guess people may benefit from it being here.

In Visual Studio 2015, if you are working on a .cshtml document and if you have javascript code inside of it, you need to change Bracematching(Rectangle) in Display Items list.

Upvotes: 1

user2406245
user2406245

Reputation: 101

VS2012 - Javascript Display Items:

Identifier = "All JS Identifiers"

Keyword = "All JS Keywords, i.e.: var, if, else, this"

String = "all string items"

Comment = "all comments in JS"

Upvotes: 10

sean e
sean e

Reputation: 11925

Open the IDE options dialog: Tools | Options | Environment | Fonts and Colors

In the Display Items list, look for items that start with "Script"

Upvotes: 9

Related Questions