This package implements Julia language support for the CodeMirror 6 code editor.
Features:
- Syntax highlighting based on the Lezer Julia parser
- Indentation
- Keyword completion (optional)
import { julia } from "lang-julia";
let state = EditorState.create({
...
extensions: [
julia(),
...
]
});