svn-scm icon indicating copy to clipboard operation
svn-scm copied to clipboard

Extension loads then disappears from sidebar

Open adamwoodnz opened this issue 11 months ago • 6 comments

  • 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

  1. Enable extension
  2. See SVN icon briefly appear in sidebar then disappear
  3. Output window shows as below

SVN Output

Using svn "1.14.1" from "svn"

Screenshots

Screenshot 2024-03-06 at 10 28 18 AM

adamwoodnz avatar Mar 05 '24 21:03 adamwoodnz

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.

Jiacheng1 avatar Mar 06 '24 11:03 Jiacheng1

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?

adamwoodnz avatar Mar 06 '24 19:03 adamwoodnz

I've never used it with remote ssh directories so wouldn't be able to advise it if should work or not.

JohnstonCode avatar Mar 07 '24 09:03 JohnstonCode

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.

JohnstonCode avatar Mar 07 '24 09:03 JohnstonCode

Unable to replicate with symlinks on 1.87.1

{
	"folders": [
		{
			"path": "../spamassassin-trunk-symlink"
		},
		{
			"path": "../project1"
		}
	],
	"settings": {}
}

image

JohnstonCode avatar Mar 08 '24 19:03 JohnstonCode

Same problem, have you solved it?

zuriel921 avatar Aug 29 '24 02:08 zuriel921