自定义快捷键
//Mac
[
// 格式化
{
"key": "command+shift+f",
"command": "editor.action.format",
"override": true
},
//块注释
{
"key": "command+shift+a",
"command": "editor.action.blockCommentLine"
},
//删除行
{
"key": "command+d",
"command": "editor.action.deleteLines",
"override": true
}
]
windows
[
// 格式化
{
"key": "ctrl+shift+f",
"command": "editor.action.format",
"override": true
},
//块注释
{
"key": "alt+shift+a",
"command": "editor.action.blockCommentLine"
},
//删除行
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"override": true
}
]