Skip to content

Commit

Permalink
Fixes #184900. Enables advanced diff algorithm by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet committed Jul 21, 2023
1 parent c815a85 commit ef65bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/common/config/editorConfigurationSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const editorConfiguration: IConfigurationNode = {
'diffEditor.diffAlgorithm': {
type: 'string',
enum: ['legacy', 'advanced'],
default: 'legacy',
default: 'advanced',
markdownEnumDescriptions: [
nls.localize('diffAlgorithm.legacy', "Uses the legacy diffing algorithm."),
nls.localize('diffAlgorithm.advanced', "Uses the advanced diffing algorithm."),
Expand Down

0 comments on commit ef65bf2

Please sign in to comment.