mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
18 lines
540 B
YAML
18 lines
540 B
YAML
filetype: lfe
|
|
|
|
detect:
|
|
filename: "lfe$|\\.lfe$"
|
|
|
|
rules:
|
|
- symbol.brackets: "\\(|\\)"
|
|
- type: "defun|define-syntax|define|defmacro|defmodule|export"
|
|
- constant: "\\ [A-Za-z][A-Za-z0-9_-]+\\ "
|
|
- symbol.operator: "\\(([\\-+*/<>]|<=|>=)|'"
|
|
- constant.number: "\\b[0-9]+\\b"
|
|
- constant.string: "\\\"(\\\\.|[^\"])*\\\""
|
|
- special: "['|`][A-Za-z][A-Za-z0-9_\\-]+"
|
|
- constant.specialChar: "\\\\.?"
|
|
- comment: "(^|[[:space:]]);.*"
|
|
- indent-char.whitespace: "[[:space:]]+$"
|
|
- indent-char: " + +| + +"
|