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)
103 lines
3.2 KiB
Lua
103 lines
3.2 KiB
Lua
-- mod-version:3
|
|
|
|
-- Syntax highlighting for the Rivet programming language.
|
|
-- This plugin is always updated to the latest Rivet syntax.
|
|
-- By StunxFS =).
|
|
|
|
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
name = "Rivet",
|
|
files = {"%.ri$"},
|
|
comment = "//",
|
|
block_comment = {"/*", "*/"},
|
|
patterns = {
|
|
{pattern = "//.*", type = "comment"},
|
|
{pattern = {"/%*", "%*/"}, type = "comment"},
|
|
{pattern = {'[bcr]?"', '"', "\\"}, type = "string"},
|
|
{pattern = {"[b]?'", "'", "\\"}, type = "string"},
|
|
{pattern = "0b[01_]+", type = "number"},
|
|
{pattern = "0o[0-7_]+", type = "number"},
|
|
{pattern = "0x[%x_]+", type = "number"},
|
|
{pattern = "%d[%d_]*%.[%d_]*[eE][-+]?%d+", type = "number"},
|
|
{pattern = "%d[%d_]*%.[%d_]*", type = "number"},
|
|
{pattern = "%d[%d_]*", type = "number"},
|
|
{pattern = "-?%.?%d+", type = "number"},
|
|
{pattern = "[%[%]%(%)%+%-=/%*%^%%<>!~|&%.%?:;]", type = "operator"},
|
|
{
|
|
pattern = "_?%u[%u_][%u%d_]*%f[%s%+%*%-%.%)%]}%?%^%%=/<>~|&;:,!]",
|
|
type = "literal"
|
|
},
|
|
-- types
|
|
{pattern = "[A-Z][%w_]*", type = "keyword2"},
|
|
-- builtin func/var
|
|
{pattern = "%@%s?[%a_][%w_]*", type = "literal"},
|
|
-- `defer` modes
|
|
{pattern = "defer%s?%(%s?()[%a_][%w_]*()%s?%)", type = {"keyword", "comment", "normal"} },
|
|
-- functions
|
|
{pattern = "[%a_][%w_]*%f[(]", type = "function"},
|
|
-- attributes
|
|
{pattern = "#%s?%[.*%]", type = "keyword2"},
|
|
-- symbols
|
|
{pattern = "[%a_][%w_]*", type = "symbol"}
|
|
},
|
|
symbols = {
|
|
["alias"] = "keyword",
|
|
["as"] = "keyword",
|
|
["break"] = "keyword",
|
|
["catch"] = "keyword",
|
|
["const"] = "keyword",
|
|
["continue"] = "keyword",
|
|
["defer"] = "keyword",
|
|
["else"] = "keyword",
|
|
["enum"] = "keyword",
|
|
["extend"] = "keyword",
|
|
["extern"] = "keyword",
|
|
["func"] = "keyword",
|
|
["for"] = "keyword",
|
|
["if"] = "keyword",
|
|
["import"] = "keyword",
|
|
["in"] = "keyword",
|
|
["is"] = "keyword",
|
|
["match"] = "keyword",
|
|
["mut"] = "keyword",
|
|
["pub"] = "keyword",
|
|
["return"] = "keyword",
|
|
["struct"] = "keyword",
|
|
["test"] = "keyword",
|
|
["throw"] = "keyword",
|
|
["trait"] = "keyword",
|
|
["unsafe"] = "keyword",
|
|
["var"] = "keyword",
|
|
["while"] = "keyword",
|
|
|
|
-- literals
|
|
["false"] = "literal",
|
|
["none"] = "literal",
|
|
["self"] = "literal",
|
|
["true"] = "literal",
|
|
|
|
-- types
|
|
["never"] = "keyword2",
|
|
["bool"] = "keyword2",
|
|
["comptime_int"] = "keyword2",
|
|
["comptime_float"] = "keyword2",
|
|
["int"] = "keyword2",
|
|
["int8"] = "keyword2",
|
|
["int16"] = "keyword2",
|
|
["int32"] = "keyword2",
|
|
["int64"] = "keyword2",
|
|
["uint"] = "keyword2",
|
|
["uint8"] = "keyword2",
|
|
["uint16"] = "keyword2",
|
|
["uint32"] = "keyword2",
|
|
["uint64"] = "keyword2",
|
|
["float32"] = "keyword2",
|
|
["float64"] = "keyword2",
|
|
["rawptr"] = "keyword2",
|
|
["rune"] = "keyword2",
|
|
["string"] = "keyword2",
|
|
["Self"] = "keyword2"
|
|
}
|
|
}
|