vscode 配置
程序员文章站
2022-06-01 10:23:07
...
// 将按键绑定配置放入此文件中即可覆盖默认值
[
{
"key": "alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "cmd+y",
"command": "redo",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+z",
"command": "-redo",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "backspace backspace",
"command": "toggleFindInSelection",
"when": "editorFocus"
},
{
"key": "alt+cmd+l",
"command": "-toggleFindInSelection",
"when": "editorFocus"
},
{
"key": "alt+cmd+l",
"command": "editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+f",
"command": "-editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
}
]
上一篇: vscode配置
下一篇: 【vscode】sftp同步修改代码
推荐阅读