Browse Source

Enables the new GitLens sidebar view by default

main
Eric Amodio 6 years ago
parent
commit
4afe1507ce
2 changed files with 5 additions and 4 deletions
  1. +2
    -1
      CHANGELOG.md
  2. +3
    -3
      package.json

+ 2
- 1
CHANGELOG.md View File

@ -6,7 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
### Added
- Adds the ability to show the *GitLens*, *GitLens File History*, and *GitLens Results* explorers in an all-new *GitLens* view (in addition to the existing locations)
- Adds an all-new *GitLens* sidebar view to contain the *GitLens*, *GitLens File History*, and *GitLens Results* explorers
- The new view is enabled by default, but can easily be configured back to the existing locations via the *GitLen* interactive settings editor
- Adds tag annotations to the tag tooltips in the *GitLens* explorer — closes [#431](https://github.com/eamodio/vscode-gitlens/issues/431)
- Adds `gitlens.hovers.avatars` setting to specify whether to show avatar images in hovers — closes [#432](https://github.com/eamodio/vscode-gitlens/issues/432) thanks to [PR #441](https://github.com/eamodio/vscode-gitlens/pull/441) by Segev Finer ([@segevfiner](https://github.com/segevfiner))
- Adds `gitlens.hovers.avatars` setting to the interactive settings editor to specify whether to show avatar images in hovers

+ 3
- 3
package.json View File

@ -474,7 +474,7 @@
},
"gitlens.gitExplorer.location": {
"type": "string",
"default": "scm",
"default": "gitlens",
"enum": [
"gitlens",
"explorer",
@ -536,7 +536,7 @@
},
"gitlens.historyExplorer.location": {
"type": "string",
"default": "explorer",
"default": "gitlens",
"enum": [
"gitlens",
"explorer",
@ -1081,7 +1081,7 @@
},
"gitlens.resultsExplorer.location": {
"type": "string",
"default": "explorer",
"default": "gitlens",
"enum": [
"gitlens",
"explorer",

Loading…
Cancel
Save