Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 540 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 540 Bytes

Commander

Commander is a VSCode extension that allows you to run multiple commands with one shortcut.

Usage

To use Commander, just edit your keybord shortcut config file, and write your command queue, see this example:

   {
        "key": "ctrl+alt+n",
        "command": "commander.runCommands",
        "args": [
            "emacs.cursorDown", "emacs.cursorDown", "emacs.cursorDown", "emacs.cursorDown", "emacs.cursorDown"
        ],
        "when": "editorTextFocus && !suggestWidgetVisibles"
    },

Enjoy!