We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67c269d commit 114aeebCopy full SHA for 114aeeb
packages/core/src/diff-file.ts
@@ -748,8 +748,13 @@ export class DiffFile {
748
(registerHighlighter
749
? registerHighlighter.name === this.#highlighterName && registerHighlighter.type === this.#highlighterType
750
: true)
751
- )
+ ) {
752
+ this.#newFileSyntaxLines = this.#newFileResult?.syntaxFile;
753
+
754
+ this.#oldFileSyntaxLines = this.#oldFileResult?.syntaxFile;
755
756
return;
757
+ }
758
759
this.#doSyntax({ registerHighlighter });
760
0 commit comments