IntelliJ IDEA個人常用快捷鍵收集
阿新 • • 發佈:2019-01-10
以下為我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+向上箭頭 | 將行向上移動 |