Integrated Terminal

In Visual Studio Code, you can open an integrated terminal, initially starting at the root of your workspace. This can be convenient as you don’t have to switch windows or alter the state of an existing terminal to perform a quick command-line task.

To open the terminal:

  • Use the kb(workbench.action.terminal.toggleTerminal) keyboard shortcut with the backtick character.
  • Use the View > Terminal menu command.
  • From the Command Palette (kb(workbench.action.showCommands)), use the View: Toggle Integrated Terminal command.

Terminal

Note: You can still open an external shell with the kb(workbench.action.terminal.openNativeConsole) keyboard shortcut if you prefer to work outside VS Code.

Managing multiple terminals

You can create multiple terminals open to different locations and easily navigate between them. Terminal instances can be added by clicking the plus icon on the top-right of the TERMINAL panel or by triggering the kb(workbench.action.terminal.new) command. This action creates another entry in the drop-down list that can be used to switch between them.

Multiple Terminals

Remove terminal instances by pressing the trash can button.

Tip: If you use multiple terminals extensively, you can add key bindings for the focusNext, focusPrevious and kill commands outlined in the Key Bindings section to allow navigation between them using only the keyboard.

Terminal Splitting

You can also split the terminal by triggering the kb(workbench.action.terminal.split) command or via the right click context menu.

Split terminals

When focusing a split terminal pane, you can move focus and resize using one of the following commands:

KeyCommand
kb(workbench.action.terminal.focusPreviousPane)Focus Previous Pane
kb(workbench.action.terminal.focusNextPane)Focus Next Pane
kb(workbench.action.terminal.resizePaneLeft)Resize Pane Left
kb(workbench.action.terminal.resizePaneRight)Resize Pane Right
kb(workbench.action.terminal.resizePaneUp)Resize Pane Up
kb(workbench.action.terminal.resizePaneDown)Resize Pane Down

Configuration

The shell used defaults to $SHELL on Linux and macOS, PowerShell on Windows 10 and cmd.exe on earlier versions of Windows. These can be overridden manually by setting terminal.integrated.shell.* in user settings. Arguments can be passed to the terminal shell using the terminal.integrated.shellArgs.* user settings.

Note: These settings won’t work automatically in the workspace scope, you must whitelist the workspace to allow setting your shell, shell args and it’s environment using the Terminal: Manage Workspace Shell Permissions command.

Windows

For Windows, there is a convenient shell selector located inside the terminal dropdown that lets you choose between several detected shells including Command Prompt, PowerShell, PowerShell Core, Git Bash and WSL Bash. The Terminal: Select Default Shell command is also available through the Command Palette if you prefer to access it there.

Just like on other platforms you can fine tune the exact executable used in your settings file, for example:

  1. // Command Prompt
  2. "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe"
  3. // PowerShell
  4. "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
  5. // Git Bash
  6. "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
  7. // Bash on Ubuntu (on Windows)
  8. "terminal.integrated.shell.windows": "C:\\Windows\\System32\\bash.exe"

Note: To be used as an integrated terminal, the shell executable must be a console application so that stdin/stdout/stderr can be redirected.

Tip: The integrated terminal shell is running with the permissions of VS Code. If you need to run a shell command with elevated (administrator) or different permissions, you can use platform utilities such as runas.exe within a terminal.

Shell arguments

You can pass arguments to the shell when it is launched.

For example, to enable running bash as a login shell (which runs .bash_profile), pass in the -l argument (with double quotes):

  1. // Linux
  2. "terminal.integrated.shellArgs.linux": ["-l"]

Using variables

The shell, shellArgs, env, and cwd terminal settings all support resolving variables:

  1. // Open the terminal in the currently opened file's directory
  2. "terminal.integrated.cwd": "${fileDirname}"

Terminal display settings

You can customize the integrated terminal font and line height with the following settings:

  • terminal.integrated.fontFamily
  • terminal.integrated.fontSize
  • terminal.integrated.fontWeight
  • terminal.integrated.fontWeightBold
  • terminal.integrated.lineHeight

Terminal keybindings

The View: Toggle Integrated Terminal command is bound to kb(workbench.action.terminal.toggleTerminal) to quickly toggle the integrated terminal panel in and out of view.

Below are the keyboard shortcuts to quickly navigate within the integrated terminal:

KeyCommand
kb(workbench.action.terminal.toggleTerminal)Show integrated terminal
kb(workbench.action.terminal.new)Create new terminal
kb(workbench.action.terminal.scrollUp)Scroll up
kb(workbench.action.terminal.scrollDown)Scroll down
kb(workbench.action.terminal.scrollUpPage)Scroll page up
kb(workbench.action.terminal.scrollDownPage)Scroll page down
kb(workbench.action.terminal.scrollToTop)Scroll to top
kb(workbench.action.terminal.scrollToBottom)Scroll to bottom
kb(workbench.action.terminal.clear)Clear the terminal

