Using To-do Lists
Ctrl+Alt+.
ReSharper_ShowTodoExplorer
ReSharper provides an easy way to track tasks and technical debt in your code — code items (comments, string literals, or identifiers) matching a specific pattern can be easily located in the whole solution using the To-do Explorer window.
To-do items are highlighted in the editor and on the marker bar according to their types (Edit, Normal, Question, Warning, Error). Colors are configurable on the page of Visual Studio options:
To-do patterns
By default, ReSharper provides three predefined patterns for commonly used To-do items of the following types:
- A comment containing
TODO
- Normal - A comment containing
BUG
- Error - A
NotImplementedException
in the code - Edit
You can also define your own patterns, so that you could quickly access your specific technical debt items in the To-do Explorer window.
To define a custom To-do pattern
- Open the page of ReSharper options.
- Click Add on the toolbar.
- Provide a title for your To-do pattern and specify a regular expression with keywords that you want to detect in comments. For example,
(\W|^)(?<TAG>Refactor)(\W|$)(.*)
. - Select where ReSharper should apply the expression to find the To-do items (comments, strings, and/or identifiers).
- Optionally, specify whether the pattern is case sensitive.
- Select a type for the pattern to define how matched items will be colored in the editor and in the To-do Explorer window.
- Click OK to add this pattern to the list.
- You can also duplicate, edit or remove existing patterns.
- Click Save to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see managing and sharing resharper settings.
Navigating between To-do items
To navigate between To-do items in the current file, use To-do marks on the marker bar.
To study To-do items in the whole solution
- Press Ctrl+Alt+. or choose in the main menu.
- To study the source code of the selected item right in the window, click Show Preview
on the toolbar. If necessary, you can locate the preview pane on the bottom of on the right.
- In the To-do Explorer window that opens, click
or
to navigate to the next or previous item. To locate To-do items in the editor, double-click on them.
Filtering To-do items
Depending on the size and age of the codebase, there may be lots of To-do items. To concentrate on specific items, you can filter To-do items by pattern — just choose the desired pattern in the Filter selector to display items matching this pattern and hide all others.
This feature is supported in the following languages and technologies:
The instructions and examples given here address the use of the feature in C#. For details specific to other languages, see corresponding topics in the ReSharper by Language section.