File | Settings | Live Templates - Edit Variables for Windows and Linux
IntelliJ IDEA | Preferences | Live Templates - Edit Variables for OS X
Ctrl+Alt+S
The dialog opens when you click the Edit Variables button in the Template Text area on the Live Templates page.
The Edit Variables button is enabled only if the template body contains at least one user-defined variable, that is, a variable different from $END$
or $SELECTION$
.
Use this dialog box to create and edit expressions for variables in the selected live template.
On this page:
Controls
Item | Description |
Name | In this text box, view or edit the variable name in the format |
Expression | In this text box, specify the expression to have the value of the corresponding template input field calculated automatically. This expression may contain constructs of the following basic types:
Type an expression manually or select a predefined function from the drop-down list. The list shows also the number and type of parameters, if any, for the selected function. The available functions are listed alphabetically in the Functions table. |
Default value | In this text box, specify the default string to be entered in the corresponding input field of the expanded template, if the expression does not give any result after calculation. Note that a default value of a variable is an expression that can refer to other live template variables. To define the default value as a literal, enclose it in quotation marks. |
Skip if defined | Select this check box to have IntelliJ IDEA proceed with the next input field, if the value of the current input field is defined. |
Move Up / Move Down | Use these buttons to change the order of variables in the list. The order of variables in the table determines the order in which IntelliJ IDEA will switch between the corresponding input fields when the template is expanded. |
Predefined Functions to Use in Live Template Variables
Item | Description |
| Creates a symbol of type with an annotation that resides at the specified location. For an example, see Live Templates in the iterations |
| Suggests all array variables applicable in the current scope. For an example, see Live Templates in the iterations |
| Suggests a supertype for a Kotlin object expression. |
| Returns the string passed as a parameter, converted to camel case. For example, |
| Capitalizes the first letter of the name passed as a parameter. |
| Capitalizes the all letters of a CamelCase name passed as a parameter, and inserts an underscore between the parts. For example, if the string passed as a parameter is |
| Casts the right-side expression to the left-side expression type. It is used in the iterations |
| Returns the name of the current class (the class where the template is expanded). |
| This expression substitutes for the class name completion at the variable position. |
| Returns the contents of the system clipboard. |
| Returns CamelCase string out of snake_case string. For example, if the string passed as a parameter is |
| This expression substitutes for the code completion invocation at the variable position. |
| This expression substitutes for the smart type completion invocation at the variable position. |
| Returns component type of an array. For example, see the Live Templates in the iterations group in the other |
| Returns the current package name. |
| Returns the current system date in the specified format. By default, the current date is returned in the default system format. However, if you specify date format in double quotes, the date will be presented in this format: |
| Replaces the first letter of the name passed as a parameter with the corresponding lowercase letter. |
| Shows the children of the class entered as a string parameter. |
| List of comma-delimited strings suggested for completion at the template invocation. |
| Escapes the specified string. |
| Returns the type which is expected as a result of the whole template. Makes sense if the template is expanded in the right part of an assignment, after return, etc. |
| Returns file name with extension. |
| Returns file name without extension. |
| Returns the first word of the string passed as a parameter. |
| Returns Groovy script with the specified code. You can use Also, |
| Makes a guess on the type of elements stored in a |
| Returns the type of an iterable component, such as an array or a collection. |
| Returns the name of a variable that can be iterated. |
| Returns the current line number. |
| Returns lower case separated by dashes, of the string passed as a parameter. For example, the string |
| Returns the name of the embracing method (where the template is expanded). |
| Returns the list of parameters of the embracing method (where the template is expanded). |
| Returns the type of the value returned by the current method (the method within which the template is expanded). |
| Returns the fully qualified name of the current class (the class where the template is expanded). Clear the Shorten FQ names |
| Declares the left-side variable with a type of the right-side expression. It is used in the iterations |
| Returns snake_case string out of CamelCase string passed as a parameter. |
| Returns string separated with spaces out of CamelCase string passed as a parameter. For example, if the string passed as a parameter is |
| Returns the subtypes of the type passed as a parameter. |
| Suggests the name of an index variable. Returns |
| 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 iteration, IntelliJ IDEA makes a guess on the most reasonable names, also taking into account the name of the container being iterated. |
| Doesn't suggest |
| Returns the current system time. |
| Returns the type of the variable passed as a parameter. |
| Returns the string passed as a parameter with CamelHump letters substituting for underscores. For example, if the string passed as a parameter is |
| Returns the string passed as a parameter with spaces substituting for underscores. |
| Returns the name of the current user. |
| Suggests all variables that may be assigned to the type passed as a parameter, for example variableOfType("java.util.Vector"). If you pass an empty string ("") as a parameter, suggests all variables regardless of their types. |
| Returns JavaScript array name. |
| Returns the name of the current JavaScript class. |
| Returns the JavaScript component type. |
| Returns the name of the current JavaScript method. |
| Returns the complete name of the current JavaScript class. |
| Returns a suggested name for an index. |
| Returns a suggested name for a variable. |
Live Templates File Types
See Also
Procedures:
Reference:
Concepts: