Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Workspace ConfigNew to Visual Studio Code? Get it now.
Workspace Config

Workspace Config

Jumppad

|
178 installs
| (0) | Free
VSCode extension that allows defined workspace setup for tabs and terminals
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Workspace Manager

VSCode extension that lets you manage browser and terminal tabs inside your VSCode workspace.

Example config

Adding the following to a file called workspace.json inside your .vscode folder would open the defined tabs and terminals.

{
  "tabs": [
    {
      "type": "file",
      "uri": ".vscode/workspace.json",
      "viewColumn": 1,
      "active": true
    },
    {
      "type": "browser",
      "uri": "https://jumppad.dev",
      "name": "Docs"
    },
    {
      "type": "browser",
      "uri": "https://jumppad.dev", 
      "name": "Terminal 1"
    },
    {
      "type": "terminal",
      "name": "Terminal 1", 
      "command": "docker ps", 
      "viewColumn": 1, 
      "location": "editor", 
      "env": {"HOME": "/root"},
      "cwd": "/root"
    },
    {
      "type": "terminal", 
      "name": "Terminal 2", 
      "command": "ls -la", 
      "viewColumn": 1, 
      "location": "panel"
    }
  ],
  "closeUnmanagedTabs": true,
  "closeUnmanagedTerminals": true
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft