MakeupCure

A Makeup lexer for the Cure programming language.

Supported Cure version

The lexer tracks the surface syntax of Cure as of v0.34.1 (see the Cure CHANGELOG.md), including the macro/syntax family definition surface and the bare-slash regex literal introduced ahead of that release. Features covered include:

Stdlib-defined field names inside macro-generated DSL blocks (e.g. an actor's on_start/on_message/on_stop) are not language keywords — they are ordinary identifiers chosen by whichever syntax family schema is in use, so they are lexed and highlighted as plain names.

Installation

Add makeup_cure to your list of dependencies in mix.exs:

def deps do
[
{:makeup_cure, "~> 0.2"}
]
end

The lexer will be automatically registered in Makeup for the language name "cure" and the file extension .cure.

Usage

Once installed, ExDoc and any other tool using Makeup will automatically syntax-highlight Cure code blocks (tagged with cure as the language).

You can also use it directly:

alias Makeup.Lexers.CureLexer
CureLexer.lex("fn add(a: Int, b: Int) -> Int = a + b")

License

MIT—see LICENSE for details.