diff options
author | rxi <rxi@users.noreply.github.com> | 2020-04-27 18:41:46 +0100 |
---|---|---|
committer | rxi <rxi@users.noreply.github.com> | 2020-04-27 18:41:46 +0100 |
commit | 3c9af5d7289fb079517df630f6d17a98657b10b7 (patch) | |
tree | fb611fd263e6f6a449a416664d7f47eddc18008e /plugins/language_sh.lua | |
parent | 8d4088542bb210459633d0afb7be15f93c3d41c8 (diff) | |
download | lite-xl-plugins-3c9af5d7289fb079517df630f6d17a98657b10b7.tar.gz lite-xl-plugins-3c9af5d7289fb079517df630f6d17a98657b10b7.zip |
Added `language_sh` plugin
Diffstat (limited to 'plugins/language_sh.lua')
-rw-r--r-- | plugins/language_sh.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/language_sh.lua b/plugins/language_sh.lua new file mode 100644 index 0000000..e76cabc --- /dev/null +++ b/plugins/language_sh.lua @@ -0,0 +1,28 @@ +local syntax = require "core.syntax" + +syntax.add { + files = { "%.sh$" }, + comment = "#", + patterns = { + { pattern = "#.*\n", type = "comment" }, + { pattern = [[\.]], type = "normal" }, + { pattern = { '"', '"', '\\' }, type = "string" }, + { pattern = { "'", "'", '\\' }, type = "string" }, + { pattern = "%f[%w_][%d%.]+%f[^%w_]", type = "number" }, + { pattern = "[!<>|%[%]=*]", type = "operator" }, + { pattern = "%f[%S]%-[%w%-_]+", type = "function" }, + { pattern = "$[%a_@*][%w_]*", type = "keyword2" }, + { pattern = "[%a_][%w_]*", type = "symbol" }, + }, + symbols = { + ["if"] = "keyword", + ["then"] = "keyword", + ["elif"] = "keyword", + ["else"] = "keyword", + ["fi"] = "keyword", + ["echo"] = "keyword", + ["true"] = "literal", + ["false"] = "literal", + }, +} + |