mrcrowl / vscode-hg

Integrated Mercurial source control for Visual Studio Code
MIT License
71 stars 37 forks source link

Sub-repositories not listed in workspace #203

Open nsgundy opened 1 year ago

nsgundy commented 1 year ago

Using extension v1.9.0, VSCode v1.77.3. I have a .code-workspace file referencing a parent repo and some sub-repos as individual folders. The source-control panel is only displaying the parent repo.

Repo structure:

. parent
| -- subA
| -- subB

Workspace config:

{
    "folders": [
        {
            "path": ".",
            "name": "parent"
        },
        {
            "path": "subA"
        },
        {
            "path": "subB"
        }
    ]
}

Expecting to see all three as individual repositories.

33 looks like the same thing, not sure if this had ever been resolved.