Live template variables
When you expand a live template abbreviation, its variables either appear as input fields where you can type values or are replaced with values. These may be default values that you can modify or values calculated using functions.
To declare variables within templates, use the following format: $VAR$
.
In expressions, use variable names without opening and closing dollar characters $
, for example, lowercaseAndDash(ComponentName)
.
Define each variable using an expression and provide a default value for cases when the expression fails to evaluate.
This expression may contain the following constructs:
String constants in double quotes
Names of other variables defined in a live template
Predefined functions with possible arguments
Configure template variables
In the Settings dialog (Control+Alt+S), go to .
Select a template where you want to configure variables.
Specify variables in the template text and click Edit Variables….
In the Edit Template Variables dialog, you can do the following for each variable:
Change the variable name
Define an expression using predefined functions
Specify the default value for cases when the expression fails to evaluate
Specify whether you want to skip the variable when prompting the user for input if the expression evaluated successfully
Predefined template variables
CLion supports the following predefined live template variables that cannot be modified:
$END$
indicates the position of the cursor when the code snippet is complete, and you can no longer press Tab to jump to the next variable.$SELECTION$
is used in surround templates and denotes the code fragment to be wrapped. After the template expands, it wraps the selected text as specified in the template. For example, if you selectEXAMPLE
in your code and invoke the"$SELECTION$"
template via the assigned abbreviation or by pressing Control+Alt+T and selecting the desired template from the list, CLion will wrap the selection in double quotes as follows:"EXAMPLE"
.
Functions used in live template variables
The following functions can be used to define live template variables:
Function | Description |
---|---|
| Provides the variants of type deduction in range-base |
| Returns the characters that indicate the end of a block comment in the current language context. |
| Returns the characters that indicate the start of a block comment in the current language context. |
| Converts a string into camelCase. For example, |
| Capitalizes the first letter of a string. For example, |
| Capitalizes all the letters of a string, and inserts an underscore between the parts. For example, |
| Returns the name of the current class (where you expand the template). Can be useful for constructor templates. |
| Returns the contents of the system clipboard. |
| Removes |
| Returns the characters that indicate the end of a comment in the current language context. For languages with line comments, the return value is empty. |
| Returns the characters that indicate the start of a comment in the current language context. For languages with line comments, the return value is the start of a line comment, same as lineCommentStart(). |
| Invokes code completion at the position of the variable. |
| Invokes smart type completion at the position of the variable. |
| Returns a concatenation of all the strings passed to the function as parameters. For example, |
| Returns the current system date. By default, without a parameter, it returns the date in the current system format. To use a different format, provide a parameter according to the SimpleDateFormat specification. For example, the |
| Returns a list of columns for a table or a view. The |
| Returns a name of a table or a view. The |
| Replaces the first letter of a string with the corresponding lowercase letter. For example, |
| Returns a list of strings suggested for completion when the template expands. For example, |
| Escapes special characters so that the result can be used in a Java string. For example, it replaces the tab character with |
| Returns the name of the current method using the |
| Returns the string format specifier for the object which is passed as a parameter of this function. |
| Returns the names of collections and enumerations available in the current scope. For an example, see the |
| Returns the name of the current file with its extension. |
| Returns the name of the current file without its extension. |
| Returns the absolute path to the current file. |
| Returns the current file path relative to the current project. To check what the relative path is for a given file, right-click it and select Copy Reference, or press Control+Alt+Shift+C. |
| Returns the first word of the string passed as the parameter. For example, |
| Returns the characters that indicate the start of a line comment in the current language context. |
| Returns the current line number. |
| Converts a string into lower case and inserts n-dashes as separators. For example, |
| Returns the name of the method in which the template expands. |
| Returns the list of visible objects that contain member functions, listed as parameters. |
| Returns the name of the current Python function. |
| Finds all occurrences of For example, the |
| Declares the left-side variable with a type of the right-side expression. Some predefined templates in the iterations group use the |
| Returns the parameter details when adding a parameter to a function or method. |
| Converts a string into snake_case. For example, |
| Returns the specified string with spaces as separators. For example, |
| Replaces spaces with underscores in the string passed as the parameter. For example, |
| Returns the substring up to the specified delimiter. This is helpful for removing the extensions in test file names. For example, |
| Returns a suggested name for the index variable in an iteration from most commonly used ones: Some of the predefined templates in the iterations group ( |
| Suggests the name for a variable based on the variable type and its initializer expression, according to your code style settings that refer to the variable naming rules. For example, if it is a variable that holds an element within an iteration, CLion makes a guess on the most reasonable name taking into account the name of the iterated container. Some of the predefined templates in the iterations group ( |
| Returns the current system time. By default, without a parameter, it returns the time in the current system format. To use a different format, provide a parameter according to the SimpleDateFormat specification. For example, the |
| Transforms a string with underscores (like snake_case) into camelCase. For example, |
| Transforms underscores in a string to spaces. For example, |
| Returns the name of the current user. |
| Returns a variable that is an instance of the object used as a range expression in a loop. |
| Returns a variables that is an instance of the object that contains |
| Returns all variables that may be assigned to the type passed as the parameter. For example, . If you pass an empty string |
Example
As an example, let's create a live template for a simple C++ class, using variables and functions. The template will contain three variables:
$ClassName$
: a name for a new class$Food$
: a list of three possible values: "meat", "grass", and "honey"$AnimalName$
: the class name starting with a lowercase letter so that it can be used in a sentence
Create a template with variables
Press Control+Alt+S to open the IDE settings and select
.Select the C/C++ group, click , and select Live Template.
In the Abbreviation field, specify the characters that will be used to expand the template. For example,
animal
.In the Template text field, paste the following template:
class $ClassName$: public Animal { public: string Food = "$Food$"; void printFood () { std::cout << "The $AnimalName$ eats " << Food << std::endl; } };Click Edit Variables… and, in the Edit Template Variables dialog, configure the variables:
$ClassName$
remains untouched meaning we expect users to type a value when they apply this template.$Food$
: in the Expression field, enterenum("meat","grass","honey")
. This function allows selecting one of the predefined values when users apply this template.$AnimalName$
: in the Expression field, enterdecapitalize(ClassName)
. This function takes the value of theClassName
variable and converts its first letter to the lower case. Select Skip if defined because we don't need to prompt a user for input.
Click the link in the bottom left corner to define or change the language context where the template will be applicable:
Use the created template
Start typing the name of a live template (
animal
in our example).Type a value of the variable (a class name in our example) and press Tab to jump to the next variable.
Using the keyboard arrows, select one of the values for the
food
string.