@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [6.4.0-beta] - 2017-12-02
## [6.4.0-beta] - 2017-12-02
### Added
### Added
- Adds `gitlens.keymap` setting to specify the keymap to use for GitLens shortcut keys -- closes [#104](https://github.com/eamodio/vscode-gitlens/issues/104)
- `standard` - adds a standard set of shortcut keys
- `chorded` - adds a chorded set of shortcut keys that all start with `Ctrl+Alt+G` (`⌥⌘G` on macOS)
- `none` - no shortcut keys will be added
- Adds progress indicator to the `Show Stashed Changes` command (`gitlens.showQuickStashList`)
- Adds progress indicator to the `Show Stashed Changes` command (`gitlens.showQuickStashList`)
- Adds progress indicator to the `Apply Stashed Changes` command (`gitlens.stashApply`)
- Adds progress indicator to the `Apply Stashed Changes` command (`gitlens.stashApply`)
@ -28,6 +28,7 @@ While GitLens is highly customizable and provides many [configuration settings](
|`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
|`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
|`gitlens.gitExplorer.enabled`|Specifies whether or not to show the `GitLens` view
|`gitlens.gitExplorer.enabled`|Specifies whether or not to show the `GitLens` view
|`gitlens.statusBar.enabled`|Specifies whether or not to provide blame information on the status bar
|`gitlens.statusBar.enabled`|Specifies whether or not to provide blame information on the status bar
|`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
## Features
## Features
@ -345,6 +346,7 @@ GitLens is highly customizable and provides many configuration settings to allow
|-----|------------
|-----|------------
|`gitlens.defaultDateFormat`|Specifies how all absolute dates will be formatted by default<br/>See https://momentjs.com/docs/#/displaying/format/ for valid formats
|`gitlens.defaultDateFormat`|Specifies how all absolute dates will be formatted by default<br/>See https://momentjs.com/docs/#/displaying/format/ for valid formats
|`gitlens.insiders`|Opts into the insiders channel -- provides access to upcoming features
|`gitlens.insiders`|Opts into the insiders channel -- provides access to upcoming features
|`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
|`gitlens.outputLevel`|Specifies how much (if any) output will be sent to the GitLens output channel
|`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)",
"description":"Specifies whether or not to enable new experimental features (expect there to be issues)",
"scope":"window"
"scope":"window"
},
},
"gitlens.keymap":{
"type":"string",
"default":"standard",
"enum":[
"standard",
"chorded",
"none"
],
"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",