mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-04 01:35:37 -05:00
Adds alt+left and alt+right keyboarding for quickpicks
This commit is contained in:
28
package.json
28
package.json
@@ -318,6 +318,16 @@
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"command": "gitlens.key.left",
|
||||
"title": "Left KeyPress",
|
||||
"category": "GitLens:KeyPress"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.right",
|
||||
"title": "Right KeyPress",
|
||||
"category": "GitLens:KeyPress"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.diffWithPrevious",
|
||||
"title": "Compare with Previous Commit",
|
||||
@@ -400,6 +410,14 @@
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "gitlens.key.left",
|
||||
"when": "false"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.right",
|
||||
"when": "false"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.diffWithPrevious",
|
||||
"when": "gitlens:enabled"
|
||||
@@ -567,6 +585,16 @@
|
||||
]
|
||||
},
|
||||
"keybindings": [
|
||||
{
|
||||
"command": "gitlens.key.left",
|
||||
"key": "alt+left",
|
||||
"when": "gitlens:key"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.key.right",
|
||||
"key": "alt+right",
|
||||
"when": "gitlens:key"
|
||||
},
|
||||
{
|
||||
"command": "gitlens.toggleBlame",
|
||||
"key": "alt+b",
|
||||
|
||||
Reference in New Issue
Block a user