VS Code All in One
VS Code All in One
Visual Studio Code All in One
https://github.com/xgqfrms/vscode/
VS Code
Shift + Alt + A === Block Commnets
Ctrl + / === line Commnets
shortcuts keys
https://github.com/xgqfrms/vscode/issues/5
key bindings
vs code
// Place your key bindings in this file to overwrite the defaults
[{
"key": "ctrl+z",
"command": "undo",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+ctrl+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorFocus"
},
{
"key": "ctrl+shift+d",
"command": "-editor.action.copyLinesDownAction",
"when": "editorFocus"
}
]
ctrl++alt+down
"key": "ctrl+alt+down",
template
codes snippets
{
"JavaScript ES6 React Template": {
"prefix": "js6r",
"body": [
"\"use strict\";",
"",
"/**",
" * ",
" * @author xgqfrms",
" * @license MIT",
" * @copyright xgqfrms",
" * ",
" * @description $2",
" * @augments $3",
" * @example $4",
" * ",
" */",
"",
"const $2Generator = ($5datas = [], debug = false) => {",
" let result = ``;",
" // do something...",
" return $7result;",
"};",
"",
"",
"",
"export default $2;",
"",
"export {",
" $2,",
"};",
"",
],
"description": "JavaScript ES6 React Template & code snippets!"
}
}
vscode & show whitespace
renderWhitespace
{
"editor.renderWhitespace": "all"
}
refs
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/9196611.html
未经授权禁止转载,违者必究!