aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_v.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/language_v.lua')
-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",
+ },
+}
+