Adds gitlens.openBranchInRemote command

Adds gitlens.openRepoInRemote command
This commit is contained in:
Eric Amodio
2017-05-22 16:06:45 -04:00
parent 49fa9b5078
commit 6d1a1ca346
9 changed files with 147 additions and 4 deletions

View File

@@ -498,6 +498,11 @@
"title": "Open Changed Files",
"category": "GitLens"
},
{
"command": "gitlens.openBranchInRemote",
"title": "Open Branch in Remote",
"category": "GitLens"
},
{
"command": "gitlens.openCommitInRemote",
"title": "Open Line Commit in Remote",
@@ -508,6 +513,11 @@
"title": "Open File in Remote",
"category": "GitLens"
},
{
"command": "gitlens.openRepoInRemote",
"title": "Open Repository in Remote",
"category": "GitLens"
},
{
"command": "gitlens.stashApply",
"title": "Apply Stashed Changes",
@@ -617,6 +627,10 @@
"command": "gitlens.openChangedFiles",
"when": "gitlens:enabled"
},
{
"command": "gitlens.openBranchInRemote",
"when": "gitlens:hasRemotes"
},
{
"command": "gitlens.openCommitInRemote",
"when": "gitlens:isBlameable && gitlens:hasRemotes"
@@ -625,6 +639,10 @@
"command": "gitlens.openFileInRemote",
"when": "gitlens:isTracked && gitlens:hasRemotes"
},
{
"command": "gitlens.openRepoInRemote",
"when": "gitlens:hasRemotes"
},
{
"command": "gitlens.stashApply",
"when": "gitlens:enabled && config.gitlens.insiders"
@@ -899,7 +917,7 @@
"@types/mocha": "2.2.41",
"@types/node": "7.0.18",
"@types/tmp": "0.0.33",
"mocha": "3.3.0",
"mocha": "3.4.1",
"tslint": "5.2.0",
"typescript": "2.3.2",
"vscode": "1.1.0"