Skip to content
| Marketplace
Sign in
Visual Studio Code>Snippets>Terminal Manager commandsNew to Visual Studio Code? Get it now.
Terminal Manager commands

Terminal Manager commands

juanjo-LH

|
42 installs
| (0) | Free
Manage terminals with predefined commands in VS Code for Windows, macOS, and Linux
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Terminal Manager

Manage terminals with predefined commands in VS Code for Windows, macOS, and Linux.

Features

  • Create and save named terminals
  • Configure commands that run automatically on terminal launch
  • Support for Windows (PowerShell), macOS (zsh/bash), and Linux (bash)
  • Option to automatically close the terminal after execution
  • Multi-platform support with automatic OS detection

Usage

  1. Click on the Terminal icon in the sidebar
  2. Create a new terminal with the "+" button
  3. Configure the commands you want to execute
  4. Optionally, configure whether you want the terminal to close automatically by adding "cerrar": "si" to your configuration

Configuration Example

[
  {
    "name": "Start Project",
    "workingDirectory": "${workspaceFolder}",
    "comandos": [
      "npm install",
      "npm start"
    ],
    "cerrar": "no"
  },
  {
    "name": "Build and Test",
    "workingDirectory": "${workspaceFolder}/src",
    "comandos": [
      "dotnet build",
      "dotnet test"
    ],
    "cerrar": "si"
  }
]
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft