摆脱IntelliJ(或其他IDE)括号的快捷方式

Jon*_*ark 2 shortcut intellij-idea

假设|是一个游标指针。我想要做的是一旦输入完参数,就摆脱括号。分步说明:

// 1: type function name
void function|

// 2: openening paren automatically generate closing paren for convenience
void function(|)

// 3: type paremeters...
void function(42|)

// 4: ...and get out of parenthesis!
void function(42)|
Run Code Online (Sandbox Code Playgroud)

通常,我使用向右箭头来执行此操作,但是使用箭头并不那么方便,并且我想知道这样做是否有任何捷径。我很好奇的是IntelliJ,但如果您能告诉我任何其他Jetbrain IDE或Visual Studio等的快捷方式,那将非常好。

Ama*_*har 5

我认为你正在寻找Ctrl+ Shift+ Enter(在Windows上)。动作名称是Complete Current Statement

在Mac上,如果您想知道快捷方式调用Command+ Shift+ A(查找动作),请键入Complete Current Statement快捷方式,它也会向您显示该动作的快捷方式

在此处输入图片说明