选择实时模板后的光标位置


71

在IntelliJ IDEA中,我定义了一个实时模板,如下所示:

@Inject
private void postInject() {
  //I want the cursor to be placed here after the execution of the live template.
}

展开实时模板后,是否可以告诉IntelliJ将光标放置在方法主体内?

Answers:


143

当然。只需将特殊$END$变量放在该位置即可。

帮助文档:https : //www.jetbrains.com/help/idea/template-variables.html#pdtv


2
在哪里可以找到相关文档?
斯旺南德'16

5
请注意,如果存在未标记为“如果定义则跳过”的变量,则光标将在到达$ END $之前先对其进行制表。
内森·威廉姆斯,

2
jetbrains.com/help/idea/template-variables.html 这是有关此功能的文档。
tanaydin

是否可以添加多个停靠点并通过TAB按钮跳到下一个停靠点?
马蒂斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.