Other terminal commands are available and can be bound to your preferred keyboard shortcuts, such as:

  • workbench.action.terminal.focus: Focus the terminal. This is like toggle but focuses the terminal instead of hiding it, if it is visible.
  • workbench.action.terminal.focusNext: Focuses the next terminal instance.
  • workbench.action.terminal.focusPrevious: Focuses the previous terminal instance.
  • workbench.action.terminal.focusAtIndexN: Focuses the terminal at index N (N=1-9)
  • workbench.action.terminal.kill: Remove the current terminal instance.
  • workbench.action.terminal.runSelectedText: Run the selected text in the terminal instance.
  • workbench.action.terminal.runActiveFile: Run the active file in the terminal instance.

Copy & Paste

The keybindings for copy and paste follow platform standards:

  • Linux: kbstyle(Ctrl+Shift+C) and kbstyle(Ctrl+Shift+V)
  • macOS: kbstyle(Cmd+C) and kbstyle(Cmd+V)
  • Windows: kbstyle(Ctrl+C) and kbstyle(Ctrl+V)

Right click behavior

The right click behavior differs based on the platform:

  • Linux: Show the context menu.
  • macOS: Select the word under the cursor and show the context menu.
  • Windows: Copy and drop selection if there is a selection, otherwise paste.

This can be configured using the terminal.integrated.rightClickBehavior setting.

Forcing key bindings to pass through the terminal

While focus is in the integrated terminal, many key bindings will not work as the keystrokes are passed to and consumed by the terminal itself. There is a hardcoded list of commands, which skip being processed by the shell and instead get sent to the VS Code keybinding system. You can customize this list with the terminal.integrated.commandsToSkipShell setting. Commands can be added to this list by adding the command name to the list, and removed by adding the command name to the list prefixed with a -.

  1. {
  2. "terminal.integrated.commandsToSkipShell": [
  3. // Ensure the toggle sidebar visibility keybinding skips the shell
  4. "workbench.action.toggleSidebarVisibility",
  5. // Send quick open's keybinding to the shell
  6. "-workbench.action.quickOpen",
  7. ]
  8. }

Look at the setting details to see the complete list of default commands.

Chord keybindings in the terminal

By default, when a chord keybinding is the highest priority keybinding it will always skip the terminal shell (bypassing terminal.integrated.commandsToSkipShell) and be evaluated by VS Code instead of the terminal. This is typically the desired behavior unless you’re on Windows/Linux and want your shell to use ctrl+k (for bash this cuts the line after the cursor). This can be disabled with the following setting:

  1. {
  2. "terminal.integrated.allowChords": false
  3. }

Find

The Integrated Terminal has basic find functionality that can be triggered with kb(workbench.action.terminal.focusFindWidget).

If you want kbstyle(Ctrl+F) to go to the shell instead of launching the Find widget on Linux and Windows, you will need to remove the keybinding like so:

  1. // Windows/Linux
  2. { "key": "ctrl+f", "command": "-workbench.action.terminal.focusFindWidget",
  3. "when": "terminalFocus" },
  4. // macOS
  5. { "key": "cmd+f", "command": "-workbench.action.terminal.focusFindWidget",
  6. "when": "terminalFocus" },

Run Selected Text

To use the runSelectedText command, select text in an editor and run the command Terminal: Run Selected Text in Active Terminal via the Command Palette (kb(workbench.action.showCommands)):

Run selected text

The terminal will attempt to run the selected text.

Run selected text result

If no text is selected in the active editor, the line that the cursor is on is run in the terminal.

Send text from a keybinding

The workbench.action.terminal.sendSequence command can be used to send a specific sequence of text to the terminal, including escape sequences. This enables things like sending arrow keys, enter, cursor moves, etc. The example below shows the sort of things you can achieve with this feature, it jumps over the word to the left of the cursor (Ctrl+Left arrow) and presses backspace:

  1. {
  2. "key": "ctrl+u",
  3. "command": "workbench.action.terminal.sendSequence",
  4. "args": { "text": "\u001b[1;5D\u007f" }
  5. }

This feature supports variable substitution.

Note that the command only works with the \u0000 format for using characters via their character code (not \x00). You can read more about these hex code and the sequences terminals work with on the following resources:

Rename terminal sessions

Integrated Terminal sessions can now be renamed using the Terminal: Rename (workbench.action.terminal.rename) command. The new name will be displayed in the terminal selection drop-down.

Open at a specific folder

