chore(code): reintroduce bracket matching

This commit is contained in:
Elian Doran 2025-05-11 12:11:24 +03:00
parent ec72800b00
commit df92ec9521
No known key found for this signature in database

View File

@ -1,6 +1,6 @@
import { defaultKeymap, indentWithTab } from "@codemirror/commands";
import { EditorView, highlightActiveLine, keymap, lineNumbers, placeholder, ViewUpdate, type EditorViewConfig } from "@codemirror/view";
import { defaultHighlightStyle, StreamLanguage, syntaxHighlighting, indentUnit } from "@codemirror/language";
import { defaultHighlightStyle, StreamLanguage, syntaxHighlighting, indentUnit, bracketMatching } from "@codemirror/language";
import { Compartment } from "@codemirror/state";
import { highlightSelectionMatches } from "@codemirror/search";
import byMimeType from "./syntax_highlighting.js";
@ -29,6 +29,7 @@ export default class CodeMirror extends EditorView {
syntaxHighlighting(defaultHighlightStyle),
highlightActiveLine(),
highlightSelectionMatches(),
bracketMatching(),
lineNumbers(),
indentUnit.of(" ".repeat(4))
];