-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration option for multi-root workspaces #4
Comments
I am currently solving it by adding |
I'm not sure i fully understand the question, could you explain it in more detail pls? |
I think this is similar to what I am looking for...where I have a workspace that has multiple folders. I need a terminal in each of those folders as they all have something that I need to start. So it would be awesome if there was a Structure
So could have something along the lines of
|
I've tried running something along the lines of
When this runs in actually gives some very strange results, even with the artificial delay set to
|
I'm struggling to think of a fix. This is a known new problem microsoft/vscode#45407 If anyone knows how to get around it, please help! |
I like the @afreeland proposal. Keep in alignment with the VS Code nomenclature "restoreTerminals.terminals": [
{
"splitTerminals": [{
"name": "api",
"workspaceFolderBasename": "folder1"
},{
"name": "ui",
"workspaceFolderBasename": "folder2"
}
]
}
] |
The commands accept array of commands you can have cd command to the work folder before main command.
|
Hi, I'm looking for a way to determine which CLI commands will run under which directory, for a workspace that has more than one root directory. How are people solving this currently?
The text was updated successfully, but these errors were encountered: