Skip to content

Commit

Permalink
Fixes #795 - regressions on commit file actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jul 18, 2019
1 parent 9b9d10f commit b3fc052
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

- Fixes [#791](https://github.com/eamodio/vscode-gitlens/issues/791) - Notification of unstashed changes in working directory on failed checkout
- Fixes [#792](https://github.com/eamodio/vscode-gitlens/issues/792) - Show last commit message on repositories view instead of Git reference
- Fixes [#795](https://github.com/eamodio/vscode-gitlens/issues/795) - Commit quick access icons replaced with open file actions in File History View

## [9.8.5] - 2019-07-10

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4311,12 +4311,12 @@
},
{
"command": "gitlens.views.compareFileWithSelected",
"when": "viewItem =~ /gitlens:file:\\b/ && gitlens:views:canCompare:file",
"when": "viewItem =~ /gitlens:file\\b/ && gitlens:views:canCompare:file",
"group": "7_gitlens_@1"
},
{
"command": "gitlens.views.selectFileForCompare",
"when": "viewItem =~ /gitlens:file:\\b/",
"when": "viewItem =~ /gitlens:file\\b/",
"group": "7_gitlens_@2"
},
{
Expand Down Expand Up @@ -4431,13 +4431,13 @@
},
{
"command": "gitlens.copyShaToClipboard",
"when": "viewItem =~ /gitlens:(file:)?commit\\b/",
"when": "viewItem =~ /gitlens:(commit|file\\b(?=.*?\\b\\+committed\\b))\\b/",
"group": "inline@98",
"alt": "gitlens.copyMessageToClipboard"
},
{
"command": "gitlens.copyShaToClipboard",
"when": "viewItem =~ /gitlens:(file:)?commit\\b/",
"when": "viewItem =~ /gitlens:(commit|file\\b(?=.*?\\b\\+committed\\b))\\b/",
"group": "5_gitlens@1"
},
{
Expand Down Expand Up @@ -4580,12 +4580,12 @@
},
{
"command": "gitlens.views.applyChanges",
"when": "viewItem =~ /gitlens:file:(commit|results)\\b/",
"when": "viewItem =~ /gitlens:file\\b((?=.*?\\b\\+committed\\b)|results\\b)/",
"group": "5_gitlens_1@1"
},
{
"command": "gitlens.views.checkout",
"when": "viewItem =~ /gitlens:file:(commit|results)\\b/",
"when": "viewItem =~ /gitlens:file\\b((?=.*?\\b\\+committed\\b)|results\\b)/",
"group": "5_gitlens_1@2"
},
{
Expand Down Expand Up @@ -4660,7 +4660,7 @@
},
{
"command": "gitlens.views.exploreRepoRevision",
"when": "viewItem =~ /gitlens:(branch|commit|file:(commit|results)|stash|tag)\\b/",
"when": "viewItem =~ /gitlens:(branch|commit|file\\b((?=.*?\\b\\+committed\\b)|results)|stash|tag)\\b/",
"group": "7_gitlens_more@1"
},
{
Expand Down

0 comments on commit b3fc052

Please sign in to comment.