vote up 1 vote down star

My team often puts the word TODO in unfinished sections of code. Is there a way to add user-specified keywords to Visual Studio so that these are highlighted in some way? For example, in vim the word TODO is automatically highlighted.

For example, I'd want to see something like this:

//This is a stub - TODO* move this to another project*

flag

80% accept rate

3 Answers

vote up 2 vote down check

In the Tools menu go to Options:

Environment - Task List

Here you can enter Tokens.

link|flag
I have TODO as a token, but it is not highlighting it in the editor window ... do I need to change something else? Thanks! – LuckyLindy Mar 11 at 3:49
This won't highlight the words in source. It will only add them to the task list – JaredPar Mar 11 at 3:51
sorry, yes, jared is correct – scottman666 Mar 11 at 3:53
vote up 0 vote down

In Visual Studio:

Go to Tools > Options > Environment > Task list

There you can add any user=specified words, and it will appear in your task list any time you make a build and view the task list, in the same manner that //TODO: appears.

link|flag
vote up 4 vote down

Visual Studio supports custom syntax highlighting through the Managed Package Framework.

link|flag

Your Answer

Get an OpenID
or

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