@plutojl/lang-julia
v0.12.1
Published
Julia language support for the CodeMirror code editor
Downloads
97
Readme
@plutojl/lang-julia
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)
Usage
import { julia } from "lang-julia";
let state = EditorState.create({
...
extensions: [
julia(),
...
]
});