ReSharper 2021.1 Help

Create Source Code Using Live Templates

ReSharper | Edit | Insert Live Template…
Control+J
ReSharper_LiveTemplatesInsert

Live templates are ReSharper's far more intelligent version of Visual Studio's code snippets. Unlike code snippets, ReSharper's templates can predict from the context, which variables, fields, and types can be used. In most cases you do not need to type anything yourself — just choose from a list of suggested values.

ReSharper provides plenty of predefined live templates for all supported languages. The list of predefined templates includes templates for iterating through collections, writing assertion methods, creating new arrays, outputting values, coding LINQ queries, generating auto-properties, and more.

Create a code fragment using live template

  1. In the text editor, set the caret where you want to insert a code fragment from a live template.

  2. Do one of the following:

    • Type a template shortcut or its initial letters. For example, in a C# method, type itar to invoke the iterate an array template.

    • Press Control+J or choose ReSharper | Edit | Insert Live Template… in the main menu, choose a template from the suggestion list, and press Tab or Enter.

  3. If the template has editable parameters (that is, requires user input), ReSharper deploys a Hot Spot Session in the editor and sets the input position at the first parameter. Then you can do the following:
    • If ReSharper suggests some values for the current parameter, use Up and Down arrow keys to navigate through the list of suggested values, or just type in a desired value.

    • Press Tab or Enter to accept the value and move to the input position of the next parameter. If this is the last parameter, the hot spot session completes and the caret moves to the end position defined for the session.

    • Press Shift+Tab to move the input focus to the input position of the previous parameter.

    • Press Esc to exit the hot spot session. In this case, all session parameters will be initialized with default values.

Below are several examples that show how live templates are commonly applied.

Apply a template with a shortcut

Type psvm (the shortcut for the public static void Main template) where you want to place the Main method:

A pop-up suggesting the 'psvm' template

Press Tab to expand the template:

ReSharper: Creating live templates

Select a template from the suggestion list

Set the caret at a position where inserting an assertion method is appropriate and press Control+J:

A popup with the list of live templates

After selecting asrt in the suggestion list, press Enter or Tab:

ReSharper: Creating live templates

Reduce the suggestion list

Press Control+J, and then type it and select the desired template whose shortcut starts with 'it':

Popup with suggested templates

Apply a template with editable parameters

itar (Iterate an array) is the shortcut for a template that contains code for iterating over an array. Type this shortcut where such iteration is appropriate:

ReSharper: Creating live templates

When you press Tab (the template invocation key), the template expands replacing itar with the template code. Note that ReSharper calculates suggested values based on the context and inserts them in the corresponding template parameters:

'itar' template expanded

Keep in mind that itar has editable parameters so ReSharper deploys a Hot Spot Session in the editor to guide you through them. You can recognize it by the presence of the red border around the index parameter, which is the first input position in this template. ReSharper automatically suggested i as the name for the index variable. If you want to change the suggested value, just type a new name. All references to the variable within the expanded template will change simultaneously as you type the new name. In the following figure, i has been changed to idx:

Changing template parameter in the template editing mode

Regardless of whether you have changed the suggestion at the current input position, pressing Tab or Enter moves the caret to the input position of the next editable parameter of the template:

Moving to the next template parameter

ReSharper has automatically detected all array variables in the scope, and suggested selecting one of them (namely, the last declared one). Had there been only one array element in the scope, ReSharper would have inserted its name automatically (without popping up a list). You can control pop-up suggestion lists using the following keys:

  • Use Up and Down arrow keys to navigate through the list.

  • Use Esc to close the list and enter, for example, your own getArray() method call into this position.

  • Press Tab or Enter to apply the selected/specified option and move to the input position of the next parameter.

ReSharper detects changes to the type of the array elements. It automatically updates the type of the variable holding the current array element, and suggests a suitable name for it:

Viewing template parameter suggestions

After filling up the last input parameter, press Tab or Enter to get the caret moved to the specified end position of the template:

Template editing mode is closed and the caret moved automatically to the end position

In many cases, default values suggested by ReSharper may be accepted, thus you can immediately proceed to writing the loop body after very few keystrokes.

This feature is supported in the following languages and technologies:

Language: C#Language: VB.NETLanguage: C++Language: HTMLLanguage: ASP.NETLanguage: RazorLanguage: JavaScriptLanguage: TypeScriptLanguage: CSSLanguage: XMLLanguage: XAMLLanguage: ResxLanguage: Build ScriptsLanguage: ProtobufLanguage: JSON
Feature is available in C#Feature is available in Visual Basic .NETFeature is available in C++Feature is available in HTMLFeature is available in ASP.NETFeature is available in RazorFeature is available in JavaScriptFeature is available in TypeScriptFeature is available in CSSFeature is available in XMLFeature is available in XAMLFeature is available in Resource filesFeature is available in build script files Feature is not available in Protobuf Feature is not available in JSON

The instructions and examples given here address the use of the feature in C#. For details specific to other languages, see corresponding topics in the ReSharper by Language section.

Last modified: 29 April 2021