VSCode外掛安裝
阿新 • • 發佈:2018-12-15
一,Java開發外掛
- Language support for Java ™ for Visual Studio Code
- Java Extension Pack
- Debugger for Java
- Java Test Runner
二,快捷鍵外掛
- Eclipse Keymap for Visual Studio Code. (eclipse快捷鍵)
- Lombok Annotations Support for VS Code. (簡化POJO, 很驚喜)
三,常用設定
1,搜尋檔案是忽略target資料夾
"search.exclude": { "**/node_modules": true, "**/bower_components": true, "**/target": true, "**/logs": true }
2,取消單擊開啟檔案覆蓋導航欄:
-
- 檔案->首選項->設定, 新增
"workbench.editor.enablePreview": false,
- 檔案->首選項->設定, 新增
四,常用快捷鍵
CTRL + P : 開啟檔案搜尋
CTRL + SHIFT + N:開啟新視窗
CTRL + SHIFT + p:開啟指令欄(Clone GIT專案等)
CTRL + F:查詢替換
CTRL + SHIFT + F:格式化程式碼