Skip to content

Commit b245291

Browse files
committed
Fixes issue with chorded key for diffWithPreviousInDiff
1 parent b208e51 commit b245291

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1313
- Fixes [#391](https://github.com/eamodio/vscode-gitlens/issues/391) - GitLens adds some settings in settings.json
1414
- Fixes another case of [#343](https://github.com/eamodio/vscode-gitlens/issues/343) - Can't show blame when VSCode starts on branch without upstream — thanks to [PR #390](https://github.com/eamodio/vscode-gitlens/pull/390) by ryenus ([@ryenus](https://github.com/ryenus))
1515
- Fixes [#392](https://github.com/eamodio/vscode-gitlens/issues/392) - unable to contribute if default script shell is sh — thanks to [PR #393](https://github.com/eamodio/vscode-gitlens/pull/393) by Cédric Malard ([@cmalard](https://github.com/cmalard))
16+
- Fixes issue with the `chorded` keyboard shortcut for the *Compare File with Previous Revision* command (`gitlens.diffWithPreviousInDiff`) — from [#395](https://github.com/eamodio/vscode-gitlens/issues/395)
1617

1718
## [8.3.3] - 2018-05-31
1819
### Added

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3156,7 +3156,8 @@
31563156
},
31573157
{
31583158
"command": "gitlens.diffWithPreviousInDiff",
3159-
"key": "alt+,",
3159+
"key": "ctrl+shift+g ,",
3160+
"mac": "cmd+alt+g ,",
31603161
"when": "gitlens:keymap == chorded && isInDiffEditor && gitlens:activeIsTracked"
31613162
},
31623163
{

0 commit comments

Comments
 (0)