skip to Main Content

I want to open multiple terminals in VS Code (horizontally), but I don’t want to split the existing terminal that I already opened with ‘Ctrl’ + `.

I can go to the integrated terminal and click on the ‘+’ icon, but I’m not sure how to do the same via keyboard shortcut?

2

Answers


  1. The Keyboard shortcut for it is

    Ctrl + Shift + `

    Multiple Workspaces:

    If you have opened multiple workspaces in Vscode, then, this keyboard shortcut will ask which workspace to use to open the new terminal in.

    It will add a new Terminal to the Terminal Sidebar Tray and will not split the terminal anymore.

    Login or Signup to reply.
  2. See the commands in the command palette whose names start with Terminal: Create New Terminal. For example, the basic Terminal: Create New Terminal command is bound to ctrl+shift+`. You can bind other similar commands by editing your keyboard shortcuts.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search