Vendored from upstream, pinned by commit (see debian/extra/README.source): - gitstatus, gitopen, fontconfig, open_ext, select_colorscheme, smoothcaret, nerdicons (font mapping patched to DATADIR, Ships the Symbols Nerd Font Mono TTF, SIL OFL 1.1) - lite-xl-lsp (complete LSP client; idle until a language server is configured) plus the lite-xl-widgets library it requires - 104 language syntax plugins (none duplicate the nine bundled in core) settings GUI left out upstream is broken: it requires a libraries.widget.fonts widget that does not exist in lite-xl-widgets at any revision. Co-developed-with: ZCode (Z.ai)
43 lines
1.4 KiB
Lua
43 lines
1.4 KiB
Lua
-- mod-version:3
|
|
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
name = "MARTe",
|
|
files = { "%.mrt$", "%.marte$" },
|
|
comment = "//",
|
|
block_comment = { "/*", "*/" },
|
|
patterns = {
|
|
{ pattern = "//.*", type = "comment" },
|
|
{ pattern = { "/%*", "%*/" }, type = "comment" },
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
{ pattern = "%-?%.inf", type = "number" },
|
|
{ pattern = "%.NaN", type = "number" },
|
|
{
|
|
pattern = "Class%s+()=()%s+[%a_][%w_:]*",
|
|
type = { "keyword", "operator", "keyword2"}
|
|
},
|
|
{
|
|
pattern = "Type%s+()=()%s+[%a_][%w_]*",
|
|
type = { "keyword", "operator", "keyword2"}
|
|
},
|
|
{
|
|
pattern = "[%+%$][%a_][%w_]+%s()=",
|
|
type = {"function", "operator"}
|
|
},
|
|
{ pattern = "=%s+()[%a_][%w_]+", type = "string" },
|
|
{
|
|
pattern = "[%a_][%w_]+%s()=",
|
|
type = {"keyword", "operator"}
|
|
},
|
|
{ pattern = "0x%x+", type = "number" },
|
|
{ pattern = "%d+[%d%.'eE]*f?", type = "number" },
|
|
{ pattern = "%.?%d+f?", type = "number" },
|
|
{ pattern = "%a[%w_]+", type = "literal" },
|
|
},
|
|
symbols = {
|
|
["true"] = "number",
|
|
["false"] = "number",
|
|
},
|
|
}
|