JetBrains Rider 2020.3 Help

Error Stripe and Status Indicator

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

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

Error stripe

Error stripe is a sidebar integrated into the editor scroll bar. The Error stripe 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 error stripe 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.

Error stripe

If the code corresponding to the marker is outside the visible editor area, and Show code lens on scrollbar hover is enabled on the Editor | General | Appearance page of JetBrains Rider settings Ctrl+Alt+S, JetBrains Rider will display this code fragment in a popup when you hover the mouse over the marker:

JetBrains Rider: Viewing code outside of the editor frame

Configure the appearance of the error stripe

  1. Press Ctrl+Alt+S or choose File | Settings (Windows and Linux) or JetBrains Rider | Preferences (macOS) from the menu, then choose Editor | Color Scheme | General on the left.

  2. Choose an item in the list and use the Error stripe mark checkbox to show or hide it on the error stripe; use the color picker next to it to choose the color to represent the item on the error stripe.

    JetBrains Rider: Configuring marker bar (error stripe)

  3. If you are not sure how to find the item marked on the error stripe, you can locate its settings in the following way:

    1. Click the error stripe marker so that your caret gets to the related item in the editor.

    2. Press Ctrl+Shift+A, start typing jump to colors and fonts and pick this command in the list.

    3. You will see all appearance properties that affect the item and its presentation on the error stripe. In the example below, the yellow error stripe mark is displayed for the Warning.

      JetBrains Rider: editing colors and fonts

    4. When you pick this property, you will get directly to its settings.

Status indicator

Status indicator— by default, is shown as widget with number of issues in the top-right corner of the editor, or in the Compact View mode, as an icon at the top of the error stripe. It shows the status of the code inspection in the current file. When you click it in the compact view mode a popup appears to show the total number of errors and warnings in the current file.

Status indicator in the 'widget' mode

Context menu of the status indicator

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

Configure InspectionsOpens code inspections settings, where you can change severity levels of specific inspections or disable them altogether.
Show Auto-Import Tooltip 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 JetBrains Rider options.
Compact ViewWhen enabled, the status indicator is shown as a single icon at the top of the error stripe.

Meanings of status indicator icons

Status Indicator can have different icons with the following meanings:

Icons general errorWhenever 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.
Icons general warningA yellow marker means that there are some warnings, but no errors that would prevent the project from compiling.
Icons general inspections typosA 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 ).
OFFThe file is excluded from code inspection. You can include it back thus enabling the code inspection by pressing Ctrl+Alt+Shift+8.
Last modified: 08 March 2021