欢迎各位兄弟 发布技术文章
这里的技术是共享的
keybindings.json
1、快捷键:Alt+F --> p --> k
2、C:\Users\Administrator\AppData\Roaming\Code\User\keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
//ctrl+space被切换输入法快捷键占用
{
"key"
:
"ctrl+alt+space"
,
"command"
:
"editor.action.triggerSuggest"
,
"when"
:
"editorTextFocus"
},
// ctrl+d删除一行
{
"key"
:
"ctrl+d"
,
"command"
:
"editor.action.deleteLines"
,
"when"
:
"editorTextFocus"
},
{
"key"
:
"ctrl+shift+k"
,
//与删除一行的快捷键互换了:)
"command"
:
"editor.action.addSelectionToNextFindMatch"
,
"when"
:
"editorFocus"
},
//ctrl+shift+/多行注释
{
"key"
:
"ctrl+shift+/"
,
"command"
:
"editor.action.blockComment"
,
"when"
:
"editorTextFocus"
}
]