vscode-terminals
vscode-terminals copied to clipboard
Unnamed terminals
Hi, thanks for the plugin it's already saving me lots of time configuring my environment.
One thing though, my setup has a few terminals that I use for specific tasks, and a few that I might use during the day for various dev tasks in different directories. I like that vsc shows me the directory each terminal is in, but it only does this when the terminal is unnamed. I've tried creating a bunch of unnamed terminals using this plugin, but it only creates one. I suspect that you're using the name as an id. Is there any way to fix this? What I'm after is this:
{
"autorun": true,
"autokill": true,
"env": {
"name": "value"
},
"terminals": [
{
"name": "Git",
"icon": "warning",
"color": "terminal.ansiGreen",
"cwd": "."
},
{
"name": "Godzilla",
"description": "Tokyo is in danger!!!",
"icon": "gist-fork",
"color": "termina.ansiRed",
"cwd": "./test/event-godzilla"
},
{
"name": "Mongo",
"icon": "database",
"color": "terminal.ansiCyan",
"cwd": "./platform/mongodb"
},
{
"name": "Test",
"icon": "question",
"color": "terminal.ansiBlue",
"cwd": "./boundex-ctx/service-invoice/test"
},
{
"name": "event adaptor",
"icon": "terminal",
"color": "terminal.ansiYellow",
"cwd": "./platform/event-adaptor"
},
{
"icon": "terminal",
"color": "terminal.ansiYellow",
"cwd": "."
},
{
"icon": "terminal",
"color": "terminal.ansiYellow",
"cwd": "."
},
{
"icon": "terminal",
"color": "terminal.ansiYellow",
"cwd": "."
}
]
}