svn-scm
svn-scm copied to clipboard
Extension loads then disappears from sidebar
- VSCode Version: 1.87.0
- OS Version: MacOS Ventura 13.6.4
- Extension Version: v2.17.0
- System Language:
- SVN Version: 1.14.1
Issue
The extension file operations are unusable because the UI isn't accessible from the sidebar. The SVN Checkout command is still available in the command palette.
Steps to Reproduce
- Enable extension
- See SVN icon briefly appear in sidebar then disappear
- Output window shows as below
SVN Output
Using svn "1.14.1" from "svn"
Screenshots
I have the same problem. I did some tests and found a possible solution. There's a soft link directory in my workspace, and i added it into code-workspace setting. Like as below:
{
"folders": [
{
"path": "my/workspace/SOFT/LINK"
},
{
"path": "my/workspace/xxxx"
}
],
}
When i removed the path of soft link, the extension will not disappear.
The folders in my workspace are all remote ssh directories
"folders": [
{
"uri": "vscode-remote://ssh-remote+foo.org/bar"
},
],
Can you provide any info to help me debug what's happening please @JohnstonCode? Or is this not a supported setup?
I've never used it with remote ssh directories so wouldn't be able to advise it if should work or not.
I have the same problem. I did some tests and found a possible solution. There's a soft link directory in my workspace, and i added it into code-workspace setting. Like as below:
{ "folders": [ { "path": "my/workspace/SOFT/LINK" }, { "path": "my/workspace/xxxx" } ], }
When i removed the path of soft link, the extension will not disappear.
That is strange i don't remember there being an specific checks against soft links.
Unable to replicate with symlinks on 1.87.1
{
"folders": [
{
"path": "../spamassassin-trunk-symlink"
},
{
"path": "../project1"
}
],
"settings": {}
}
Same problem, have you solved it?