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)
52 lines
1.5 KiB
Lua
52 lines
1.5 KiB
Lua
-- mod-version:3
|
|
|
|
-- Embedded JavaScript templating
|
|
-- provides .ejs syntax support (fork of language_html.lua).
|
|
|
|
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
name = "EJS",
|
|
files = { "%.ejs$" },
|
|
block_comment = { "<!--", "-->" },
|
|
patterns = {
|
|
{
|
|
pattern = {
|
|
"<%%",
|
|
"%%>"
|
|
},
|
|
syntax = '.js',
|
|
type = "function"
|
|
},
|
|
{
|
|
pattern = {
|
|
"<%s*[sS][cC][rR][iI][pP][tT]%f[%s>].->",
|
|
"<%s*/%s*[sS][cC][rR][iI][pP][tT]%s*>"
|
|
},
|
|
syntax = ".js",
|
|
type = "function"
|
|
},
|
|
{
|
|
pattern = {
|
|
"<%s*[sS][tT][yY][lL][eE]%f[%s>].->",
|
|
"<%s*/%s*[sS][tT][yY][lL][eE]%s*>"
|
|
},
|
|
syntax = ".css",
|
|
type = "function"
|
|
},
|
|
{ pattern = { "<!%-%-", "%-%->" }, type = "comment" },
|
|
{ pattern = { '%f[^>][^<]', '%f[<]' }, type = "normal" },
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
{ pattern = "0x[%da-fA-F]+", type = "number" },
|
|
{ pattern = "-?%d+[%d%.]*f?", type = "number" },
|
|
{ pattern = "-?%.?%d+f?", type = "number" },
|
|
{ pattern = "%f[^<]![%a_][%w_]*", type = "keyword2" },
|
|
{ pattern = "%f[^<][%a_][%w_]*", type = "function" },
|
|
{ pattern = "%f[^<]/[%a_][%w_]*", type = "function" },
|
|
{ pattern = "[%a_][%w_]*", type = "keyword" },
|
|
{ pattern = "[/<>=]", type = "operator" },
|
|
},
|
|
symbols = {},
|
|
}
|