- The Integrated Terminal in VS Code
- What we’ll cover
- How to open and use the Integrated Terminal
- Working with multiple terminals
- How to choose your integrated shell
- Resources
- VS Code Docs Integrated Terminal
- Pro Tips
- Some prefer to use an outside terminal rather than the one built into VS Code. Give the integrated terminal a try and decide for yourself.
ctrlCmd + Tilde
– toggle integrated terminal
- Customizing Your Terminal Setup Part 2
- What we’ll cover
- How to customize shortcuts to interact with terminal windows like files in the editor(opening, closing, and switching between terminal windows)
- Resources
- VS Code Docs Integrated Terminal
- Pro Tips
- Using the above configuration can make it much quicker and easier to work with multiple terminal windows.
{
"key": "ctrl+tab",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "cmd+n",
"command": "workbench.action.terminal.new",
"when": "terminalFocus"
},
{
"key": "cmd+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "cmd+r",
"command": "workbench.action.terminal.rename",
"when": "terminalFocus"
}