Browse Source

Reorders fetch/push/pull

Adds fetch/push/pull to repo context menu
main
Eric Amodio 6 years ago
parent
commit
9c038ace33
1 changed files with 21 additions and 6 deletions
  1. +21
    -6
      package.json

+ 21
- 6
package.json View File

@ -2954,12 +2954,12 @@
"group": "navigation@1"
},
{
"command": "gitlens.repositoriesExplorer.fetchAll",
"command": "gitlens.repositoriesExplorer.pullAll",
"when": "view =~ /^gitlens.repositoriesExplorer:/",
"group": "navigation@7"
},
{
"command": "gitlens.repositoriesExplorer.pullAll",
"command": "gitlens.repositoriesExplorer.fetchAll",
"when": "view =~ /^gitlens.repositoriesExplorer:/",
"group": "navigation@8"
},
@ -3336,24 +3336,39 @@
"group": "7_gitlens_more@1"
},
{
"command": "gitlens.explorers.fetch",
"command": "gitlens.explorers.push",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "inline@97"
},
{
"command": "gitlens.explorers.push",
"command": "gitlens.explorers.pull",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "inline@98"
},
{
"command": "gitlens.explorers.fetch",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "inline@99"
},
{
"command": "gitlens.explorers.fetch",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "1_gitlens@1"
},
{
"command": "gitlens.explorers.pull",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "inline@98"
"group": "1_gitlens@2"
},
{
"command": "gitlens.explorers.push",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "1_gitlens@3"
},
{
"command": "gitlens.openRepoInRemote",
"when": "viewItem == gitlens:repository && gitlens:hasRemotes",
"group": "1_gitlens@1"
"group": "3_gitlens@1"
},
{
"command": "gitlens.explorers.closeRepository",

Loading…
Cancel
Save