Where can I find the list of all commands available in VSCode and their description?
I'm only aware of these sources:
In the official docs:
- This list which only seems to include a subset of Visual Studio Code commands that you might use with
vscode.commands.executeCommand API
(why is this only a subset of the full list?) - This other list in the keybindings doc, which also only seems to include a subset of all commands available (I suppose those tied to a default keybinding?)
In the editor itself:
I can see a list of commands when I open the "default keybindings". Many actions are commented out with //
, but interestingly I don't think this includes all the commands either (e.g. maximizeOtherEditor
isn't listed)
Does VSCode have an official list of commands (commandID
's) either in its documentation or in its code base? If not:
- What's the closest to it?
- What's a good way to navigate the code base to try to find all commands and what they do?