aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFrancesco <francesco.bbt@gmail.com>2021-06-01 21:59:56 +0200
committerGitHub <noreply@github.com>2021-06-01 21:59:56 +0200
commitab2f674595c0f11ecfa189e0e0dace77d7de9aa3 (patch)
tree542587f2ab4625ea018900dd04f75dbde3bcf5a7 /plugins
parentdb424f228357ad2bbe812aae330ff958cf96507c (diff)
parent5032ee40417dbe37f0af1e1037e5b546814bb079 (diff)
downloadlite-xl-plugins-ab2f674595c0f11ecfa189e0e0dace77d7de9aa3.tar.gz
lite-xl-plugins-ab2f674595c0f11ecfa189e0e0dace77d7de9aa3.zip
Merge pull request #22 from ChildishGiant/vlang
Add language_v
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_v.lua69
1 files changed, 69 insertions, 0 deletions
diff --git a/plugins/language_v.lua b/plugins/language_v.lua
new file mode 100644
index 0000000..e4dc19b
--- /dev/null
+++ b/plugins/language_v.lua
@@ -0,0 +1,69 @@
+-- mod-version:1 -- lite-xl 1.16
+local syntax = require "core.syntax"
+
+syntax.add {
+ files = "%.v$", "%.vsh$",
+ headers = "^#!.*[ /]v\n",
+ comment = "//",
+ patterns = {
+ { pattern = "//.-\n", type = "comment" },
+ { pattern = { "/%*", "%*/" }, type = "comment" },
+ { pattern = { '"', '"', '\\' }, type = "string" },
+ { pattern = { "'", "'", '\\' }, type = "string" },
+ { pattern = "0x[%da-fA-F_]+", type = "number" },
+ { pattern = "0b[01_]+", type = "number" },
+ { pattern = "00[01234567_]+", type = "number" },
+ { pattern = "-?%.?%d+", type = "number" },
+ { pattern = "[%a_][%w_]*%f[(]", type = "function" },
+ { pattern = "[%+%-%*%/%%%~%&%|%^%!%=]", type = "operator" },
+ { pattern = "%:%=", type = "operator" },
+ { pattern = "%.%.%.?", type = "operator" },
+ { pattern = "[%a_][%w_]*", type = "symbol" },
+ },
+ symbols = {
+ ["as"] = "keyword",
+ ["asm"] = "keyword",
+ ["assert"] = "keyword",
+ ["atomic"] = "keyword",
+ ["break"] = "keyword",
+ ["const"] = "keyword",
+ ["continue"] = "keyword",
+ ["defer"] = "keyword",
+ ["else"] = "keyword",
+ ["embed"] = "keyword",
+ ["enum"] = "keyword",
+ ["fn"] = "keyword",
+ ["for"] = "keyword",
+ ["go"] = "keyword",
+ ["goto"] = "keyword",
+ ["if"] = "keyword",
+ ["import"] = "keyword",
+ ["in"] = "keyword",
+ ["interface"] = "keyword",
+ ["is"] = "keyword",
+ ["lock"] = "keyword",
+ ["match"] = "keyword",
+ ["module"] = "keyword",
+ ["mut"] = "keyword2",
+ ["none"] = "keyword",
+ ["or"] = "keyword",
+ ["return"] = "keyword",
+ ["rlock"] = "keyword",
+ ["select"] = "keyword",
+ ["shared"] = "keyword",
+ ["sizeof"] = "keyword",
+ ["static"] = "keyword",
+ ["struct"] = "keyword",
+ ["type"] = "keyword",
+ ["typeof"] = "keyword",
+ ["union"] = "keyword",
+ ["unsafe"] = "keyword",
+ ["__offsetof"] = "keyword",
+
+
+ ["true"] = "literal",
+ ["false"] = "literal",
+ ["pub"] = "literal",
+ },
+}
+