ryuta46 / vscode-multi-command

Visual Studio Code Plugin named multi-command
MIT License
229 stars 14 forks source link

Commands don't appear in command palette #8

Closed guillochon closed 5 years ago

guillochon commented 5 years ago

Currently new commands do not appear in the command palette (ctrl+alt+p), as there seems to be no way to name a command beyond the internal name. As an example, the command editor.action.formatDocument appears as Format Document in the command palette, it would be nice if the custom commands also appeared in the palette. Right now the only way to invoke them appears to be through a keybinding.

ryuta46 commented 5 years ago

Sounds great. I'll check how to add a command to the command paltette.

ryuta46 commented 5 years ago

Added functionality in new release, 1.3.0. Adding command in command palette dynamically is not supported with visual studio code. So I added custom picker and execute command sequence in some steps. Please refer README.md.

guillochon commented 5 years ago

Thanks, this is useful!