aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2020-06-20 15:49:35 +0100
committerGitHub <noreply@github.com>2020-06-20 15:49:35 +0100
commit9d874ff976b9cedb0a4ce0195f3d51564f38aa11 (patch)
treed78ad2cb23346af7ac2cdd84568c1fa2dde23f06 /plugins
parent467e90c56fce5b5d39a25b1c409a9f03e3b8fbe4 (diff)
parent0a2dbaac8fbd5d3a1c782a9b092c1d41d25bee58 (diff)
downloadlite-xl-plugins-9d874ff976b9cedb0a4ce0195f3d51564f38aa11.tar.gz
lite-xl-plugins-9d874ff976b9cedb0a4ce0195f3d51564f38aa11.zip
Merge pull request #60 from tiziw/patch-1
Add Java language syntax support
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_java.lua75
1 files changed, 75 insertions, 0 deletions
diff --git a/plugins/language_java.lua b/plugins/language_java.lua
new file mode 100644
index 0000000..1d9e12d
--- /dev/null
+++ b/plugins/language_java.lua
@@ -0,0 +1,75 @@
+local syntax = require "core.syntax"
+
+syntax.add {
+ files = { "%.java$" },
+ comment = "//",
+ patterns = {
+ { pattern = "//.-\n", 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" },
+ { pattern = "[%a_][%w_]*", type = "symbol" },
+ },
+ symbols = {
+ ["if"] = "keyword",
+ ["then"] = "keyword",
+ ["else"] = "keyword",
+ ["else if"] = "keyword",
+ ["do"] = "keyword",
+ ["while"] = "keyword",
+ ["for"] = "keyword",
+ ["new"] = "keyword",
+ ["break"] = "keyword",
+ ["continue"] = "keyword",
+ ["return"] = "keyword",
+ ["goto"] = "keyword",
+ ["class"] = "keyword",
+ ["implements"] = "keyword",
+ ["extends"] = "keyword",
+ ["private"] = "keyword",
+ ["protected"] = "keyword",
+ ["public"] = "keyword",
+ ["abstract"] = "keyword",
+ ["interface"] = "keyword",
+ ["assert"] = "keyword",
+ ["import"] = "keyword",
+ ["native"] = "keyword",
+ ["package"] = "keyword",
+ ["super"] = "keyword",
+ ["synchronized"] = "keyword",
+ ["instanceof"] = "keyword",
+ ["enum"] = "keyword",
+ ["catch"] = "keyword",
+ ["throw"] = "keyword",
+ ["throws"] = "keyword",
+ ["try"] = "keyword",
+ ["transient"] = "keyword",
+ ["finally"] = "keyword",
+ ["static"] = "keyword",
+ ["volatile"] = "keyword",
+ ["final"] = "keyword",
+ ["switch"] = "keyword",
+ ["case"] = "keyword",
+ ["default"] = "keyword",
+ ["void"] = "keyword",
+ ["int"] = "keyword2",
+ ["short"] = "keyword2",
+ ["byte"] = "keyword2",
+ ["long"] = "keyword2",
+ ["float"] = "keyword2",
+ ["double"] = "keyword2",
+ ["char"] = "keyword2",
+ ["boolean"] = "keyword2",
+ ["true"] = "literal",
+ ["false"] = "literal",
+ ["null"] = "literal",
+ },
+}