diff options
author | tiziw <34965470+tiziw@users.noreply.github.com> | 2020-06-16 00:12:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-16 00:12:17 +0200 |
commit | 900648e94fb778b443d75127e8d6c16a6bce4141 (patch) | |
tree | b547a6bca00bdf212071505dc14f910942a6071e | |
parent | 1d4b264e2988fe91b7071e0f86a22f97983da280 (diff) | |
download | lite-xl-plugins-900648e94fb778b443d75127e8d6c16a6bce4141.tar.gz lite-xl-plugins-900648e94fb778b443d75127e8d6c16a6bce4141.zip |
Add Java language syntax support
As title says. Patterns part is based on C# language lua file
-rw-r--r-- | plugins/language_java.lua | 75 |
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", + }, +} |