Baker
Baker

Reputation: 28010

Hotkey Keyboard Shortcut to focus / put cursor on Debug Console in Visual Studio Code (VS Code)

What's the keyboard shortcut / hotkey combination for sending cursor focus to the Debug Console in Visual Studio Code?

(This is for working on a web / HTML / Javascript / Vue project.)

Upvotes: 1

Views: 2068

Answers (1)

Baker
Baker

Reputation: 28010

In Windows, there is no default hotkey.

Add Hotkey for Console

To add a keyboard shortcut for Debug Console focus go to:

File > Preferences > Keyboard Shortcuts > search for console

Double click on Debug: Focus on Debug Console View

Add the keyboard shortcut of your choice, e.g. Ctrl + Alt + C

focus on debug console keyboard shortcut setting

Return Focus to Editor Window

Ctrl + 1 (the number one) will return cursor focus back to the last location/viewed file in the Editor window.

Upvotes: 1

Related Questions