aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/createEditorState.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-10-31 15:57:18 -0400
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-05 19:41:17 +0100
commit20895372d408e41d2cb929dc7a568afce94807ce (patch)
treedd192e1d64e5ecec6ec17a72df3f86acbacc5c95 /subprojects/frontend/src/editor/createEditorState.ts
parentrefactor: DNF atoms (diff)
downloadrefinery-20895372d408e41d2cb929dc7a568afce94807ce.tar.gz
refinery-20895372d408e41d2cb929dc7a568afce94807ce.tar.zst
refinery-20895372d408e41d2cb929dc7a568afce94807ce.zip
refactor(frontend): editor theme improvements
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) {