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 に答える