aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_csharp.lua
diff options
context:
space:
mode:
authorDevin Carr <devin.carr0@gmail.com>2020-05-12 11:20:47 -0700
committerDevin Carr <devin.carr0@gmail.com>2020-05-12 11:20:47 -0700
commitc3201874c06ae9f1db6217f87d7860a5b63facb4 (patch)
treef34e91b85fd2a47ad44e7e1c7db41c8b8cba13e0 /plugins/language_csharp.lua
parent21c2975b7e0ff3ba69dc0c550f034c1b3a9982f2 (diff)
downloadlite-xl-plugins-c3201874c06ae9f1db6217f87d7860a5b63facb4.tar.gz
lite-xl-plugins-c3201874c06ae9f1db6217f87d7860a5b63facb4.zip
Add language_csharp.lua
Diffstat (limited to 'plugins/language_csharp.lua')
-rw-r--r--plugins/language_csharp.lua113
1 files changed, 113 insertions, 0 deletions
diff --git a/plugins/language_csharp.lua b/plugins/language_csharp.lua
new file mode 100644
index 0000000..85c9cf4
--- /dev/null
+++ b/plugins/language_csharp.lua
@@ -0,0 +1,113 @@
+local syntax = require "core.syntax"
+local common = require "core.common"
+local style = require "core.style"
+
+-- additional syntax highlighting for character (same as string)
+style.syntax["character"] = style.syntax["string"]
+
+syntax.add {
+ files = "%.cs$",
+ comment = "//",
+ patterns = {
+ { pattern = "//.-\n", type = "comment" },
+ { pattern = { "/%*", "%*/" }, type = "comment" },
+ { pattern = { '"', '"', '\\' }, type = "string" },
+ { pattern = "'\\x%x?%x?%x?%x'", type = "character"}, -- hexadecimal escape sequence
+ { pattern = "'\\u%x%x%x%x'", type = "character"}, -- unicode escape sequence
+ { pattern = "'\\?.'", type = "character"}, -- character literal
+ { pattern = "-?0x%x+", type = "number" },
+ { pattern = "-?%d+[%d%.eE]*f?", type = "number" },
+ { pattern = "-?%.?%d+f?", type = "number" },
+ { pattern = "[%+%-=/%*%^%%<>!~|&]", type = "operator" },
+ { pattern = "%?%?", type = "operator" }, -- ?? null-coalescing
+ { pattern = "%?%.", type = "operator" }, -- ?. null-conditional
+ { pattern = "[%a_][%w_]*%f[(]", type = "function" },
+ { pattern = "[%a_][%w_]*", type = "symbol" },
+ },
+ symbols = {
+ -- keywords
+ ["abstract"] = "keyword",
+ ["as"] = "keyword",
+ ["await"] = "keyword",
+ ["base"] = "keyword",
+ ["break"] = "keyword",
+ ["case"] = "keyword",
+ ["catch"] = "keyword",
+ ["checked"] = "keyword",
+ ["class"] = "keyword",
+ ["const"] = "keyword",
+ ["continue"] = "keyword",
+ ["default"] = "keyword",
+ ["delegate"] = "keyword",
+ ["do"] = "keyword",
+ ["else"] = "keyword",
+ ["enum"] = "keyword",
+ ["event"] = "keyword",
+ ["explicit"] = "keyword",
+ ["extern"] = "keyword",
+ ["finally"] = "keyword",
+ ["fixed"] = "keyword",
+ ["for"] = "keyword",
+ ["foreach"] = "keyword",
+ ["goto"] = "keyword",
+ ["if"] = "keyword",
+ ["implicit"] = "keyword",
+ ["in"] = "keyword",
+ ["interface"] = "keyword",
+ ["internal"] = "keyword",
+ ["is"] = "keyword",
+ ["lock"] = "keyword",
+ ["namespace"] = "keyword",
+ ["new"] = "keyword",
+ ["object"] = "keyword",
+ ["operator"] = "keyword",
+ ["out"] = "keyword",
+ ["override"] = "keyword",
+ ["params"] = "keyword",
+ ["private"] = "keyword",
+ ["protected"] = "keyword",
+ ["public"] = "keyword",
+ ["readonly"] = "keyword",
+ ["ref"] = "keyword",
+ ["return"] = "keyword",
+ ["sealed"] = "keyword",
+ ["sizeof"] = "keyword",
+ ["stackalloc"] = "keyword",
+ ["static"] = "keyword",
+ ["struct"] = "keyword",
+ ["switch"] = "keyword",
+ ["this"] = "keyword",
+ ["throw"] = "keyword",
+ ["try"] = "keyword",
+ ["typeof"] = "keyword",
+ ["unchecked"] = "keyword",
+ ["unsafe"] = "keyword",
+ ["using"] = "keyword",
+ ["var"] = "keyword",
+ ["virtual"] = "keyword",
+ ["volatile"] = "keyword",
+ ["while"] = "keyword",
+ ["yield"] = "keyword",
+ -- types
+ ["bool"] = "keyword2",
+ ["byte"] = "keyword2",
+ ["char"] = "keyword2",
+ ["decimal"] = "keyword2",
+ ["double"] = "keyword2",
+ ["float"] = "keyword2",
+ ["int"] = "keyword2",
+ ["long"] = "keyword2",
+ ["sbyte"] = "keyword2",
+ ["short"] = "keyword2",
+ ["string"] = "keyword2",
+ ["uint"] = "keyword2",
+ ["ulong"] = "keyword2",
+ ["ushort"] = "keyword2",
+ ["void"] = "keyword2",
+ -- literals
+ ["true"] = "literal",
+ ["false"] = "literal",
+ ["null"] = "literal",
+ },
+}
+