Skip to content

Commit b2088e4

Browse files
committed
Changes Search & Compare as ungrouped by default
1 parent 11e769a commit b2088e4

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- Changes the _Search & Compare_ view to be separate (detached) from the new grouped _GitLens_ view
12+
913
## [16.0.0] - 2024-11-14
1014

1115
### Added
1216

13-
- Adds the ability to group GitLens views into a single GitLens view in the Source Control sidebar
17+
- Adds the ability to group GitLens views into a single _GitLens_ view in the Source Control sidebar
1418
- Includes Commits, Branches, Remotes, Stashes, Tags, Worktrees, Contributors, Repositories, Search & Compare, and Launchpad views
15-
- Switch views by clicking on the specific view icons in the grouped GitLens view header
16-
- Grouped views can be separated (detached) from the grouped GitLens view via context menu commands from the view header
19+
- Switch views by clicking on the specific view icons in the grouped _GitLens_ view header
20+
- Grouped views can be separated (detached) from the grouped _GitLens_ view via context menu commands from the view header
1721
- Detached views can be regrouped by clicking the close (`x`) icon in the view header
18-
- Adds a new `gitlens.views.scm.grouped.default` setting to specify the default view to show in the grouped GitLens view on new workspaces/folders (otherwise the last selected view is remembered)
19-
- Adds a new `gitlens.views.scm.grouped.views` setting to specify which views to show in the grouped GitLens view
22+
- Adds a new `gitlens.views.scm.grouped.default` setting to specify the default view to show in the grouped _GitLens_ view on new workspaces/folders (otherwise the last selected view is remembered)
23+
- Adds a new `gitlens.views.scm.grouped.views` setting to specify which views to show in the grouped _GitLens_ view
2024
- Adds a completely reimagined Home view
2125
- Active section:
2226
- Shows your current repository, branch, and repository state

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,7 @@
14711471
"worktrees": true,
14721472
"contributors": true,
14731473
"repositories": false,
1474-
"searchAndCompare": true,
1474+
"searchAndCompare": false,
14751475
"launchpad": false
14761476
},
14771477
"properties": {

src/views/views.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const defaultScmGroupedViews: Record<GroupableTreeViewTypes, boolean> = Object.f
5858
worktrees: true,
5959
contributors: true,
6060
repositories: false,
61-
searchAndCompare: true,
61+
searchAndCompare: false,
6262
launchpad: false,
6363
});
6464

0 commit comments

Comments
 (0)