ReSharper 2020.3 Help

Marker Bar and Status Indicator

Marker bar and Status Indicator visualize the results of the design-time code inspection in the current file and navigate between code issues. Also, the marker bar displays special marks for other features, for example when you highlight usages in the current file.

The marker bar is not shown and the status indicator shows the pause icon Themed icon error stripe off screen gray if:

Marker bar

Marker bar (also known as the 'Error Stripe') is a sidebar integrated into the editor scroll bar or displayed on the right of the scroll bar. The Marker bar can represent the following items as individual markers:

Markers have different colors representing kinds of corresponding items. Colors may vary between various color schemes but you can configure marker bar colors for each item kind individually.

The position of a marker on the bar indicates the relative position of the corresponding item in the file. You can get popup tips for each item by placing the mouse pointer over markers, and you can navigate directly to relevant lines of code by clicking on them.

Marker bar

Configure the appearance of the marker bar

  1. Select ReSharper | Options from the main menu or press Alt+R O, then choose Environment | Editor | Appearance on the left.

  2. Use the radio buttons under Marker bar to choose whether to display the marker bar and if it should be integrated into the scroll bar (starting from Visual Studio 2013).

  3. If the marker bar is integrated into the scroll bar, you can also set the width of the markers.

Configure colors of the marker bar markers

  1. Choose Tools | Options from the menu and then go to Environment | Font and Colors page.

  2. In the Display items list, find items that start with ReSharper and end with ... Marker on Error Stripe, for example: ReSharper Code Analysis Error Marker on Error Stripe.

  3. Use the Item foreground selector to pick a color for the selected marker.

Status indicator

Status indicator— an icon at the top of the marker bar. It shows the status of the code inspection in the current file or indicates the usage highlighting mode. When you you hover the mouse cursor over it, a popup appears to show the total number of errors and warnings in the current file, or (if you are in the usage highlighting mode) the number of usages in the file.

You can click the status indicator to jump between code issues or usages in the file.

Status indicator

Context menu of the status indicator

You can also right-click the status indicator to use the following commands and options from its context menu:

Go to Next/Previous Error / Warning / MessageThese commands appear if there are code issues in the current file. They allow you to navigate between code issues of the highest severity level. So if there are errors, they only navigate between errors, as soon as all errors are fixed they navigate between warnings, and so on.
Go to Next/Previous UsageThese commands appear when you highlight usages in file and allow you to jump between found usages.
Enhanced syntax coloring This option lets you enable or disable ReSharper syntax highlighting scheme.
If it is selected, language identifiers are highlighted with colors as defined in Visual Studio options: Tools | Options | Environment | Fonts and Colors.
The list of syntax identifiers provided by ReSharper is available in the Display items list, each name starting with the ReSharper prefix.

Note that by disabling this option you also disable symbol information tooltips that appear on mouse over.


The option is synchronized with the Color identifiers option on the Code Inspection | Settings page of ReSharper options.
Show import/include popup If this option is selected, a popup that suggests importing namespaces in C# and VB.NET shows up if one or more non-imported types are detected in the file:
Namespace import quick-fix
If the checkbox is not selected, the corresponding action will be available in the action list on Alt+Enter.
The option is synchronized with the Show the 'Import namespace' action using popup option on the Code Inspection | Settings page of ReSharper options.
Show Inlay Hints
Control+Alt+Shift+5
Toggles Inlay Hints in the current solution.
Enable Clang-Tidy Analysis
Control+Alt+Shift+D9
Toggles the integrated Clang-Tidy analysis for the current document.
Hide Visual Studio Light Bulb This option is not available in Visual Studio versions older than 2015.
If it is selected, Visual Studio's Quick Actions (light bulb and screwdriver icons) are not shown separately but integrated into ReSharper's action list.
The option is synchronized with the Hide Visual Studio light bulb option on the Environment | Editor | Visual Studio Features page of ReSharper options.
Hide Visual Studio Squiggles This option is not available in Visual Studio versions older than 2015.
If it is selected, Visual Studio's error highlighting in the editor is not displayed, only ReSharper's highlighting appears.
The option is synchronized with the Hide Visual Studio squiggles option on the Environment | Editor | Visual Studio Features page of ReSharper options.
Pause/Resume analysis
Control+Alt+Shift+D8
This option lets you exclude the current file from code inspection or include it if it was excluded earlier.

Meanings of status indicator icons

Status Indicator can have different icons with the following meanings:

Themed icon error stripe error screen grayWhenever you see a red marker, it means that the file contains errors that would either prevent the project from compiling or lead to exceptions in runtime, unless Treat warnings as errors is enabled in project properties.
Themed icon error stripe warning screen grayA yellow marker means that there are some warnings, but no errors that would prevent the project from compiling.
Themed icon error stripe ok screen grayA green marker means that your code doesn't contain errors or warnings, but there still can be code issues with minor severity levels (Suggestion or Hint ).
Themed icon error stripe off screen gray OFFThe file is excluded from code inspection. You can include it back thus enabling the code inspection by pressing Control+Alt+Shift+D8.
Themed icon error stripe find next screen grayWhen you highlight usages in file, marker shows blue marks corresponding to the usages and the status indicator displays the corresponding icon until you press Esc. In this mode, you can click the status indicator to jump between found usages.
Last modified: 08 March 2021