diff options
author | Francesco <francesco.bbt@gmail.com> | 2021-09-15 22:35:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 22:35:04 +0200 |
commit | 2472c4807d40d7d91b5110bb5a4e2d101fabb82a (patch) | |
tree | 988104e3767cff26315c2738c6a3dbeaf97c1f9e /plugins | |
parent | 772127fd681d21bab227ba45359836f3a8d1014a (diff) | |
parent | ca995e592625832b5acdc8cb3a78489b8311e764 (diff) | |
download | lite-xl-plugins-2472c4807d40d7d91b5110bb5a4e2d101fabb82a.tar.gz lite-xl-plugins-2472c4807d40d7d91b5110bb5a4e2d101fabb82a.zip |
Merge pull request #72 from gjirokastrelbasanit34/master
Add R scripting language syntax support
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/language_R.lua | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/language_R.lua b/plugins/language_R.lua new file mode 100644 index 0000000..68c3a18 --- /dev/null +++ b/plugins/language_R.lua @@ -0,0 +1,39 @@ +-- mod-version:2 -- lite-xl 2.0 +local syntax = require "core.syntax" + +syntax.add{ + files = {"%.r$", "%.rds$", "%.rda$", "%.rdata$", "%.R$"}, + comment = "#", + patterns = { + {pattern = {"#", "\n"}, type = "comment"}, + {pattern = {'"', '"'}, type = "string"}, + {pattern = {"'", "'"}, type = "string"}, + {pattern = "[%a_][%w_]*%f[(]", type = "function"}, + {pattern = "[%a_][%w_]*", type = "symbol"}, + {pattern = "[%+%-=/%*%^%%<>!|&]", type = "operator"}, + {pattern = "0x[%da-fA-F]+", type = "number"}, + {pattern = "-?%d+[%d%.eE]*", type = "number"}, + {pattern = "-?%.?%d+", type = "number"}, + + }, + symbols = { + ["TRUE"] = "literal", + ["FALSE"] = "literal", + ["NA"] = "literal", + ["NULL"] = "literal", + ["Inf"] = "literal", + ["if"] = "keyword", + ["else"] = "keyword", + ["while"] = "keyword", + ["function"] = "keyword", + ["break"] = "keyword", + ["next"] = "keyword", + ["repeat"] = "keyword", + ["in"] = "keyword", + ["for"] = "keyword", + ["NA_integer"] = "keyword", + ["NA_complex"] = "keyword", + ["NA_character"] = "keyword", + ["NA_real"] = "keyword" + } +} |