[mod] msg

This commit is contained in:
Andy Bunce 2025-10-21 22:36:26 +01:00
parent dcfc390f1e
commit 21c0eae056
7 changed files with 21 additions and 16 deletions

View file

@ -4,7 +4,7 @@ import { EditorState, StateEffect, Compartment } from '@codemirror/state';
import {
lineNumbers, highlightActiveLineGutter, highlightWhitespace,
drawSelection, rectangularSelection, crosshairCursor, highlightActiveLine,
keymap, dropCursor, EditorView
keymap, dropCursor, EditorView,tooltips
} from '@codemirror/view';
import { openSearchPanel, highlightSelectionMatches, searchKeymap } from '@codemirror/search';
@ -90,7 +90,7 @@ const baseExts = [
drawSelection(),
dropCursor(),
EditorState.allowMultipleSelections.of(true),
tooltips({ }), // clipped
keymap.of([indentWithTab]),
indentOnInput(),
syntaxHighlighting(defaultHighlightStyle, { fallback: true }),