mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
GitHub - 💄 extract command strings (#237899)
This commit is contained in:
@@ -38,28 +38,28 @@
|
||||
"commands": [
|
||||
{
|
||||
"command": "github.publish",
|
||||
"title": "Publish to GitHub"
|
||||
"title": "%command.publish%"
|
||||
},
|
||||
{
|
||||
"command": "github.copyVscodeDevLink",
|
||||
"title": "Copy vscode.dev Link"
|
||||
"title": "%command.copyVscodeDevLink%"
|
||||
},
|
||||
{
|
||||
"command": "github.copyVscodeDevLinkFile",
|
||||
"title": "Copy vscode.dev Link"
|
||||
"title": "%command.copyVscodeDevLink%"
|
||||
},
|
||||
{
|
||||
"command": "github.copyVscodeDevLinkWithoutRange",
|
||||
"title": "Copy vscode.dev Link"
|
||||
"title": "%command.copyVscodeDevLink%"
|
||||
},
|
||||
{
|
||||
"command": "github.openOnVscodeDev",
|
||||
"title": "Open in vscode.dev",
|
||||
"title": "%command.openOnVscodeDev%",
|
||||
"icon": "$(globe)"
|
||||
},
|
||||
{
|
||||
"command": "github.graph.openOnGitHub",
|
||||
"title": "Open on GitHub",
|
||||
"title": "%command.openOnGitHub%",
|
||||
"icon": "$(github)"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
{
|
||||
"displayName": "GitHub",
|
||||
"description": "GitHub features for VS Code",
|
||||
"command.copyVscodeDevLink": "Copy vscode.dev Link",
|
||||
"command.publish": "Publish to GitHub",
|
||||
"command.openOnGitHub": "Open on GitHub",
|
||||
"command.openOnVscodeDev": "Open in vscode.dev",
|
||||
"config.branchProtection": "Controls whether to query repository rules for GitHub repositories",
|
||||
"config.gitAuthentication": "Controls whether to enable automatic GitHub authentication for git commands within VS Code.",
|
||||
"config.gitProtocol": "Controls which protocol is used to clone a GitHub repository",
|
||||
|
||||
Reference in New Issue
Block a user