Files
deb-lite-xl/debian/extra/plugins/language_lobster.lua
T
vhaudiquet 3bae6fd448 Bundle curated community plugins (2.1.8-4)
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)
2026-09-16 22:45:02 +02:00

80 lines
2.6 KiB
Lua

-- mod-version:3
local syntax = require "core.syntax"
syntax.add {
name = "Lobster",
files = "%.lobster$",
comment = "//",
patterns = {
{ pattern = "//.-\n", type = "comment" },
{ pattern = { "/%*", "%*/" }, type = "comment" },
{ pattern = "struct%s()[%a_][%w_]*", type = { "keyword", "keyword2" } },
{ pattern = "class%s()[%a_][%w_]*", type = { "keyword", "keyword2" } },
{ pattern = "[%w_]+%s*%f[{]", type = "keyword2" },
{ pattern = { '"', '"', '\\' }, type = "string" },
{ pattern = { "'", "'", '\\' }, type = "string" },
{ pattern = { '"""', '"""' }, type = "string" },
{ pattern = "0x%x+", type = "number" },
{ pattern = "%d+[%d%.eE]*f?", type = "number" },
{ pattern = "%.?%d+f?", type = "number" },
{ pattern = "[%+%-=/%*%^%%<>!~|&%?]", type = "operator" },
{ pattern = "[%a_][%w_]*%f[(]", type = "function" },
{ pattern = "[%a_][%w_]*", type = "symbol" },
},
symbols = {
["import"] = "keyword",
["from"] = "keyword",
["def"] = "keyword",
["fn"] = "keyword",
["return"] = "keyword",
["program"] = "keyword",
["private"] = "keyword",
["resource"] = "keyword",
-- not really keywords but provides control-flow constructs
["if"] = "keyword",
["guard"] = "keyword",
["for"] = "keyword",
["while"] = "keyword",
["else"] = "keyword",
["enum"] = "keyword",
["enum_flags"] = "keyword",
["int"] = "keyword2",
["float"] = "keyword2",
["string"] = "keyword2",
["any"] = "keyword2",
["void"] = "keyword2",
["is"] = "keyword",
["typeof"] = "keyword",
["var"] = "keyword",
["let"] = "keyword",
["pakfile"] = "keyword",
["switch"] = "keyword",
["case"] = "keyword",
["default"] = "keyword",
["namespace"] = "keyword",
["constructor"] = "keyword",
["operator"] = "keyword",
["super"] = "keyword",
["abstract"] = "keyword",
["attribute"] = "keyword",
["member"] = "keyword",
["member_frame"] = "keyword",
["static"] = "keyword",
["static_frame"] = "keyword",
["not"] = "keyword",
["and"] = "keyword",
["or"] = "keyword",
["struct"] = "keyword",
["class"] = "keyword",
["nil"] = "literal",
},
}