Intellij Idea-完成下一个参数快捷方式

时间:2018-08-07 11:25:02

标签: intellij-idea shortcuts

示例: 作者作者=新作者(“杰克”,“丹尼尔斯”); 在Exlipce中,填写“ Jack”并按“ enter”时-它自动转到第二个参数,让我填写第二个参数。在Intellij中,我始终必须用鼠标单击或使用箭头键。 Intellij中是否有捷径可以使其更快?我找不到自己。

1 个答案:

答案 0 :(得分:0)

自IntelliJ 2018.2起

  

您现在可以跳出右括号或用Tab引用。

(来自:https://blog.jetbrains.com/idea/2018/07/intellij-idea-2018-2-macbook-touch-bar-java-11-breakpoint-intentions-spring-boot-version-control-and-more/

基本上,这意味着您是否拥有:

Author author = new Author("Jack<cursor>");

然后按 Tab ,光标将如下放置:

Author author = new Author("Jack"<cursor>);

注意:光标最初在哪里都无所谓,只要您按 Tab 时位于引号内,光标就会移到外部并放在其后方。如果要输入下一个参数,则必须手动输入逗号和字符串。

该选项可以在以下位置找到:Settings -> Editor -> General -> Smart Keys,称为Jump outside closing bracket/quote with Tab

还有其他一些有用的选项,例如insert pair quoteinsert pair brackets

如果您想更进一步,可以看看Live Templates