vscode 快捷键配置

files --> Preferences --> Keyboard Shortcuts

    {
        "key": "ctrl+b",
        "command": "-workbench.action.toggleSidebarVisibility"
    },
    {
        "key": "ctrl+b",
        "command": "python.execInTerminal"
    },
    {
        "key": "escape",
        "command": "workbench.action.closePanel",
        "when": "activePanel"
    },
    {
        "key": "escape",
        "command": "workbench.action.terminal.toggleTerminal",
        "when": "panelFocus && activePanel == 'workbench.panel.terminal'"
    },
原文地址:https://www.cnblogs.com/JohnRain/p/10361940.html