ReSharper 2019.1 Help

Creating a Live/Surround Template

Live/Surround templates can be used for generating code in existing files and (if there is the $SELECTION$ parameter in the template body) for surrounding code fragments with template code, such as try...catch statement.
Each live template is identified by a Shortcut — a short string of characters, e.g. foreach — that you can type right in the editor to invoke the template.

Live/surround templates can be used for a variety of things, e.g. for creating classes, DTO’s or skeletons for unit tests.

The body of a live/surround template consists of plain text, which will appear as is, and parameters. The idea is to combine these to maximize efficiency when invoking the template.

To create a new live/surround template

  1. In the main menu, choose ReSharper | Tools | Templates Explorer….

  2. In the Templates Explorer window that appears, click the Live Templates or Surround Templates tab.

  3. Optionally, if you want to create your template in a specific settings layer, choose the desired layer in the Layer drop-down list. To learn more, see Storage of Templates.

  4. Click New Template ThemedIcon AddLiveTemplate Screen Gray . The newly created template is opened in the Template Editor.

  5. Specify template shortcut in the Shortcut field. It is used to quickly invoke the template when creating code from template; it also appears in completion lists. In the Description field, type optional description for the template.
  6. To change the default scope of the template, click the Availability hyperlink. In the dialog that appears, use check boxes to define where the new template can be applied. You can expand some scopes to specify details (e.g. file masks or language versions):

    Templates selecting scope

  7. Create the body of the template by typing or pasting the desired code, mixing it with parameters.
    For example, the template body can look as follows:
    Live template body
    As you can see, there are 3 types of elements that have different highlighting:
    • text — anything written as a plain text in the template body will appear as is when we invoke the template.

    • predefined parameter — in our example, the $END$ parameter tells ReSharper where we want the cursor to be positioned once we have finished applying the template.

    • user-defined parameter — As soon as you type a parameter (prefixed and suffixed with $), it becomes available in the Parameters section to the right of the text area Edit variables dialog. You can configure all defined parameters as described in the Declaring Template parameters section.
      In our case, to establish the classname during its invocation, we make the $className$$ a parameter. The same occurs with the $idType since we do not know what type we want the Id to be. Finally comes the Id property. As we want it to resemble the classname, we just use the corresponding parameter suffixed with 'Id'.

    The different highlighting of the $className$$ parameter (red and black frame) means that the red entry will be used as the initial input position when in the Hot Spot Session when the template is invoked.

  8. With the Use in selector, specify whether the template can be used for generating new code, surrounding existing code, or both. In case you want to use the created template for surrounding code, add the $SELECTION$ parameter, which represents the text selected by the user before invoking the template.

  9. In the Mnemonic field, you can specify a [0-9] digit that will be used when you surround code with the template:
    • If some mnemonic digit is specified, the template will be available under Surround with... when you press Alt+Enter on the selection.

    • The specified mnemonic digit will appear next to the template when you press Ctrl+Alt+J (or choose ReSharper | Edit | Surround With Template… in the menu). You can then press the corresponding key to quickly apply this template.

  10. Configure template formatting options:
    • Select the Reformat check box to make ReSharper automatically reformats the expanded code fragment according to your formatting preferences settings.

    • Select the Shorten qualified references check box to make ReSharper automatically insert namespace import directives or remove qualifiers that become redundant after the template is applied. If this check box is not selected, ReSharper will not insert any namespace import directives.

  11. To save the template, choose File | Save Selected Items on the Visual Studio menu or press Ctrl+S.

Last modified: 1 August 2019

See Also