| 27 | } from "@codemirror/view"; |
| 28 | |
| 29 | export interface BaseExtensionOptions { |
| 30 | autoIndent?: boolean; |
| 31 | codeFolding?: boolean; |
| 32 | autoCloseBrackets?: boolean; |
| 33 | bracketMatching?: boolean; |
| 34 | highlightActiveLine?: boolean; |
| 35 | highlightSelectionMatches?: boolean; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Base extensions roughly matching the useful parts of CodeMirror's basicSetup |
nothing calls this directly
no outgoing calls
no test coverage detected