Skip to content

Commit

Permalink
Fixes #173455 (#173569)
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet committed Feb 6, 2023
1 parent 1775437 commit 35f6b55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ColorizedBracketPairsDecorationProvider extends Disposable implemen
return [];
}

const result = this.textModel.bracketPairs.getBracketsInRange(range).map<IModelDecoration>(bracket => ({
const result = this.textModel.bracketPairs.getBracketsInRange(range, true).map<IModelDecoration>(bracket => ({
id: `bracket${bracket.range.toString()}-${bracket.nestingLevel}`,
options: {
description: 'BracketPairColorization',
Expand Down

0 comments on commit 35f6b55

Please sign in to comment.