Complete Current Statement | Ctrl+Shift+Enter | 将输入的if、for、函数等等补上{}或者;使代码语句完整 |
Delete to Word End | Ctrl+Delete | 删除光标所在至单词结尾处的所有字符 |
Delete to Word Start | Ctrl+BackSpace | 删除光标所在至单词开头的所有字符 |
Extend Selection | Ctrl+W | 选中整个单词 |
Find in Path | Ctrl+Shift+F | 在全局文件中查找字符串 |
Class… | Ctrl+N | 查找类文件 |
File… | Ctrl+Shift+N | 查找文件 |
Implementation(s) | Ctrl+Alt+B | 定位至选中类或方法的具体实现 |
Super Method | Ctrl+U | 直接定位至当前方法override或者implements的方法定义处 |
Implement Methods… | Ctrl+I | 实现基类或接口中的方法 |
Generate… | Alt+Insert | 产生构造方法、getter/setter等方法 |
Surround With… | Ctrl+Alt+T | 将选中的代码使用if、while、try/catch等包装 |
Basic | Alt+/ | 自动完成 |
Comment with Line Comment | Ctrl+/ | 使用//进行注释 |
Comment with Block Comment | Ctrl+Shift+/ | 使用/**/进行注释 |
Reformat Code | Ctrl+Alt+L | 格式化代码 |