mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-27 09:35:42 -05:00
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:
25
package.json
25
package.json
@@ -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"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user