更新 : 2017-03-01 html
https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify node
這個插件可讓 html 整理起來比較好看. git
調東西 : typescript
左上角 File -> Preferences -> Workspace Settings ( User Settings 也能夠, 它是 for 全部的 project, Workspace 是針對目前這個 project )npm
1. hide .js, .map when use .ts c#
and node_mudules, debug.log visual-studio-code
"files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/.DS_Store": true, // add on "**/node_modules/": true, "**/npm-debug.log*/": true, "**/*.js.map": true, "**/*.js": {"when": "$(basename).ts"} }
2.Zoom with mouse Wheelangular2
"editor.mouseWheelZoom": true
2.1 scroll bar 旁邊的小圖ide
"editor.minimap.enabled": true
3.修改熱鍵 svn
https://code.visualstudio.com/Docs/customization/keybindings
File > Preferences > Keyboard Shortcuts. (Code > Preferences > Keyboard Shortcuts on Mac)
// Place your key bindings in this file to overwrite the defaults [ { "key": "ctrl+l", "command": "editor.action.deleteLines", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+k ctrl+f", "command": "editor.action.format", "when": "editorHasFormattingProvider && editorTextFocus && !editorReadonly" }, { "key": "ctrl+w", //原本是 ctrl+d, 而原本的 ctrl+w 是close window (看左邊參考) "command": "editor.action.addSelectionToNextFindMatch", "when": "editorFocus" } ] // Fold (Ctrl+Shift+[) folds the innermost uncollapsed region at the cursor // Unfold (Ctrl+Shift+]) unfolds the collapsed region at the cursor // Fold All (Ctrl+K Ctrl+0) folds all region in the editor // Unfold All (Ctrl+K Ctrl+J) unfolds all regions in the editor
4. 經常使用 hotkeys (vscode and vs2015)