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
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
16
16
- Adds a new _Copy Current Branch Name_ (`gitlens.copyCurrentBranch`) command to copy the current branch name to the clipboard — closes [#1306](https://github.com/eamodio/vscode-gitlens/issues/1306)— thanks to [PR #1307](https://github.com/eamodio/vscode-gitlens/pull/1307) by Ken Hom ([@kh0m](https://github.com/kh0m))
17
17
- Adds a _Switch to Text_ button on the _Interactive Rebase Editor_ to open the text rebase todo file — note that closing either document will start the rebase
18
18
- Adds a notification which asks if you want to create a pull request after publishing a new branch
19
+
- Adds a `gitlens.views.branches.reveal` setting to specify whether to reveal branches in the _Branches_ view, otherwise they will be revealed in the _Repositories_ view
20
+
- Adds a `gitlens.views.commits.reveal` setting to specify whether to reveal commits in the _Commits_ view, otherwise they will be revealed in the _Repositories_ view
21
+
- Adds a `gitlens.views.remotes.reveal` setting to specify whether to reveal remotes in the _Remotes_ view, otherwise they will be revealed in the _Repositories_ view
22
+
- Adds a `gitlens.views.stashes.reveal` setting to specify whether to reveal stashes in the _Stashes_ view, otherwise they will be revealed in the _Repositories_ view
23
+
- Adds a `gitlens.views.tags.reveal` setting to specify whether to reveal tags in the _Tags_ view, otherwise they will be revealed in the _Repositories_ view
19
24
- Adds a `gitlens.advanced.abbreviateShaOnCopy` setting to specify to whether to copy full or abbreviated commit SHAs to the clipboard. Abbreviates to the length of `gitlens.advanced.abbreviatedShaLength`— closes [#1062](https://github.com/eamodio/vscode-gitlens/issues/1062)— thanks to [PR #1316](https://github.com/eamodio/vscode-gitlens/pull/1316) by Brendon Smith ([@br3ndonland](https://github.com/br3ndonland))
20
25
- Adds a `gitlens.advanced.externalDiffTool` setting to specify an optional external diff tool to use when comparing files. Must be a configured [Git difftool](https://git-scm.com/docs/git-config#Documentation/git-config.txt-difftool).
21
26
- Adds a `gitlens.advanced.externalDirectoryDiffTool` setting to specify an optional external diff tool to use when comparing directories. Must be a configured [Git difftool](https://git-scm.com/docs/git-config#Documentation/git-config.txt-difftool).
@@ -45,6 +50,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
45
50
- Fixes an issue where _Publish Branch_ was incorrectly showing up on remote branches
46
51
- Fixes an issue where the _Open Directory Compare \*_ commands failed to work
47
52
53
+
### Removed
54
+
55
+
- Removes the `gitlens.repositories.enabled` setting, since the view is toggleable as any other view now
56
+
- Removes the `gitlens.lineHistory.enabled` setting, since the view is toggleable as any other view now
57
+
- Removes the _Hide Repositories view_ command, since the view is toggleable as any other view now
58
+
- Removes the _Hide Line History view_ command, since the view is toggleable as any other view now
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -720,6 +720,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
720
720
|`gitlens.views.commits.pullRequests.enabled`| Specifies whether to query for pull requests associated with the current branch and commits in the _Commits_ view. Requires a connection to a supported remote service (e.g. GitHub) |
721
721
|`gitlens.views.commits.pullRequests.showForBranches`| Specifies whether to query for pull requests associated with the current branch and commits in the _Commits_ view. Requires a connection to a supported remote service (e.g. GitHub) |
722
722
|`gitlens.views.commits.pullRequests.showForCommits`| Specifies whether to show pull requests (if any) associated with the current branch in the _Commits_ view. Requires a connection to a supported remote service (e.g. GitHub) |
723
+
|`gitlens.views.commits.reveal`| Specifies whether to reveal commits in the _Commits_ view, otherwise they will be revealed in the _Repositories_ view |
723
724
|`gitlens.views.commits.showBranchComparison`| Specifies whether to show a comparison of the current branch or the working tree with a user-selected reference (branch, tag. etc) in the _Commits_ view<br /><br />`false` - hides the branch comparison<br />`branch` - compares the current branch with a user-selected reference<br />`working` - compares the working tree with a user-selected reference |
@@ -734,7 +735,6 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
734
735
|`gitlens.views.repositories.branches.layout`| Specifies how the _Repositories_ view will display branches<br /><br />`list` - displays branches as a list<br />`tree` - displays branches as a tree when branch names contain slashes `/`|
735
736
|`gitlens.views.repositories.branches.showBranchComparison`| Specifies whether to show a comparison of the branch with a user-selected reference (branch, tag. etc) under each branch in the _Repositories_ view view |
736
737
|`gitlens.views.repositories.compact`| Specifies whether to show the _Repositories_ view in a compact display density |
737
-
|`gitlens.views.repositories.enabled`| Specifies whether to show the _Repositories_ view |
738
738
|`gitlens.views.repositories.files.compact`| Specifies whether to compact (flatten) unnecessary file nesting in the _Repositories_ view. Only applies when `gitlens.views.repositories.files.layout` is set to `tree` or `auto`|
739
739
|`gitlens.views.repositories.files.layout`| Specifies how the _Repositories_ view will display files<br /><br />`auto` - automatically switches between displaying files as a `tree` or `list` based on the `gitlens.views.repositories.files.threshold` value and the number of files at each nesting level<br />`list` - displays files as a list<br />`tree` - displays files as a tree |
740
740
|`gitlens.views.repositories.files.threshold`| Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Repositories_ view. Only applies when `gitlens.views.repositories.files.layout` is set to `auto`|
@@ -764,7 +764,6 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
@@ -780,6 +779,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
780
779
|`gitlens.views.branches.pullRequests.enabled`| Specifies whether to query for pull requests associated with the current branch and commits in the _Branches_ view. Requires a connection to a supported remote service (e.g. GitHub) |
781
780
|`gitlens.views.branches.pullRequests.showForBranches`| Specifies whether to query for pull requests associated with the current branch and commits in the _Branches_ view. Requires a connection to a supported remote service (e.g. GitHub) |
782
781
|`gitlens.views.branches.pullRequests.showForCommits`| Specifies whether to show pull requests (if any) associated with the current branch in the _Branches_ view. Requires a connection to a supported remote service (e.g. GitHub) |
782
+
|`gitlens.views.branches.reveal`| Specifies whether to reveal branches in the _Branches_ view, otherwise they will be revealed in the _Repositories_ view |
783
783
|`gitlens.views.branches.showBranchComparison`| Specifies whether to show a comparison of the branch with a user-selected reference (branch, tag. etc) in the _Branches_ view<br /><br />`false` - hides the branch comparison<br />`branch` - compares the current branch with a user-selected reference |
@@ -796,6 +796,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
796
796
|`gitlens.views.remotes.pullRequests.enabled`| Specifies whether to query for pull requests associated with the current branch and commits in the _Remotes_ view. Requires a connection to a supported remote service (e.g. GitHub) |
797
797
|`gitlens.views.remotes.pullRequests.showForBranches`| Specifies whether to query for pull requests associated with the current branch and commits in the _Remotes_ view. Requires a connection to a supported remote service (e.g. GitHub) |
798
798
|`gitlens.views.remotes.pullRequests.showForCommits`| Specifies whether to show pull requests (if any) associated with the current branch in the _Remotes_ view. Requires a connection to a supported remote service (e.g. GitHub) |
799
+
|`gitlens.views.remotes.reveal`| Specifies whether to reveal remotes in the _Remotes_ view, otherwise they will be revealed in the _Repositories_ view |
799
800
|`gitlens.views.remotes.showBranchComparison`| Specifies whether to show a comparison of the branch with a user-selected reference (branch, tag. etc) in the _Remotes_ view<br /><br />`false` - hides the branch comparison<br />`branch` - compares the current branch with a user-selected reference |
@@ -807,6 +808,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
807
808
|`gitlens.views.stashes.files.compact`| Specifies whether to compact (flatten) unnecessary file nesting in the _Stashes_ view.<br />Only applies when `gitlens.views.commits.files.layout` is set to `tree` or `auto`|
808
809
|`gitlens.views.stashes.files.layout`| Specifies how the _Stashes_ view will display files<br /><br />`auto` - automatically switches between displaying files as a `tree` or `list` based on the `gitlens.views.commits.files.threshold` value and the number of files at each nesting level<br />`list` - displays files as a list<br />`tree` - displays files as a tree |
809
810
|`gitlens.views.stashes.files.threshold`| Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Stashes_ view<br />Only applies when `gitlens.views.commits.files.layout` is set to `auto`|
811
+
|`gitlens.views.stashes.reveal`| Specifies whether to reveal stashes in the _Stashes_ view, otherwise they will be revealed in the _Repositories_ view |
@@ -819,6 +821,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
819
821
|`gitlens.views.tags.files.compact`| Specifies whether to compact (flatten) unnecessary file nesting in the _Tags_ view.<br />Only applies when `gitlens.views.commits.files.layout` is set to `tree` or `auto`|
820
822
|`gitlens.views.tags.files.layout`| Specifies how the _Tags_ view will display files<br /><br />`auto` - automatically switches between displaying files as a `tree` or `list` based on the `gitlens.views.commits.files.threshold` value and the number of files at each nesting level<br />`list` - displays files as a list<br />`tree` - displays files as a tree |
821
823
|`gitlens.views.tags.files.threshold`| Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Tags_ view<br />Only applies when `gitlens.views.commits.files.layout` is set to `auto`|
824
+
|`gitlens.views.tags.reveal`| Specifies whether to reveal tags in the _Tags_ view, otherwise they will be revealed in the _Repositories_ view |
0 commit comments