From 68961e71edc00e4cf425464815b17b95278f4674 Mon Sep 17 00:00:00 2001 From: Vasyl Marchuk Date: Sat, 14 Sep 2024 15:25:59 +0300 Subject: [PATCH] Disable CodeMirror's inline changes highlighting --- app/components/code-mirror.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/code-mirror.ts b/app/components/code-mirror.ts index d09e88f148..e9eab0d637 100644 --- a/app/components/code-mirror.ts +++ b/app/components/code-mirror.ts @@ -312,7 +312,7 @@ const OPTION_HANDLERS: OptionHandlersSignature = { original: originalDocument, mergeControls: !!mergeControls, collapseUnchanged: collapseUnchanged ? { margin: 3, minSize: 4 } : undefined, - highlightChanges: true, + highlightChanges: false, syntaxHighlightDeletions: true, }), ]