mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Git - git installation welcome view should use remoteName context key (#236672)
This commit is contained in:
@@ -3372,22 +3372,22 @@
|
||||
{
|
||||
"view": "scm",
|
||||
"contents": "%view.workbench.scm.missing%",
|
||||
"when": "config.git.enabled && git.missing"
|
||||
"when": "config.git.enabled && git.missing && remoteName != ''"
|
||||
},
|
||||
{
|
||||
"view": "scm",
|
||||
"contents": "%view.workbench.scm.missing.mac%",
|
||||
"when": "config.git.enabled && git.missing && isMac"
|
||||
"when": "config.git.enabled && git.missing && remoteName == '' && isMac"
|
||||
},
|
||||
{
|
||||
"view": "scm",
|
||||
"contents": "%view.workbench.scm.missing.windows%",
|
||||
"when": "config.git.enabled && git.missing && isWindows"
|
||||
"when": "config.git.enabled && git.missing && remoteName == '' && isWindows"
|
||||
},
|
||||
{
|
||||
"view": "scm",
|
||||
"contents": "%view.workbench.scm.missing.linux%",
|
||||
"when": "config.git.enabled && git.missing && isLinux"
|
||||
"when": "config.git.enabled && git.missing && remoteName == '' && isLinux"
|
||||
},
|
||||
{
|
||||
"view": "scm",
|
||||
|
||||
Reference in New Issue
Block a user