Quick Terminals
March 25, 2023 ยท View on GitHub
Features
- Open multiple pre-configured terminals with a command
- Can open terminals on startup based on
quickTerminals.openOnStartupsetting
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(usenpm i -g corepackfor 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
F5or use theRun Extensiontask to run the extension.
License
Published under MIT License.