1. 程式人生 > >vscode 快捷鍵配置

vscode 快捷鍵配置

ctrl gles work == ane shortcuts image vscode workbench

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‘"
    },

vscode 快捷鍵配置