views:

4067

answers:

3

Is it possible to customize the syntax highlighting in Visual Studio 2005? Up to now, I found no way to do this.

In eclipse for example, it's possible to setup custom highlighting.

+1  A: 

Yes, see Tools...Options....Fonts and Colors.

Here is a theme gallery if you want to browse some options.

Ben Hoffstein
I cannot find the entry "Fonts and Colors" ... I use a german version of visual studio 2005, may be the menu entries are located differently?
koschi
+5  A: 

Do you mean more than just changing the colors -- like defining a new language with its own symbols and keywords? If so,

http://msdn.microsoft.com/en-us/library/bb165041(VS.80).aspx

Lou Franco
+1  A: 

For C++, you can add a file called usertype.dat that contains your list of custom keywords.

This MSDN page has a few more details.

Andy Stevenson