By default, the terminal will open at the folder that is opened in the Explorer. The terminal.integrated.cwd setting allows specifying a custom path to open instead:

  1. {
  2. "terminal.integrated.cwd": "/home/user"
  3. }

Split terminals on Windows will start in the directory that the parent terminal started with. On macOS and Linux, split terminals will inherit the current working directory of the parent terminal. This behavior can be changed using the terminal.integrated.splitCwd setting:

  1. {
  2. "terminal.integrated.splitCwd": "workspaceRoot"
  3. }

There are also extensions available that give more options such as Terminal Here.

Changing shell for tasks and debug

You can set terminal.integrated.automationShell.<platform> to override the shell and shell args used by tasks and debug:

  1. {
  2. "terminal.integrated.shell.osx": "/usr/local/bin/fish",
  3. // Use a fully POSIX-compatible shell and avoid running a complex ~/.fishrc
  4. // for tasks and debug
  5. "terminal.integrated.automationShell.osx": "/bin/sh"
  6. }

Changing how the terminal is rendered

By default, the integrated terminal will render using multiple <canvas> elements, which are better tuned than the DOM for rendering interactive text that changes often. However, Electron/Chromium are slower at rendering to canvas on some environments so VS Code also provides a fallback DOM-renderer experience. VS Code will try to detect slow performance and give you the option to change via a notification. You can also change the rendering directly by setting terminal.integrated.rendererType in your user or workspace settings.

  1. {
  2. "terminal.integrated.rendererType": "dom"
  3. }

Something else that might improve performance is to ignore Chromium’s GPU disallow list by launching VS Code with code --ignore-gpu-blacklist.

There is an experimental renderer based on WebGL that can also be enabled:

  1. {
  2. "terminal.integrated.rendererType": "experimentalWebgl"
  3. }

Next steps

The basics of the terminal have been covered in this document, read on to find out more about:

  • Tasks - Tasks let you integrate with external tools and leverage the terminal heavily.
  • Mastering VS Code’s Terminal - An external blog with plenty of power user tips for the terminal.
  • Explore the rest of the terminal commands by browsing your keybindings.json file within VS Code.

Common questions

I’m having problems launching the terminal

There’s a dedicated troubleshooting guide for these sorts of problems.

Can I use the integrated terminal with the Windows Subsystem for Linux?

Yes, you can select the Windows Subsystem for Linux (WSL) bash shell as your terminal default. If you have WSL enabled (through Windows Features), you can select WSL Bash from the terminal Select Default Shell dropdown. See Developing in WSL for details on working in WSL and the Remote - WSL extension.

Why is VS Code shortcut X not working when the terminal has focus?

Currently the terminal consumes many key bindings, preventing Visual Studio Code from reacting to them. An example of this is kbstyle(Ctrl+B) to open the Side Bar on Linux and Windows. This is necessary as various terminal programs and/or shells may respond to these key bindings themselves. You can use the terminal.integrated.commandsToSkipShell setting to prevent specific key bindings from being handled by the terminal.

Can I use Cmder’s shell with the terminal on Windows?

Yes, to use the Cmder shell in VS Code, you need to add the following settings to your settings.json file:

  1. "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
  2. "terminal.integrated.shellArgs.windows": ["/K", "C:\\cmder\\vendor\\init.bat"]

You may refer to Cmder’s wiki for more information.

PowerShell on macOS is complaining about a “-l” argument, how do I fix it?

When configuring the integrated terminal to use PowerShell on macOS, you may hit this error complaining about a "-l" argument. To fix this you will need to override the shell args setting as it defaults to ["-l"] to run login shells by default (for bash/zsh/etc.).

  1. "terminal.integrated.shellArgs.osx": []

How can I change my default Windows terminal back to PowerShell?

If you want to put the default Integrated Terminal shell back to the default (PowerShell on Windows), you can remove the shell override from your User Settings (kb(workbench.action.openSettings)).

For example, if you have set your default terminal to bash, you will find terminal.integrated.shell.windows in your settings.json pointing to your bash location.

  1. "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\bash.exe",

Remove the entry to use the built-in VS Code default or set it to another shell executable path.

Why is Cmd+k/Ctrl+k not clearing the terminal?

Normally kbstyle(Cmd+k)/kbstyle(Ctrl+k) clears the terminal on macOS/Windows, but this can stop working when chord keybindings are added either by the user or extensions. The kbstyle(Cmd+k)/kbstyle(Ctrl+k) keybindings rely on the VS Code keybinding priority system that defines which keybinding is active at any given time (user > extension > default). In order to fix this, you need to redefine your user keybinding that will have priority, preferably at the bottom of your user keybindings.json file:

macOS:

  1. { "key": "cmd+k", "command": "workbench.action.terminal.clear",
  2. "when": "terminalFocus" },

