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)
42 lines
1.4 KiB
Lua
42 lines
1.4 KiB
Lua
-- mod-version:3
|
|
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
name = "CUE",
|
|
files = "%.cue$",
|
|
comment = "//",
|
|
patterns = {
|
|
{ pattern = "//.*", type = "comment" },
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
{ pattern = { "`", "`", '\\' }, type = "string" },
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
{ pattern = "0[oO_][0-7]+i?", type = "number" },
|
|
{ pattern = "-?0x[%x_]+i?", type = "number" },
|
|
{ pattern = "-?%d+_%di?", type = "number" },
|
|
{ pattern = "-?%d+[%d%.eE]*f?i?", type = "number" },
|
|
{ pattern = "-?%.?%d+f?i?", type = "number" },
|
|
{ pattern = "[%a_][%w_]*%.", type = "literal" },
|
|
{ pattern = "[%a_][%w_]*", type = "symbol" },
|
|
{ pattern = "#[%a][%w_]*", type = "keyword2" },
|
|
-- operators
|
|
{ pattern = "[%+%-=/%*%^%%<>!~|&%?:%.]", type = "operator" },
|
|
},
|
|
symbols = {
|
|
["package"] = "keyword",
|
|
["import"] = "keyword",
|
|
["let"] = "keyword",
|
|
["for"] = "keyword",
|
|
["true"] = "literal",
|
|
["false"] = "literal",
|
|
["string"] = "keyword2",
|
|
["bool"] = "keyword2",
|
|
["number"] = "keyword2",
|
|
["uint32"] = "keyword2",
|
|
["int32"] = "keyword2",
|
|
["uint16"] = "keyword2",
|
|
["int16"] = "keyword2",
|
|
["uint8"] = "keyword2",
|
|
["float"] = "keyword2",
|
|
}
|
|
}
|