From d1a613b1c8dcebd40b4d622b841d95818cf7de5b Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 16 Aug 2018 01:11:57 -0400 Subject: [PATCH] Fixes #471 - Changes Ctrl+Alt to Ctrl+Shift --- CHANGELOG.md | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4ad88d..5f7c6aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] - 2018-08-16 +### Fixed +- Fixes [#471](https://github.com/eamodio/vscode-gitlens/issues/471) - Don't use Ctrl+Alt+[character] as a shortcut ## [8.5.4] - 2018-07-31 ### Added - Adds *Checkout Commit (via Terminal)* command (`gitlens.terminalCheckoutCommit`) to commit node(s) of the *GitLens* explorer — closes [#463](https://github.com/eamodio/vscode-gitlens/issues/463) diff --git a/package.json b/package.json index b0323ba..d362a83 100644 --- a/package.json +++ b/package.json @@ -3464,7 +3464,7 @@ }, { "command": "workbench.view.scm", - "key": "ctrl+alt+g g", + "key": "ctrl+shift+g g", "mac": "ctrl+shift+g", "when": "gitlens:keymap == chorded && gitlens:enabled" }