Changes shortcut keys for diff with previous commands

Adds diff with next command
Fixes #45 - Keyboard Shortcut collision with Project Manager
Preps v2.11.2
This commit is contained in:
Eric Amodio
2017-03-10 13:48:01 -05:00
parent 0480477136
commit df838e883a
12 changed files with 127 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "2.11.1",
"version": "2.11.2",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"
@@ -356,6 +356,11 @@
"title": "Directory Compare",
"category": "GitLens"
},
{
"command": "gitlens.diffWithNext",
"title": "Compare with Next Commit",
"category": "GitLens"
},
{
"command": "gitlens.diffWithPrevious",
"title": "Compare with Previous Commit",
@@ -465,6 +470,10 @@
"command": "gitlens.diffDirectory",
"when": "gitlens:enabled"
},
{
"command": "gitlens.diffWithNext",
"when": "gitlens:enabled"
},
{
"command": "gitlens.diffWithPrevious",
"when": "gitlens:enabled"
@@ -695,16 +704,22 @@
"mac": "alt+c",
"when": "editorTextFocus && gitlens:enabled"
},
{
"command": "gitlens.diffWithNext",
"key": "alt+.",
"mac": "alt+.",
"when": "editorTextFocus && gitlens:enabled"
},
{
"command": "gitlens.diffLineWithPrevious",
"key": "alt+p",
"mac": "alt+p",
"key": "shift+alt+,",
"mac": "shift+alt+,",
"when": "editorTextFocus && gitlens:enabled"
},
{
"command": "gitlens.diffWithPrevious",
"key": "shift+alt+p",
"mac": "shift+alt+p",
"key": "alt+,",
"mac": "alt+,",
"when": "editorTextFocus && gitlens:enabled"
},
{