Spaces:
Running
Running
File size: 703 Bytes
1433b16 | 1 2 3 4 5 6 7 8 9 10 11 | export { EditorState, Compartment, StateField, StateEffect } from "@codemirror/state";
export { EditorView, keymap, placeholder, lineNumbers, highlightActiveLine,
highlightActiveLineGutter, drawSelection, dropCursor, Decoration } from "@codemirror/view";
export { history, defaultKeymap, historyKeymap, indentWithTab } from "@codemirror/commands";
export { indentOnInput, bracketMatching, syntaxHighlighting, HighlightStyle } from "@codemirror/language";
export { tags } from "@lezer/highlight";
export { python } from "@codemirror/lang-python";
export { javascript } from "@codemirror/lang-javascript";
export { java } from "@codemirror/lang-java";
export { cpp } from "@codemirror/lang-cpp";
|