From c287a8cdb589172bbba8969357a671dabc6596bd Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 5 Dec 2025 08:06:13 +0100 Subject: [PATCH] Disable matchBrackets in monaco (#36089) This one may be a bit opinionated but I prefer my editors to be clean of distractions and these bracket highlights look too much like a cursor on quick glance imho. Before: Screenshot 2025-12-04 at 20 26 14 After: Screenshot 2025-12-04 at 20 26 25 --- web_src/js/features/codeeditor.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web_src/js/features/codeeditor.ts b/web_src/js/features/codeeditor.ts index 1e620ce628..97f45ef708 100644 --- a/web_src/js/features/codeeditor.ts +++ b/web_src/js/features/codeeditor.ts @@ -41,6 +41,7 @@ const baseOptions: MonacoOpts = { wrappingIndent: 'none', wordWrapBreakAfterCharacters: '', wordWrapBreakBeforeCharacters: '', + matchBrackets: 'never', }; function getEditorconfig(input: HTMLInputElement): EditorConfig | null {