0.11.0 • Published 7 months ago

@plutojl/lang-julia v0.11.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

lang-julia

This package implements Julia language support for the CodeMirror 6 code editor.

Features:

  • Syntax highlighting
  • Indentation
  • Keyword completion (optional)

Usage

import { julia } from "lang-julia";

let state = EditorState.create({
  ...
  extensions: [
    julia(),
    ...
  ]
});

Consult TypeScript type definition for additional documentation.