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)
88 lines
3.6 KiB
Lua
88 lines
3.6 KiB
Lua
-- mod-version:3
|
|
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
name = "Java",
|
|
files = { "%.java$" },
|
|
comment = "//",
|
|
patterns = {
|
|
{ pattern = "//.*", type = "comment" },
|
|
{ pattern = { "/%*", "%*/" }, type = "comment" },
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
{ pattern = "'\\x%x?%x?%x?%x'", type = "string" }, -- character hexadecimal escape sequence
|
|
{ pattern = "'\\u%x%x%x%x'", type = "string" }, -- character unicode escape sequence
|
|
{ pattern = "'\\?.'", type = "string" }, -- character literal
|
|
{ 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" },
|
|
{ regex = "(?>\\w+\\.?)+(?=\\s+\\w++\\s*\\=\\s*)", type = "function" }, -- Class name when creating an object
|
|
{ regex = "[A-Z][A-Z_]+", type = "keyword2" }, -- Constants
|
|
{ pattern = "[%a_][%w_]*", type = "symbol" },
|
|
},
|
|
symbols = {
|
|
["abstract"] = "keyword",
|
|
["assert"] = "keyword",
|
|
["break"] = "keyword",
|
|
["case"] = "keyword",
|
|
["catch"] = "keyword",
|
|
["class"] = "keyword",
|
|
["const"] = "keyword",
|
|
["continue"] = "keyword",
|
|
["default"] = "keyword",
|
|
["do"] = "keyword",
|
|
["else"] = "keyword",
|
|
["enum"] = "keyword",
|
|
["extends"] = "keyword",
|
|
["final"] = "keyword",
|
|
["finally"] = "keyword",
|
|
["for"] = "keyword",
|
|
["if"] = "keyword",
|
|
["goto"] = "keyword",
|
|
["implements"] = "keyword",
|
|
["import"] = "keyword",
|
|
["instanceof"] = "keyword",
|
|
["interface"] = "keyword",
|
|
["native"] = "keyword",
|
|
["new"] = "keyword",
|
|
["package"] = "keyword",
|
|
["permits"] = "keyword",
|
|
["private"] = "keyword",
|
|
["protected"] = "keyword",
|
|
["public"] = "keyword",
|
|
["record"] = "keyword",
|
|
["return"] = "keyword",
|
|
["sealed"] = "keyword",
|
|
["static"] = "keyword",
|
|
["strictfp"] = "keyword",
|
|
["super"] = "keyword",
|
|
["switch"] = "keyword",
|
|
["synchronized"] = "keyword",
|
|
["this"] = "keyword",
|
|
["throw"] = "keyword",
|
|
["throws"] = "keyword",
|
|
["transient"] = "keyword",
|
|
["try"] = "keyword",
|
|
["var"] = "keyword",
|
|
["void"] = "keyword",
|
|
["volatile"] = "keyword",
|
|
["while"] = "keyword",
|
|
["yield"] = "keyword",
|
|
|
|
["boolean"] = "keyword2",
|
|
["byte"] = "keyword2",
|
|
["char"] = "keyword2",
|
|
["double"] = "keyword2",
|
|
["float"] = "keyword2",
|
|
["int"] = "keyword2",
|
|
["long"] = "keyword2",
|
|
["short"] = "keyword2",
|
|
|
|
["true"] = "literal",
|
|
["false"] = "literal",
|
|
["null"] = "literal"
|
|
}
|
|
}
|