JetBrains Rider 2020.3 Help

Multiple Carets and Selection Ranges

When typing, copying, or pasting, you can toggle multiple carets so that your actions apply in several places simultaneously. Advanced editor actions, such as code completion and live templates are supported as well and will apply to each caret.

The most recently added caret is considered primary. Highlighting of the current editor line, completion lists, and other visual assistance features will apply to the primary caret. This caret will also remain when you turn off multiple carets.

Add, remove, and clone carets

You can add carets in two different ways:

To existing charactersUsing virtual spaces
If there is no character, tab, or whitespace at the position where you want to add a new caret, the new caret will be added to the last character position in the target line.This way you can add new carets anywhere after the last character in any line. As soon as you start typing at a position beyond the end of the line, the necessary number of spaces will be added between the end of the line and the beginning of your input.
You can enable virtual spaces on the Editor | General page of the Settings/Preferences Ctrl+Alt+S and they are also enabled in the column selection mode.
JetBrains Rider: Multiple carets in the default selection mode
JetBrains Rider: Multiple carets virtual space mode

Add carets at selected locations using mouse

  • Press Shift+Alt and click the left mouse button at the target location of the caret.

Add carets above or below the current caret using keyboard

  • Press Ctrl twice, and then without releasing it, press up or down arrow keys.

    If virtual spaces are enabled, new carets will be added exactly above or below the current caret position. Otherwise, in lines, which are shorter than the current offset, carets will added at line ends.

  • To add carets exactly above or below the current caret position, do one of the following:

    • Press Alt+Shift+Up/ Alt+Shift+Down.

    • Enable the column selection mode Alt+Shift+Insert and then press Shift+Up/ Shift+Down.

Remove multiple carets

  • Press Esc to delete all the existing carets, except the one that was added last.

  • Press Shift+Alt and click carets that you want to remove.

Select multiple non-contiguous ranges

When you select multiple text ranges (non-contiguous selection), note the following:

  • Each selection range is associated with its own caret, so you can start typing to replace all selected ranges with your input, or you can press Left Arrow or Right Arrow to remove the selection ranges but keep multiple carets at beginnings/ends of the ranges.

  • As soon as selection ranges overlap, they are merged into a single selection range with a single caret.

  • Selection works independently of the code structure, that is selection ranges can include any characters, identifiers, words in string literals, comments, or their parts. So you have to be careful when changing the selected ranges as they may include different identifiers or their parts.

Select multiple words or text ranges

  1. Press and hold Shift+Alt.

  2. Double-click words you want to select.

  3. Drag the mouse over text ranges you want to select.

    JetBrains Rider: Select multiple text fragments

Select multiple occurrences of a word or a text range

  1. If you want to select words, set your caret at an occurrence of the desired word. Otherwise, select the desired range with the mouse or with keyboard shortcuts.

  2. Do one of the following:

    • Successively press Alt+J to find and select the next occurrence of case-sensitively matching word or text range.

    • Press Ctrl+Alt+Shift+J to select all case-sensitively matching words or text ranges in the document.

  3. To remove selection from the last selected occurrence, press Alt+Shift+J.

  4. After the second or any consecutive selection was added with Alt+J, you can skip it and select the next occurrence with F3. To return the selection to the lastly skipped occurrence, press Shift+F3.

    JetBrains Rider. Select multiple occurrences. skip occurrence

Find and select multiple occurrences of a string

  1. Press Ctrl+F or choose Edit | Find | Find from the main menu. The search pane appears at the top of the active editor.

  2. Enter the string that you want to find and select. To the right of the search string, you will see the number of occurrences in the current document.

  3. Optionally, restrict your search by case Match case Alt+C or to match only whole words Words Alt+O.

  4. Press Ctrl+Alt+Shift+J or click Select All Occurrences Select All Occurrences on the toolbar.

Use mouse to select rectangular fragments of text in normal selection mode

  1. Make sure that the column selection mode is disabled.

  2. To select ranges as a single rectangle, press and hold Alt or the middle mouse button.
    To select multiple rectangles, press and hold Ctrl+Alt+Shift (Windows or UNIX)/ ⌘⌥⇧ (macOS).

  3. Drag the mouse pointer over desired ranges.

  4. Alternatively, set the caret at one corner of the rectangle, press and hold Shift+Alt, and then click at the diagonally opposite corner.

  5. As a result, you will have multiple selection ranges in each affected document line. On lines that are shorter than the rectangle, the selection will only span to the last character.

    Note that if Inlay Hints or Code Vision is enabled, the hint insertions will visually shift selection ranges but they will not be copied.

    Select multiple rectangular fragments of text

Select rectangular fragment using keyboard

  1. While holding down Alt+Shift on Windows and Linux or ⌃+⇧ on macOS, press Up/ Down/ Left/ Right to make a rectangular selection.

  2. The selection could also include empty spaces after ends of lines. These will be replaced with whitespaces in the clipboard if you copy the selection.

    JetBrains Rider Select rectangular fragment using keyboard

Column selection mode

In the column selection mode, keyboard navigation and selection shortcuts work differently to simplify adding multiple carets and making rectangular selections:

  • You will be able to set your caret anywhere after the last character in any line. As soon as you start typing at a position beyond the end of the line, the necessary number of spaces will be added between the end of the line and the beginning of your input.

  • Pressing Shift+Up/ Shift+Down will add a new caret above/below the current one instead of making a continuous selection.

  • The enabled column selection mode only affects the current editor tab. If you close or reopen the tab, it will switch back to the normal mode.

Toggle between normal and column selection modes

  • Press Alt+Shift+Insert.

  • From the main menu, choose Edit | Column Selection Mode.

  • From the context menu of the editor, choose Column Selection Mode.

Copy and paste with multiple carets

When text ranges selected with multiple carets are copied Ctrl+C or cut Ctrl+X, selections for each caret are placed to the clipboard as separate lines, even if the original selections were on the same line.

If the column selection mode was enabled, the selection could also include empty spaces after ends of lines. These will be replaced with whitespaces in the clipboard if you copy the selection.

When you paste any multi-line content from the clipboard, you can add multiple carets for each line in desired places, and then press Ctrl+V to paste each line at its own caret.

Last modified: 08 March 2021