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 c61f4a22..079e8a47 100644
--- a/subprojects/frontend/src/editor/createEditorState.ts
+++ b/subprojects/frontend/src/editor/createEditorState.ts
@@ -37,6 +37,7 @@ import problemLanguageSupport from '../language/problemLanguageSupport';
37import type EditorStore from './EditorStore'; 37import type EditorStore from './EditorStore';
38import SearchPanel from './SearchPanel'; 38import SearchPanel from './SearchPanel';
39import findOccurrences from './findOccurrences'; 39import findOccurrences from './findOccurrences';
40import indentationMarkerViewPlugin from './indentationMarkerViewPlugin';
40import semanticHighlighting from './semanticHighlighting'; 41import semanticHighlighting from './semanticHighlighting';
41 42
42export default function createEditorState( 43export default function createEditorState(
@@ -60,6 +61,7 @@ export default function createEditorState(
60 highlightSpecialChars(), 61 highlightSpecialChars(),
61 history(), 62 history(),
62 indentOnInput(), 63 indentOnInput(),
64 indentationMarkerViewPlugin(),
63 rectangularSelection(), 65 rectangularSelection(),
64 search({ 66 search({
65 createPanel(view) { 67 createPanel(view) {