aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/createEditorState.ts
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/createEditorState.ts')
-rw-r--r--subprojects/frontend/src/editor/createEditorState.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/subprojects/frontend/src/editor/createEditorState.ts b/subprojects/frontend/src/editor/createEditorState.ts
index 05028fcc..ce1efa4f 100644
--- a/subprojects/frontend/src/editor/createEditorState.ts
+++ b/subprojects/frontend/src/editor/createEditorState.ts
@@ -36,6 +36,7 @@ import problemLanguageSupport from '../language/problemLanguageSupport';
36 36
37import type EditorStore from './EditorStore'; 37import type EditorStore from './EditorStore';
38import SearchPanel from './SearchPanel'; 38import SearchPanel from './SearchPanel';
39import exposeDiagnostics from './exposeDiagnostics';
39import findOccurrences from './findOccurrences'; 40import findOccurrences from './findOccurrences';
40import indentationMarkerViewPlugin from './indentationMarkerViewPlugin'; 41import indentationMarkerViewPlugin from './indentationMarkerViewPlugin';
41import scrollbarViewPlugin from './scrollbarViewPlugin'; 42import scrollbarViewPlugin from './scrollbarViewPlugin';
@@ -56,6 +57,7 @@ export default function createEditorState(
56 bracketMatching(), 57 bracketMatching(),
57 drawSelection(), 58 drawSelection(),
58 EditorState.allowMultipleSelections.of(true), 59 EditorState.allowMultipleSelections.of(true),
60 exposeDiagnostics,
59 findOccurrences, 61 findOccurrences,
60 highlightActiveLine(), 62 highlightActiveLine(),
61 highlightActiveLineGutter(), 63 highlightActiveLineGutter(),