Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Quick TerminalsNew to Visual Studio Code? Get it now.
Quick Terminals

Quick Terminals

luxass

|
56 installs
| (0) | Free
Open multiple terminals at the same time.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Quick Terminals

Features

  • Open multiple pre-configured terminals with a command
  • Can open terminals on startup based on quickTerminals.openOnStartup setting

Configure a terminal

// .vscode/settings.json

{
  "quickTerminals.terminals": [
    {
      "name": "Terminal 1",
      "command": "echo 'Hello World!'" // will run this command in the terminal
    },
    {
      "name": "Terminal 2",
      "command": "npm run dev", // will run this in the background
      "show": false
    }
  ]
}

💻 Development

  • Clone this repository
  • Enable Corepack using corepack enable (use npm i -g corepack for Node.js < 16.10)
  • Install dependencies using pnpm install
  • Run the extension using pnpm run dev

Note: If you are using VSCode, you can hit F5 or use the Run Extension task to run the extension.

License

Published under MIT License.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft