mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-29 17:25:20 -05:00
Adds commit navigation in quick pick lists via alt+, alt+.
Reworks keyboard context
This commit is contained in:
32
package.json
32
package.json
@@ -341,16 +341,6 @@
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"command": "gitlens.key.left",
|
||||
"title": "Left KeyPress",
|
||||
"category": "GitLens:KeyPress"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.right",
|
||||
"title": "Right KeyPress",
|
||||
"category": "GitLens:KeyPress"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.diffDirectory",
|
||||
"title": "Directory Compare",
|
||||
@@ -458,14 +448,6 @@
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "gitlens.key.left",
|
||||
"when": "false"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.right",
|
||||
"when": "false"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.diffDirectory",
|
||||
"when": "gitlens:enabled"
|
||||
@@ -661,12 +643,22 @@
|
||||
{
|
||||
"command": "gitlens.key.left",
|
||||
"key": "alt+left",
|
||||
"when": "gitlens:key"
|
||||
"when": "gitlens:key:left"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.right",
|
||||
"key": "alt+right",
|
||||
"when": "gitlens:key"
|
||||
"when": "gitlens:key:right"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.,",
|
||||
"key": "alt+,",
|
||||
"when": "gitlens:key:,"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key..",
|
||||
"key": "alt+.",
|
||||
"when": "gitlens:key:."
|
||||
},
|
||||
{
|
||||
"command": "gitlens.toggleBlame",
|
||||
|
||||
Reference in New Issue
Block a user