vs code 个人编辑习惯(慢慢积累)

 "explorer.autoReveal": false,
"workbench.list.openMode": "doubleClick",
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.rendererType": "auto",
"files.autoSave": "off",
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"search.showLineNumbers": true,
"typescript.preferences.quoteStyle": "single"
 
 
// 将键绑定放入此文件中以覆盖默认值
[
{
"key": "alt+r",
"command": "workbench.files.action.showActiveFileInExplorer"
},
{
"key": "ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.joinLines"
},
{
"key": "ctrl+shift+x",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+shift+y",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "ctrl+k s",
"command": "-workbench.action.files.saveAll"
},
{
"key": "ctrl+alt+o",
"command": "outline.focus"
},
{
"key": "f5",
"command": "-workbench.action.debug.start",
"when": "!inDebugMode"
}
]
原文地址:https://www.cnblogs.com/cfsxgogogo/p/8806203.html