VScode修改默认快捷键

修改keybindings.json


windows:

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"
     }
]


mac:

左上角 code --> 首选项 --> 键盘快捷键方式 -->自定义keybindings.json(弹出的页面点击,进行修改)

扫描二维码关注公众号,回复: 877887 查看本文章

//覆盖默认值

[
//ctrl+space被切换输入法快捷键占用
{
"key": "ctrl+alt+space",
"command": "editor.action.triggerSuggest",
"when": "editorTextFocus"
},
// ctrl+d删除一行
{
"key": "cmd+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"
}
]





猜你喜欢

转载自blog.csdn.net/w1019945543/article/details/69257604