Lino
Lino

Reputation: 125

What is the shortcut to open the Visual Studio Code integrated terminal on macbook?

I have been searching for the shortcut to open visual studio code Integrated Terminal on my macbook. In the menu it say ^` (shift 6 backtick) but this is not working on my mac. I am not sure how to make a new shortcut to open the integrated terminal.

Upvotes: 3

Views: 15644

Answers (3)

ng10
ng10

Reputation: 1950

'code' is the built in shortcut to open VSCode in Mac terminal, but you need to enable it initially from VSCode.

Open the Command Palette (Cmd+Shift+P), type 'shell' or 'shell command', and run the Shell Command: Install 'code' command in PATH command.

Note: You can also see the uninstall option there as well.

See here for more details.

Upvotes: 2

yagami-escobar
yagami-escobar

Reputation: 11

to open a terminal integrated in vsc write the following shortcut:

ctrl(^) + `

Upvotes: 1

nocksock
nocksock

Reputation: 5527

^ denotes the control key. So it's ctrl-backtick.

Upvotes: 8

Related Questions