select变量名/展开select离子的Eclipse键盘快捷键是什么?
What's the Eclipse keyboard shortcut to select the variable name / to expand the selection?
例子
给定变量名myVariableName
和光标位置[cursor]
String [cursor]myVariablenName = new String()
选择整个变量的键盘快捷键是什么?
详解
Ctrl+Shift+右只选择my
。
Ctrl+Shift+右+右+右键选择整个变量名myVariableName
,但是击键太多
使用Alt+Shift+Up。它调用 Select Enclosing Element
命令。
它适用于所有可能的情况,例如
[cursor]myVariablenName
或
myVar[cursor]iablenName
或
myVariablenName[cursor]
例子
给定变量名myVariableName
和光标位置[cursor]
String [cursor]myVariablenName = new String()
选择整个变量的键盘快捷键是什么?
详解
Ctrl+Shift+右只选择my
。
Ctrl+Shift+右+右+右键选择整个变量名myVariableName
,但是击键太多
使用Alt+Shift+Up。它调用 Select Enclosing Element
命令。
它适用于所有可能的情况,例如
[cursor]myVariablenName
或
myVar[cursor]iablenName
或
myVariablenName[cursor]