提问人:Nicolas Othmar 提问时间:10/30/2023 更新时间:11/2/2023 访问量:31
如何在Intellij中跳转到父括号/括号?
How to jump to parent/encompassing bracket in Intellij?
问:
function outerFunction() { // 3
function innerFunction() { // 2
// 1
}
}
我的光标当前位于 位置 。使用此键盘快捷键后,光标现在应该位于 位置。再次按下相同的快捷键后,光标应位于 位置。1
2
3
Visual Studio Code 中有一个类似的键盘快捷方式
答:
1赞
Nicolas Othmar
10/30/2023
#1
键盘快捷键命令称为Move Caret to Code Block End/Start
在 Mac 上:
⌘ + ⌥ + ]...将插入符号移动到代码块开始
⌘ + ⌥ + [...将插入符号移动到代码块端
在 Windows 上:
Ctrl + [...将插入符号移动到代码块开始
Ctrl + ]...将插入符号移动到代码块端
要编辑键盘映射:
键盘映射>编辑器操作>将插入符号移动到代码块结束/开始
评论