vscode 快捷配置

发布日期: 2018-01-26 00:00:00
点击次数: 854
大字 小字
// 将键绑定放入此文件中以覆盖默认值
[
    {
        "key""ctrl+alt+f",
        "command""editor.action.formatDocument",
        "when""editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
    },
    {
        "key""ctrl+shift+f",
        "command""editor.action.formatSelection",
        "when""editorHasDocumentSelectionFormattingProvider && editorHasSelection && editorTextFocus && !editorReadonly"
    },
    {
        "key""ctrl+shift+/",
        "command""editor.action.blockComment",
        "when""editorTextFocus && !editorReadonly"
    },
]
返回顶部