以下为我IntelliJ IDEA个人常用快捷键:
动作 | 快捷键 | 说明 |
---|---|---|
Move Caret to Code Block End | Ctrl+] | 诸如{}围起来的代码块,使用该快捷键可以快速跳转至代码块的结尾处 |
Complete Current Statement | Ctrl+Shift+Enter | 将输入的if、for、函数等等补上{}或者;使代码语句完整 |
Start New Line | Shift+Enter | 在当前行的下方开始新行 |
Start New Line Before Currentd | Ctrl+Alt+Enter | 在当前行上方插入新行 |
Complete Current Statement | Ctrl+Shift+Enter | 将输入的if、for、函数等等补上{}或者;使代码语句完整 |
Start New Line | Shift+Enter | 在当前行的下方开始新行 |
Delete to Word End | Ctrl+Delete | 删除光标所在至单词结尾处的所有字符 |
Delete to Word Startt | Ctrl+BackSpace | 删除光标所在至单词开头的所有字符 |
Move Caret to Previous Word | Ctrl+向左箭头 | 将光标移至前一个单词 |
Join Lines | Ctrl+Shift+J | 将选中的行合并成一行 |
Find in Path | Ctrl+Shift+F | 在全局文件中查找字符串 |
Find Usages | Alt+F7 | 查找当前变量的使用,并列表显示 |
Show Usages | Ctrl+Alt+F7 | 查找当前变量的使用,并直接对话框显示 |
Find Usages in File | Ctrl+F7 | 在文件中查找符号的使用 |
Highlight Usages in File | Ctrl+Shift+F7 | 在文件中高亮显示变量的使用 |
Extend Selection | Ctrl+W | 选中整个单词 |
Delete to Word Startt | Ctrl+BackSpace | 删除光标所在至单词开头的所有字符 |
Toggle Case | Ctrl+Shift+U | 切换大小写 |
Class… | Ctrl+N | 查找类文件 |
File… | Ctrl+Shift+N | 查找文件 |
Line… | Ctrl+G | 定位到文件某一行 |
Back | Alt+向左箭头 | 返回至上次光标位置 |
Forward | Alt+向右箭头 | 返回至后一次光标位置 |
Last Edit Location | Ctrl+Shift+Backspace | 返回上次编辑位置 |
Next Edit Location | Ctrl+Shift+反斜杠 | 返回后一次编辑位置 |
Declaration | Ctrl+B | 定位至变量定义的位置 |
Implementation(s) | Ctrl+Alt+B | 定位至选中类或方法的具体实现 |
Type Declaration | Ctrl+Shift+B | 直接定位至光标所在变量的类型定义 |
Super Method | Ctrl+U | 直接定位至当前方法override或者implements的方法定义处 |
Next Highlighted Error | F2 | 定位至下一个错误处 |
Previous Highlighted Error | Shift+F2 | 定位至前一个错误处 |
Previous Occurrence | Ctrl+Alt+向上箭头 | 查找前一个变量共现的地方 |
Generate… | Alt+Insert | 产生构造方法、getter/setter等方法 |
Surround With… | Ctrl+Alt+T | 将选中的代码使用if、while、try/catch等包装 |
Unwrap/Remove… | Ctrl+Shift+Delete | 去除相关的包装代码 |
Basic | Alt+/ | 自动完成 |
Expand | Ctrl+= | 展开代码 |
Collapse | Ctrl+- | 收缩代码 |
Expand Recursively | Ctrl+Alt+= | 递归展开代码 |
Collapse Recursively | Ctrl+Alt+- | 递归收缩代码 |
Expand | All Ctrl+Shift+= | 展开所有代码 |
Collapse All | Ctrl+Shift+- | 收缩所有代码 |
Comment with Line Comment | Ctrl+/ | 使用//进行注释 |
Comment with Block Comment | Ctrl+Shift+/ | 使用/**/进行注释 |
Reformat Code | Ctrl+Alt+L | 格式化代码 |
Auto-Indent Lines | Ctrl+Alt+I | 自动缩进行 |
Optimize Imports | Ctrl+Alt+O | 优化import |
Move Statement Down | Ctrl+Shift+向下箭头 | 将光标所在的代码块向下整体移动 |
Move Element Left | Ctrl+Alt+Shift+向左箭头 | 将元素向左移动 |
Move Line Down | Alt+Shift+向下箭头 | 将行向下移动 |
Move Line Up | Alt+Shift+向上箭头 | 将行向上移动 |