84

在 IntelliJ IDEA 中,我定义了一个这样的实时模板:

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

有没有办法告诉 IntelliJ 在展开活动模板后将光标放在方法主体内?

4

1 回答 1

165

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

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

于 2014-06-17T11:33:13.820 回答