动作 | 快捷键 | 说明 |
---|---|---|
Complete Current Statement | Ctrl+Shift+Enter | 将输入的if、for、函数等等补上{}或者;使代码语句完整 |
Extend Selection | Ctrl+W | 选中整个单词 |
Toggle Case | Ctrl+Shift+U | 切换大小写 |
Join Lines | Ctrl+Shift+J | 将选中的行合并成一行 |
Find | Ctrl+F | 在当前文件中查找 |
Replace | Ctrl+R | 替换字符串 |
Find in Path | Ctrl+Shift+F | 在全局文件中查找字符串 |
Replace in Path | Ctrl+Shift+R | 在全局中替换字符串 |
Find Usages | Alt+F7 | 查找当前变量的使用,并列表显示 |
Highlight Usages in File | Ctrl+Shift+F7 | 在文件中高亮显示变量的使用 |
Declaration | Ctrl+B | 定位至变量定义的位置 |
Implementation(s) | Ctrl+Alt+B | 定位至选中类或方法的具体实现 |
File Structure | Ctrl+F12 | 显示当前文件的文件结构 |
Override Methods… | Ctrl+O | 重写基类的方法 |
Implement Methods… | Ctrl+I | 实现基类或接口中的方法 |
Surround With… | Ctrl+Alt+T | 将选中的代码使用if、while、try/catch等包装 |
Move Statement Down | Ctrl+Shift+向下箭头 | 将光标所在的代码块向下整体移动 |
Move Statement Up | Ctrl+Shift+向上箭头 | 将光标所在的代码块向上移动 |
Move Line Down | Alt+Shift+向下箭头 | 将行向下移动 |
Rename | Shift+F6 | 重命名 |
Type Migration | Ctrl+Shift+F6 | 更改类型 |