multi-terminal-directories
Support opening multiple terminal windows and running commands at once
How to use
Ctrl+Shift+P > Multi Terminal : Open
Select One Group
Extension Settings
Modify multi-terminal-directories.paths
in settings.json
For example:
"multi-terminal-directories.paths": [
{
"name": "group name 1",
"configure": [
{
"name": "Terminal 1",
"dir": "path/to/your/root1",
"command": "command to run in terminal",
"run": true
},
{
"name": "Terminal 2",
"dir": "path/to/your/root2",
"command": "command to run in terminal",
"run": false
},
{
"name": "Terminal 3",
"dir": "path/to/your/root3",
"command": "command to run in terminal",
"run": true
}
]
},
{
"name": "group name 2",
"configure": [
{
"name": "Terminal 4",
"dir": "path/to/your/root4",
"command": "command to run in terminal",
"run": true
},
]
}
]
Enjoy!