up vote 1 down vote favorite
1
share [g+] share [fb]

Is it possible somehow to color specified code in specified color in any version of visual studio? For example, make background of

if( VERIFY( ... ) )

green and background of

if( ! VERIFY( ... ) )

red? Maybe some addon exists or some version of visual studio has such functionality?

link|improve this question

You can write your own addin anytime you like, can't you. I thought it would be complicated and it is, since VS extensibility frameworks is a big huge mess, but with lots of patience it can be done. I've done it, so can anybody else. – Robert Koritnik Dec 1 '09 at 9:52
Have you written a normal addin (code that inherits IDTExtensibility2) or an "Visual Studio Extensibility" package? Writing addin is painful, but i can do it. Writing extensibility package is pure hell :( – Eye of Hell Dec 1 '09 at 12:47
Could you please explain the question a bit more, are you taking about the spell corrections or the case rules of naming conventions. – Priyank Bolia Dec 5 '09 at 18:16
I just want to color specific text in specific color for code readability, nothing more as stated in my example, so text "if( VERIFY" is colored, for example, green – Eye of Hell Dec 5 '09 at 23:12
feedback

5 Answers

up vote 3 down vote accepted
+100

You can use Resharper's "ToDo Items" to accomplish this.

  • Resharper -> Options
  • Create a pattern.
    Here you can specify the color, pattern, icon etc. This should already give you colorized code, the rest is optional, but makes it easier to find the patterns.
    (look at existing patterns for the syntax, or check the docs)
  • You can use filters to find the patterns, and combinations of patterns
    You could create a filter that contains both your patterns for instance.
  • use Resharper -> Tools -> ToDo-Items to search for the patterns
link|improve this answer
Resharper is good, but it is for C# only :(. And my main focus is C/C++/text :( – Eye of Hell Dec 8 '09 at 8:17
That's a shame, didn't realize that :( – Sander Rijken Dec 8 '09 at 9:30
feedback

NO PLUGIN NEEDED

According to MSDN and this tutorial, you can set user-defined keywords for syntax highlighting in a usertype.dat file, which you should save in the same directory as Visual Studio's msdev.exe, or devenv.exe for VS.NET.

Now restart Visual Studio. Then in VS you can set the font properties for those keywords.

Edit: BTW, see the download here for a predefined usertype.dat with a lot of keywords ready to use.

link|improve this answer
Only one color for all. – Eye of Hell Dec 8 '09 at 8:15
feedback

I don't know of an existing addin that does anything like that but I do know that Developer Express, the company that makes CodeRush, makes the addin engine freely available as a product called DxCore. This makes is much easier to create an addin that decorates the Visual Studio text editor. In Visual Studio 2010, a lot of the extremely difficult code that DxCore abstracts is no longer necessary as there is an official extensibility model for decorating the editor.

Here's a link to some DxCore plugin samples on Google Code.

link|improve this answer
As i can see, where is no existing DxCore plugin available that can color specified text? – Eye of Hell Dec 6 '09 at 10:11
feedback

No, but you may be interested in FxCop, it's more elaborate, but it should allow you the ability to detect the case you're talking about (via a custom rule, if it doesn't exist). It may be more work to set up, but it's worth it (especially if work in a team, and/or, have an existing CI system).

link|improve this answer
1  
Fxcop does not highlight syntax? And it's only for specific languages like visual basic etc, and i need for c/c++ :( – Eye of Hell Oct 14 '09 at 5:58
Ah, bugger about the languages. I was suggesting to use it to enforce style rules about the way if statements were written (I was taking much liberty with the underlying question :) – Noon Silk Oct 14 '09 at 6:01
feedback

According to the VS Extensibility form Moderator, Ed Dore, it is not possible:

http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/93fc6d61-cfdb-432d-8541-d7dce498cef5/

Unfortunately, no. The code implementing the document tabbing was developed with native Win32 code, and currently doesn't have any VS SDK or automation hooks into it.

It is too bad as this would be beyond useful. (Keep track of different types of files and such.)

link|improve this answer
Visual Assist doing it somehow ^_^ – Eye of Hell Dec 7 '09 at 21:09
1  
And, furthermore, he speaks about tabs atop of text editor. And i simply need to color some text in text editor :) – Eye of Hell Dec 7 '09 at 21:37
If you had an answer why didn't you post it for all to benefit and save time of others trying to answer it... – Vaccano Dec 8 '09 at 0:15
Though I admit that I misread your question, I thought you wanted colored tabs not tags. – Vaccano Dec 8 '09 at 0:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.