()
| 28 | } |
| 29 | |
| 30 | export function getEditorSetup(): Array<Extension> { |
| 31 | return [ |
| 32 | highlightActiveLineGutter(), |
| 33 | highlightSpecialChars(), |
| 34 | drawSelection(), |
| 35 | dropCursor(), |
| 36 | bracketMatching(), |
| 37 | highlightActiveLine(), |
| 38 | highlightSelectionMatches(), |
| 39 | lineNumbers(), |
| 40 | ]; |
| 41 | } |