是否可以使用键盘快捷键跳转到范围的末尾,例如方法,循环,if语句,switch语句等等?
我知道这可以用 control shift p ,但它只会到达结束大括号的开头,而不是结束它。例如:
这是我的代码。
if (x < 10) {
System.out.println("X is less than ten.");| //my cursor is '|'
}
当我按control+shift+P
时,我的光标会跳到此处:
if (x < 10) {
System.out.println("X is less than ten.");
|} //my cursor is '|'
但我希望它能够到这里来。
if (x < 10) {
System.out.println("X is less than ten.");
}| //my cursor is '|'
这可能吗?
答案 0 :(得分:1)
您的密钥似乎与我的密钥的映射方式不同,但请查看首选项(常规 - &gt;密钥)以确切了解您的Eclipse和OS版本可用的命令。我认为对你正在寻找的最接近的命令是Run to Line(你必须指向具有右括号的行)。