macros icon indicating copy to clipboard operation
macros copied to clipboard

Issue with editor commands

Open PZ01 opened this issue 7 years ago • 0 comments

keybindings

    {
        "key": "ctrl+k",
        "command": "macros.moveUpFromTerminalAndHidePanel",
        "when": "terminalFocus"
    },

user settings

    "macros": {
        "moveUpFromTerminalAndHidePanel": [
            "editor.action.focusFirstEditorGroup",
            "editor.action.togglePanel"
        ]
    }

From the terminal panel, I press ctrl+k and nothing happens. Am I doing something wrong? I tried creating a simple macro which moves the cursor in the editor a couple of times and it worked fine.

PZ01 avatar Jun 28 '18 17:06 PZ01