|
1 | | -import {keymap, highlightSpecialChars, drawSelection, highlightActiveLine, dropCursor} from "@codemirror/view" |
| 1 | +import {keymap, highlightSpecialChars, drawSelection, highlightActiveLine, dropCursor, |
| 2 | + rectangularSelection, crosshairCursor, |
| 3 | + lineNumbers, highlightActiveLineGutter} from "@codemirror/view" |
2 | 4 | import {Extension, EditorState} from "@codemirror/state" |
3 | 5 | import {history, historyKeymap} from "@codemirror/history" |
4 | 6 | import {foldGutter, foldKeymap} from "@codemirror/fold" |
5 | 7 | import {defaultHighlightStyle, syntaxHighlighting, indentOnInput} from "@codemirror/language" |
6 | | -import {lineNumbers, highlightActiveLineGutter} from "@codemirror/gutter" |
7 | 8 | import {defaultKeymap} from "@codemirror/commands" |
8 | 9 | import {bracketMatching} from "@codemirror/matchbrackets" |
9 | 10 | import {closeBrackets, closeBracketsKeymap} from "@codemirror/closebrackets" |
10 | 11 | import {searchKeymap, highlightSelectionMatches} from "@codemirror/search" |
11 | 12 | import {autocompletion, completionKeymap} from "@codemirror/autocomplete" |
12 | 13 | import {commentKeymap} from "@codemirror/comment" |
13 | | -import {rectangularSelection, crosshairCursor} from "@codemirror/rectangular-selection" |
14 | 14 | import {lintKeymap} from "@codemirror/lint" |
15 | 15 |
|
16 | 16 | /// This is an extension value that just pulls together a number of |
|
0 commit comments