ryuta46 / vscode-multi-command

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

Is a multi command sequence possibly to allow user to choose from configurations in c_cpp_properties.json file #45

Closed TryerGit closed 3 years ago

TryerGit commented 3 years ago

Hello ryuta46:

I have 4 configurations in c_cpp_properties.json file. The current active configuration is displayed in the bottom panel of the VSCode window. To change a configuration at present requires me to use the mouse to navigate to the bottom panel and click on the current configuration. This opens up an drop-down options at the top of the window.

Is there a keyboard shortcut possible via multi command to open up this drop-down box?

TryerGit commented 3 years ago

Sorry...Figured out. There is a keybinding that can be entered into keybindings.json that does just this:

{ "key": "alt+x", "command": "C_Cpp.ConfigurationSelect" }

Thanks.