Marker Bar and Status Indicator
Marker Bar and Status Indicator enable you to observe 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 ReSharper items, e.g. when you highlight usages in the file.
The marker bar is not shown and the status indicator shows the pause icon if:
The Marker bar property is set to Do not show on the page of ReSharper options.
The editor displays decompiled code.
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 Status Bar can represent the following items as individual markers:
Code issues found by ReSharper's design-time inspection.
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 pop-up 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.

To configure the appearance of the marker bar
Open the
page of ReSharper options.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).
If the marker bar is integrated into the scroll bar, you can also set the width of the markers.
To configure colors of the markers
Choose
in the menu and then go to page.In the Display items list, find items that start with ReSharper and end with ... Marker on Error Stripe, e.g.: ReSharper Code Analysis Error Marker on Error Stripe.
Use the Item foreground selector to pick a color for the selected marker.
Status Indicator
Status Indicator — a small icon at the top of the Marker Bar — shows the status of the code inspection in the file or indicates the usage highlighting mode . When you hover the mouse cursor over it, the indicator shows 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 on the status indicator to jump between code issues or usages in the file.

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 / Message | These 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 Usage | These 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. |
Show import/include popup | If this option is selected, a pop-up that suggests importing namespaces shows up if there is one or more non-imported types are detected in the file: |
Show parameter name hints | Toggles inline parameter name hints on method calls. |
Enable Clang-Tidy Analysis | Toggles the integrated Clang-Tidy analysis for the current document. |
Suppress VS bulb | This option is not available in Visual Studio versions older than 2015. |
Suppress VS squiggles | This option is not available in Visual Studio versions older than 2015. |
Pause/Resume analysis | 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:
| Whenever 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. |
| A yellow marker means that there are some warnings, but no errors that would prevent the project from compiling. |
| A 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). |
| The file is excluded from code inspection. |
| When 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 on the status indicator to jump between found usages. |