JetBrains Rider 2023.3 Help

Rearrange code elements

JetBrains Rider allows you quickly rearrange expressions, statements, type members, and other elements in your code.

How it works

To rearrange code, press Ctrl+Shift+Alt over a code element or selection that you want to move. Then add one of the keyboard arrows to the key combination to invoke the corresponding command:

Move up and Move down commands are pretty straightforward — they can move elements within a specific scope up and down relatively to other elements in this scope. For example, you can move up and down types in a file, type members in a type, statements in a type member or in a compound statement, and so on.

If the current element is first or last in its scope, JetBrains Rider will not allow you to move it any further with up/down commands.

Move left and Move right commands serve two purposes:

  • Rearrange elements that are normally written in a single line. For example, you can move left and right attributes, function parameters, operands in an expression, parts of assignment statements, and so on. Note that the left/right commands are applied to these elements even if they are written in multiple lines.

  • Move a statement inside the compound statement or region that directly follows it (move right) or move a statement outside the compound statement or region (move left).

Although JetBrains Rider tries not to allow invalid moves, there are still cases when you can break either logic or compilation of your code. Note that JetBrains Rider provides a lot of refactorings that help you safely rearrange your code, for example, Move Type to Outer Scope refactoring and Change Signature refactoring. If your code is broken after moving a code element, press Alt+Enter and check for available quick-fixes. Most of the time, you will find the right refactoring right in the action list.

Applicable cases

JetBrains Rider allows you to move elements in the following ways:

  • Types and type members. Note that if the symbol has XML comments, JetBrains Rider moves them together with the symbol.

    • Types up and down within the current file or within a containing declaration

    • Type members up and down within the type

    • Base types left and right

    • Type parameters left and right

    • Type parameter constraints up and down

    • Attributes left and right

    • Parameters in declarations and arguments in usages of functions left and right (if you reorder parameters for a function declaration, JetBrains Rider suggests the Change Signature refactoring that makes sure to change arguments in all usages of the function.

    • Setters and getters of properties up and down

  • Statements

    • Parts of assignment statements left and right

    • Statements within a function or a compound statement up and down

    • Statements out of a compound statement (left) or into an immediately following compound statement (right)

    • Switch sections within a switch statement up and down

    • Statements from one clause of an if-else, try-catch statement, or from one switch section to another one up and down

    • catch clauses within a try-catch statement up and down

    • Closing brace of a compound statement up and down (greedy brace). To move the closing brace, place the caret outside of the brace, press Ctrl+Shift+Alt and then use the up and down arrows to include statements that follow the current compound statement inside it or move the last statement outside it.

    • Opening or closing brace of a type or a namespace also works as a 'greedy brace'. In this case, it will include/exclude nested types/members/namespaces.

  • Expressions

    • Operands in expressions left and right

    • Elements in collection and array initializations left and right

    • Clauses in query expressions up and down

    • Range expression operands (C# 8) left and right

  • Other elements

    • Type parameters of generic type/method declarations

    • Arguments in template strings left and right

    • Values inside interpolated strings

    • Line and c-style comments up and down

    • #region block up and down, out of and into another #region block

    • #region and #endregion directives up and down

    • Line in a text file where the caret is placed up and down

    • Selection in a text file up and down

Last modified: 18 March 2024