From 5ad8bd48be7186f641e2845ceb1fc857abe57dae Mon Sep 17 00:00:00 2001 From: Eddy Ernesto del Valle Pino Date: Sat, 11 Sep 2021 20:16:48 +0200 Subject: Fix typo in file name `langauge_rescript.lua` --- plugins/langauge_rescript.lua | 59 ------------------------------------------- plugins/language_rescript.lua | 59 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 59 deletions(-) delete mode 100644 plugins/langauge_rescript.lua create mode 100644 plugins/language_rescript.lua diff --git a/plugins/langauge_rescript.lua b/plugins/langauge_rescript.lua deleted file mode 100644 index 94dc964..0000000 --- a/plugins/langauge_rescript.lua +++ /dev/null @@ -1,59 +0,0 @@ --- mod-version:2 -- lite-xl 2.0 -local syntax = require "core.syntax" - -syntax.add { - files = { "%.res$" }, - comment = "//", - patterns = { - { pattern = "//.-\n", type = "comment" }, - { pattern = { "/%*", "%*/" }, type = "comment" }, - { pattern = { '"', '"', '\\' }, type = "string" }, - { pattern = { "'", "'", '\\' }, type = "string" }, - { pattern = { "`", "`", '\\' }, type = "string" }, - { pattern = "#[%a_][%w_]*", type = "literal" }, - { pattern = "0x[%da-fA-F]+", type = "number" }, - { pattern = "-?%d+[%d%.eE]*", type = "number" }, - { pattern = "-?%.?%d+", type = "number" }, - { pattern = "[%+%-=/%*%^%%<>!~|&]", type = "operator" }, - { pattern = "%f[^%.>]%l[%w_]*", type = "function" }, - { pattern = "%l[%w_]*%f[(]", type = "function" }, - { pattern = "%u[%w_]*", type = "keyword2" }, - { pattern = "[%l_][%w_%.]*", type = "symbol" }, - { pattern = "@%l[%w_]*", type = "string" }, - }, - symbols = { - ["and"] = "keyword", - ["array"] = "keyword2", - ["as"] = "keyword", - ["assert"] = "keyword", - ["bool"] = "keyword2", - ["constraint"] = "keyword", - ["downto"] = "keyword", - ["else"] = "keyword", - ["exception"] = "keyword", - ["external"] = "keyword", - ["false"] = "literal", - ["for"] = "keyword", - ["if"] = "keyword", - ["in"] = "keyword", - ["int"] = "keyword2", - ["include"] = "keyword", - ["lazy"] = "keyword", - ["let"] = "keyword", - ["module"] = "keyword", - ["mutable"] = "keyword", - ["of"] = "keyword", - ["open"] = "keyword", - ["option"] = "keyword2", - ["rec"] = "keyword", - ["switch"] = "keyword", - ["string"] = "keyword2", - ["to"] = "keyword", - ["true"] = "literal", - ["try"] = "keyword", - ["type"] = "keyword", - ["when"] = "keyword", - ["while"] = "keyword", - ["with"] = "keyword", - } -} diff --git a/plugins/language_rescript.lua b/plugins/language_rescript.lua new file mode 100644 index 0000000..94dc964 --- /dev/null +++ b/plugins/language_rescript.lua @@ -0,0 +1,59 @@ +-- mod-version:2 -- lite-xl 2.0 +local syntax = require "core.syntax" + +syntax.add { + files = { "%.res$" }, + comment = "//", + patterns = { + { pattern = "//.-\n", type = "comment" }, + { pattern = { "/%*", "%*/" }, type = "comment" }, + { pattern = { '"', '"', '\\' }, type = "string" }, + { pattern = { "'", "'", '\\' }, type = "string" }, + { pattern = { "`", "`", '\\' }, type = "string" }, + { pattern = "#[%a_][%w_]*", type = "literal" }, + { pattern = "0x[%da-fA-F]+", type = "number" }, + { pattern = "-?%d+[%d%.eE]*", type = "number" }, + { pattern = "-?%.?%d+", type = "number" }, + { pattern = "[%+%-=/%*%^%%<>!~|&]", type = "operator" }, + { pattern = "%f[^%.>]%l[%w_]*", type = "function" }, + { pattern = "%l[%w_]*%f[(]", type = "function" }, + { pattern = "%u[%w_]*", type = "keyword2" }, + { pattern = "[%l_][%w_%.]*", type = "symbol" }, + { pattern = "@%l[%w_]*", type = "string" }, + }, + symbols = { + ["and"] = "keyword", + ["array"] = "keyword2", + ["as"] = "keyword", + ["assert"] = "keyword", + ["bool"] = "keyword2", + ["constraint"] = "keyword", + ["downto"] = "keyword", + ["else"] = "keyword", + ["exception"] = "keyword", + ["external"] = "keyword", + ["false"] = "literal", + ["for"] = "keyword", + ["if"] = "keyword", + ["in"] = "keyword", + ["int"] = "keyword2", + ["include"] = "keyword", + ["lazy"] = "keyword", + ["let"] = "keyword", + ["module"] = "keyword", + ["mutable"] = "keyword", + ["of"] = "keyword", + ["open"] = "keyword", + ["option"] = "keyword2", + ["rec"] = "keyword", + ["switch"] = "keyword", + ["string"] = "keyword2", + ["to"] = "keyword", + ["true"] = "literal", + ["try"] = "keyword", + ["type"] = "keyword", + ["when"] = "keyword", + ["while"] = "keyword", + ["with"] = "keyword", + } +} -- cgit v1.2.3