JetBrains Rider 2023.3 Help

First steps with JetBrains Rider

This topic will help you quickly get started with JetBrains Rider, and become familiar with its most frequently used features.

The first step

JetBrains Rider is a keyboard-centric product. Most actions have default keyboard shortcuts, which you can customize.

Among all of the predefined keymaps, you will most probably choose one of the following:

  • Visual Studio/Visual Studio (macOS) — this keymap is recommended for users who:

  • Visual Studio 2022 — this keymap is recommended for Windows users who have experience with plain Visual Studio without ReSharper.

  • ReSharper/ReSharper (macOS) — this keymap is recommended for users who have experience with Visual Studio + ReSharper and who preferred the 'ReSharper 2.x/IntelliJ IDEA' keyboard scheme in ReSharper.

  • IntelliJ/IntelliJ (macOS) — this keymap is recommended for users who have experience with IntelliJ IDEA or some of the JetBrains IntelliJ-platform-based IDEs and who preferred to use the IntelliJ/macOS keymap there.

For more information, refer to Customize keyboard shortcuts

Access frequently used commands

The navigation bar at the top of the Rider main window does not show many commands, but the most indispensable ones are at your fingertips:

JetBrains Rider: using navigation bar to access most frequently used actions

You can build your solution, change and manage build configurations and run/debug configurations, launch and stop your program, access VCS operations, and search everywhere.

JetBrains Rider provides a lot of navigation and search features. Let's look at some of the most useful ones.

Jump to declaration

Press the Ctrl key and hover over your code. You will see that all symbols defined elsewhere become underlined when in focus. You can click any symbol while holding down the Ctrl key to navigate directly to its declaration. If the symbol is defined in the current solution, JetBrains Rider opens the corresponding file and brings the caret to the declaration. If the symbol is defined in a compiled library, JetBrains Rider will decompile the declaration for you.

Go to Declaration with Ctrl+click

For more information, refer to Go to Declaration.

Find usages

To navigate in the opposite direction, that is to find all places in your solution where the symbol is used, press Alt+F7. JetBrains Rider will quickly find and display all usages of the symbol. For more information, refer to Find Usages.

Check available navigation actions

Another handy navigation shortcut is Ctrl+Shift+G. When you press it on any symbol, JetBrains Rider will show you all available navigation options:

Navigate To

For more information, refer to Navigate To.

Find anything in your solution

If you need to find anything in your solution, press Ctrl+N, G. The list of suggestions appears as soon as you invoke this feature and initially includes your recent files and navigated items. You can start typing to find types, symbols, files, recent edits, recent files, and recently viewed methods. For more information, refer to Search Everywhere.

Locate current file in the solution tree

When a navigation command brings you to a new file, you may want to see where it is in the Solution Explorer. Just press Ctrl+J, P and the Solution Explorer will scroll to the current file and highlight it. For more information, refer to Locate current document in Solution/Assembly Explorer

Code in the editor

When you are working in the editor, many code editing helpers are at hand. Here are a couple of them.

Code completion (IntelliSense)

JetBrains Rider's IntelliSense works automatically by default, but you can always invoke JetBrains Rider's code completion features explicitly, either after you have typed something or even instead of typing, wherever any meaningful code is allowed:

  • Pressing Ctrl+Shift+Space invokes type-matching completion, which provides more intelligent suggestions based on the expected type of the expression.

  • Pressing Ctrl+Alt+Space invokes second basic completion, which displays all types that match a given prefix regardless of what namespace they belong to. It also inserts appropriate namespace import directives to the current file if necessary.

Select and move code blocks

Wherever your caret is, try pressing Ctrl+W/Ctrl+Shift+W. These shortcuts allow you to successively select a symbol, line, or block of code so that you can easily select any desired expression for copying, cutting, or moving. For more information, refer to Handle caret and select text.

If you need to move the selected code block, press Ctrl+Shift+Alt and then use the arrow keys to move the block to any allowed position. For more information, refer to Rearrange code elements

The power of Alt+Enter

Very often you will see one of many different action indicators in the left part of the editor. You can press Alt+Enter to see what JetBrains Rider has to suggest at the current caret position:

JetBrains Rider: Action list

Here are a couple of examples:

  • If you see a red bulb ThemedIcon.RedBulb.Screen.(Gray).png or a yellow bulb ThemedIcon.YellowBulb.Screen.(Gray).png icon, this means JetBrains Rider has detected an error or other code issue and it can help you fix it. Press Alt+Enter to take advantage of this. For more information, refer to Quick-fixes for code issues.

  • A hammer ThemedIcon.ContextAction.Screen.(Gray).png icon means an opportunity to quickly modify the code at the caret. It is entirely optional. If you do want to make changes, press Alt+Enter to see context actions available to help you quickly change symbol visibility, add code that iterates over a collection, and more.

  • Even if there are no action indicators in view, can also press Alt+Enter to quickly find and execute any JetBrains Rider action in scope. Just start typing and choose from the matches that appear:

Refactor code

JetBrains Rider provides many more refactorings than Visual Studio does, but even more importantly, its refactorings are significantly more usable and wider in scope while still being safe to use.

Memorizing all the refactorings and their shortcuts is not an easy task, but luckily you don’t have to. You can simply press Ctrl+Alt+Shift+T on any symbol in your code to see which refactorings are available for that symbol.

Generate code

To help you focus on non-trivial tasks, JetBrains Rider provides a lot of features for generating boilerplate code automatically. For example, you can call a non-existent method and JetBrains Rider will create this method based on the call, taking into account the return type and the types of arguments.

Generate type members

When your caret is anywhere within a type declaration, press Alt+Insert. In the popup menu that opens, select an item that you want to generate for the type. JetBrains Rider can create constructors, properties, overriding members, and more. For more information, refer to Code generation.

Generating type members with JetBrains Rider

Code style matters

With JetBrains Rider, you can control most of the style aspects in your code, including naming standards, formatting rules, order of members in files and types, and many other tiny things (such as order of modifiers or whether to use the 'var' keyword).

The default values of JetBrains Rider code style features reflect Microsoft guidelines and numerous best practices. At the same time, you can adjust every tiny aspect of code style to fit your personal or corporate preferences.

To apply code style rules, press Ctrl+R, C. JetBrains Rider will run code cleanup with one of the default profiles (Full Cleanup, Reformat & Apply Syntax Style and Reformat Code) .

Last modified: 18 March 2024