Disable some share context menus in editor playground (#204566)

This commit is contained in:
Matt Bierner
2024-02-07 09:05:51 +01:00
committed by GitHub
parent f8546bc73f
commit 64cd658cac
+2 -2
View File
@@ -98,14 +98,14 @@
"editor/context/share": [
{
"command": "github.copyVscodeDevLink",
"when": "github.hasGitHubRepo && resourceScheme != untitled && remoteName != 'codespaces'",
"when": "github.hasGitHubRepo && resourceScheme != untitled && !isInEmbeddedEditor && remoteName != 'codespaces'",
"group": "0_vscode@0"
}
],
"explorer/context/share": [
{
"command": "github.copyVscodeDevLinkWithoutRange",
"when": "github.hasGitHubRepo && resourceScheme != untitled && remoteName != 'codespaces'",
"when": "github.hasGitHubRepo && resourceScheme != untitled && !isInEmbeddedEditor && remoteName != 'codespaces'",
"group": "0_vscode@0"
}
],