AnWeber / vscode-statusbar-command

MIT License
16 stars 4 forks source link

Series of commands #10

Closed ozum closed 3 years ago

ozum commented 3 years ago

Hi,

Is it possible to add feature to execute series of commands. For example:

    {
      "text": "$(fold)",
      "command": ["editor.foldAllBlockComments", "fold-imports.fold"],
      "tooltip": "Fold block comments and imports"
    },
AnWeber commented 3 years ago

Hi,

not directly. But you could use multi-command and then configure the created command in my extension.

ozum commented 3 years ago

Thanks that will do.