Windows:

  1. { "key": "ctrl+k", "command": "workbench.action.terminal.clear",
  2. "when": "terminalFocus" },

Why is nvm complaining about a prefix option when the Integrated Terminal is launched?

nvm (Node Version Manager) users often see this error for the first time inside VS Code’s Integrated Terminal:

  1. nvm is not compatible with the npm config "prefix" option: currently set to "/usr/local"
  2. Run `npm config delete prefix` or `nvm use --delete-prefix v8.9.1 --silent` to unset it

This is mostly a macOS problem and does not happen in external terminals. The typical reasons for this are the following:

  • npm was globally installed using another instance of node that is somewhere in your path (such as /usr/local/bin/npm).
  • In order to get the development tools on the $PATH, VS Code will launch a bash login shell on start up. This means that your ~/.bash_profile has already run and when an Integrated Terminal launches, it will run another login shell, reordering the $PATH potentially in unexpected ways.

To resolve this issue, you need to track down where the old npm is installed and remove both it and its out of date node_modules. You can do this by finding the nvm initialization script and running which npm before it runs, which should print the path when you launch a new terminal.

Once you have the path to npm, you can find the old node_modules by resolving the symlink by running a command something like this:

  1. ls -la /usr/local/bin | grep "np[mx]"

This will give you the resolved path at the end:

  1. ... npm -> ../lib/node_modules/npm/bin/npm-cli.js
  2. ... npx -> ../lib/node_modules/npm/bin/npx-cli.js

From there, removing the files and relaunching VS Code should fix the issue:

  1. rm /usr/local/bin/npm /usr/local/lib/node_modules/npm/bin/npm-cli.js
  2. rm /usr/local/bin/npx /usr/local/lib/node_modules/npm/bin/npx-cli.js

Can I use Powerline fonts in the Integrated Terminal?

Yes, you can specify Powerline fonts with the terminal.integrated.fontFamily setting.

  1. "terminal.integrated.fontFamily": "Meslo LG M DZ for Powerline"

Note that you want to specify the font family, not an individual font like Meslo LG M DZ Regular for Powerline where Regular is the specific font name.

How do I configure zsh on macOS to jump words with Ctrl+Left/Right arrow?

By default, kbstyle(Ctrl+Left/Right) arrow will jump words in bash. You can configure the same for zsh by adding these keybindings:

  1. {
  2. "key": "ctrl+left",
  3. "command": "workbench.action.terminal.sendSequence",
  4. "args": { "text": "\u001bb" }
  5. },
  6. {
  7. "key": "ctrl+right",
  8. "command": "workbench.action.terminal.sendSequence",
  9. "args": { "text": "\u001bf" }
  10. }

Why is my terminal showing a multi-colored triangle or a completely black rectangle?

The terminal can have problems rendering in some environments, for example you might see a big multi-colored triangle instead of text. This is typically caused by driver/VM graphics issues and the same also happens in Chromium. You can work around these issues by launching code with the --disable-gpu flag or by using the setting "terminal.integrated.rendererType": "dom" to avoid using the canvas in the terminal.

Why are there duplicate paths in the terminal’s $PATH environment variable and/or why are they reversed?

This can happen on macOS because of how the terminal launches using VS Code’s environment. When VS Code launches for the first time, in order to source your “development environment”, it launches your configured shell as a login shell, which runs your ~/.profile/~/.bash_profile/~/.zprofile scripts. Now when the terminal launches, it also runs as a login shell, which will put the standard paths to the front (for example, /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin) and reinitialize your shell environment.

To get a better understanding, you can simulate what is happening by launching an inner login shell within your operating system’s built-in terminal:

  1. # Add /test to the beginning of $PATH
  2. export PATH=/test:$PATH
  3. # Echo $PATH, /test should be at the beginning
  4. echo $PATH
  5. # Run bash as a login shell
  6. bash -l
  7. # Echo $PATH, the values should be jumbled
  8. echo $PATH

Unfortunately, unlike in Linux, standalone macOS terminals all run as login shells by default, since macOS does not run a login shell when the user logs into the system. This encourages “bad behavior”, like initializing aliases in your profile script when they should live in your rc script as that runs on non-login shells.

There are two direct fixes for this. You can set "terminal.integrated.inheritEnv": false, which will strip most environment variables from the terminal’s environment, except for some important ones (like HOME, SHELL, TMPDIR, etc.).

The other fix is to no longer run a login shell in the terminal by setting "terminal.integrated.shellArgs": []. If you go with this fix, you will want to make sure any aliases in your profile scripts are moved over to your ~/.bashrc/~/.zshrc file since aliases only apply to the shell they’re set in.