You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6
6
7
7
## [6.4.0-beta] - 2017-12-02
8
8
### Added
9
+
- Adds `gitlens.keymap` setting to specify the keymap to use for GitLens shortcut keys -- closes [#104](https://github.com/eamodio/vscode-gitlens/issues/104)
10
+
-`standard` - adds a standard set of shortcut keys
11
+
-`chorded` - adds a chorded set of shortcut keys that all start with `Ctrl+Alt+G` (`⌥⌘G` on macOS)
12
+
-`none` - no shortcut keys will be added
9
13
- Adds progress indicator to the `Show Stashed Changes` command (`gitlens.showQuickStashList`)
10
14
- Adds progress indicator to the `Apply Stashed Changes` command (`gitlens.stashApply`)
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ While GitLens is highly customizable and provides many [configuration settings](
28
28
|`gitlens.codeLens.enabled`|Specifies whether or not to provide any Git code lens, by default<br />Use the `Toggle Git Code Lens` command (`gitlens.toggleCodeLens`) to toggle the Git code lens on and off for the current session
29
29
|`gitlens.gitExplorer.enabled`|Specifies whether or not to show the `GitLens` view
30
30
|`gitlens.statusBar.enabled`|Specifies whether or not to provide blame information on the status bar
31
+
|`gitlens.keymap`|Specifies the keymap to use for GitLens shortcut keys<br />`standard` - adds a standard set of shortcut keys<br />`chorded` - adds a chorded set of shortcut keys that all start with `Ctrl+Alt+G` (`⌥⌘G` on macOS)<br />`none` - no shortcut keys will be added
31
32
32
33
## Features
33
34
@@ -345,6 +346,7 @@ GitLens is highly customizable and provides many configuration settings to allow
345
346
|-----|------------
346
347
|`gitlens.defaultDateFormat`|Specifies how all absolute dates will be formatted by default<br />See https://momentjs.com/docs/#/displaying/format/ for valid formats
347
348
|`gitlens.insiders`|Opts into the insiders channel -- provides access to upcoming features
349
+
|`gitlens.keymap`|Specifies the keymap to use for GitLens shortcut keys<br />`standard` - adds a standard set of shortcut keys<br />`chorded` - adds a chorded set of shortcut keys that all start with `Ctrl+Alt+G` (`⌥⌘G` on macOS)<br />`none` - no shortcut keys will be added
348
350
|`gitlens.outputLevel`|Specifies how much (if any) output will be sent to the GitLens output channel
"description": "Specifies whether or not to enable new experimental features (expect there to be issues)",
66
66
"scope": "window"
67
67
},
68
+
"gitlens.keymap": {
69
+
"type": "string",
70
+
"default": "standard",
71
+
"enum": [
72
+
"standard",
73
+
"chorded",
74
+
"none"
75
+
],
76
+
"description": "Specifies the keymap to use for GitLens shortcut keys\n `standard` - adds a standard set of shortcut keys\n `chorded` - adds a chorded set of shortcut keys that all start with `Ctrl+Alt+G` (`⌥⌘G` on macOS)\n `none` - no shortcut keys will be added",
0 commit comments