Reputation: 125
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
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
Reputation: 11
to open a terminal integrated in vsc write the following shortcut:
ctrl(^) + `
Upvotes: 1