VS Code Key Binding
- VC Healy
- Dec 14, 2020
- 1 min read
Anyone that has been using VS Code will have noticed that some of the right click options do not have a keybinding. That gets a bit annoying repeatedly 'right-click' and finding the option wanted.
One such item is 'Run Python in terminal'
When writing code and wanting to test that a user input will accept or decline said input running the code in terminal is needed and there is no key binding by default for this option.
In VS Code, hold down CTRL and press K then S and the key binding list will appear.
If changing a known command, type the name of the command into the search bar at the top to filter the list. double click on the entry, hold the new key binding, release and press enter.
Remember, try not to use a key binding already in use. That will cause two commands to action when pressing that keybinding.
Comments