web-dev-qa-db-ja.com

ライブテンプレートの後のカーソルの位置を選択

IntelliJ IDEAでは、次のようなライブテンプレートを定義しています。

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

ライブテンプレートを展開した後、IntelliJにメソッドの本体内にカーソルを置くように指示する方法はありますか?

60

承知しました。特別な$ END $変数をその位置に置くだけです。

102
Peter Gromov