ReSharper 2016.2 Help

Source Templates

Traditionally, templates or snippets are stored and managed outside of your source code. This makes sense because normally a template helps you quickly produce some universal boilerplate code. For these purposes, ReSharper provides a lot of predefined live templates, surround templates, and file templates. You can also create your own templates of these types.

However, you may want to produce some repeatable code that is only relevant in your current project or solution. ReSharper allows you to streamline such tasks with Source Templates.

In this topic:

How it Works

In contrast to traditional templates, source templates can be created anywhere in the code of your project as extension methods. You can define them for some specific types of your project or for any standard types. You can even make a source template available for all types by creating it as an extension method for object.

As soon as a template is defined, it becomes available in the code completion list for the objects of corresponding type and its inheritors. When you choose the template in the list, ReSharper inserts the code from the body of the template method into your code.

Here is an example that illustrates a simplest application of a source template. Our template forEach, which will be available for all generic collections, will insert code that iterates the collection. We can define the template in any static class in our project. ReSharper will identify it as a template by the [SourceTemplate] attribute:

public static class Foo { [SourceTemplate] public static void forEach<T>(this IEnumerable<T> x) { foreach (var i in x) { //$ $END$ } } }

To deploy this template, we now can use automatic completion for any collection object:

Source template in the completion list

When you select the template item, the object is replaced with the template text:

public Test(IEnumerable<string> enumerable) { foreach (var i in enumerable) { } }

Note that the //$ $END$ comment in the template definition is nothing else but the predefined template parameter defining the caret position after the template is applied. You can use other parameters in your template to make the template more flexible.

Why Use Source Templates

As mentioned above, source templates are most helpful for the code blocks that you want to reuse in the current project or solution. Here are some points that show the advantages of source templates over traditional templates:

  • To work with source templates, you do not have to switch anywhere - everything is in your editor.
  • The templates are strongly typed, which means that you can only call them on relevant objects.
  • As long as template definitions compile, you can be sure that the template code has no errors.
  • While creating and editing source templates, your favorite ReSharper features are at your disposal: code inspection, navigation features, code completion, just to name a few.

Creating Source Templates

For definitions of your source templates, you can create a new class or use an existing static class where you keep your extension methods.

Template method and its body

A source template must be a public extension method and have the [SourceTemplate] attribute. The attribute is defined in the JetBrains.Annotations namespace, together with [NotNull], [CanBeNull] and other code annotation attributes. Therefore, to define source template methods, you should enable ReSharper code annotation support in your project.

In the template body, you can write the code that does anything you like. Normally, it does something with the caller object, but it is not necessary.

You may also need to use some code that would not compile in the template method. For example, you may want to use the caller object name to generate a name of a local variable. In this case, place this code inside a line or a block comment that starts with the '$' sign:

[SourceTemplate] public static void Bar(this Entity entity) { /*$ var $entity$Id = entity.GetId();; DoSomething($entity$Id); */ }

Parameters and macros

In source templates, you can use parameters amd macros. Depending on the macro that you are going to use for the parameter, you can choose between several ways of specifying and using parameters.

  • You can create a template parameter by adding a new parameter to the template method. By default, it will behave as an editable parameter, i.e. it will receive focus during the Hot Spot Session when you apply the template. If you want to define a macro for this parameter, you need to add the [Macro] attribute as shown in the example below.

    • The 'Expression' property of the attribute defines which macro should be used. You can specify one of the available template macros.
    • The 'Editable' property optionally specifies whether the user will be able to edit the parameter when the template is applied. By default, all user-defined parameters are editable; the value '-1' makes the parameter non-editable.
      If the same parameter is used several times in the template, only one occurrence becomes editable when the template is applied; other occurrences are changed synchronously. If necessary, you can define which occurrence becomes editable by specifying its zero-based index in the 'Editable' property.
    [SourceTemplate] public static void newGuid(this object obj, [Macro(Expression = "guid()", Editable = -1)] string newguid) { Console.WriteLine(newguid); }
  • You can turn any local variable in your template method into a template parameter. To do so, you need to add the [Macro] attribute to the template method definition, and specify the variable name in its 'Target' property. For example:

    [SourceTemplate] [Macro(Target = "item", Expression = "suggestVariableName()")] public static void forEach<T>(this IEnumerable<T> collection) { foreach (var item in collection) { //$ $END$ } }
  • You can use predefined parameters as well as all user-defined parameters the same way as in other ReSharper templates, wrapping the parameter identifier with two '$' signs ($param_name$).

    You can use user-defined template parameters inside string literals, e.g:

    Console.WriteLine("A random GUID: $newguid$");

    To use template parameters outside string literals, you need to put them in a special template comment that starts with the 's' sign: //$ $param_name$. or /*$ $param_name$ */. For example:

    [SourceTemplate] [Macro(Target = "newguid", Expression = "guid()", Editable = -1)] public static void newGuid(this object obj) { //$ var guid = "$newguid$"; Console.WriteLine("A random GUID: $newguid$"); }

    The caller object as well as template parameters created as method parameters and local variables can be used both with and without the '$' signs inside the special templates comments.

Applying source templates

To apply your source template, first make sure that the template is in scope. That is, either you are in the same namespace or that the template's namespace is explicitly imported. into your code.

To create a code fragment from a source template

  1. Set the caret where you want to deploy the template.
  2. Type an object, for which you want to deploy the template, then type a dot, and then start typing the name of the template or its CamelHumps abbreviation.
  3. Select the template in the completion list and click on it or press Enter.
  4. The caller object, the dot, and the part of the template name that you typed are replaced with the template body.
  5. If the template has editable parameters (i.e. 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.

This feature is supported in the following languages/technologies:

C# VB.NET C++ HTML ASPX Razor JavaScript TypeScript CSS XML XAML RESX Build Scripts Protobuf JSON
Feature available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available Feature not available
Last modified: 15 December 2016