This commit is contained in:
Leandro Afonso
2025-09-27 18:39:59 +01:00
commit f0cdef9259
1220 changed files with 77975 additions and 0 deletions

17
micro/syntax/lfe.yaml Normal file
View File

@@ -0,0 +1,17 @@
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: " + +| + +"