Skip to content

Commit

Permalink
Enable mutator group-by-name by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jonlamb-gh committed Jan 17, 2024
1 parent 0120229 commit b0763d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/src/mutators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MutatorsTreeMemento {
}

getGroupByMutatorName(): boolean {
return this.memento.get("mutatorsTree_groupByMutatorName", false);
return this.memento.get("mutatorsTree_groupByMutatorName", true);
}

async setGroupByMutatorName(val: boolean): Promise<void> {
Expand Down

0 comments on commit b0763d2

Please sign in to comment.