diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/language_po.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/language_po.lua b/plugins/language_po.lua new file mode 100644 index 0000000..0f07d40 --- /dev/null +++ b/plugins/language_po.lua @@ -0,0 +1,20 @@ +-- mod-version:1 -- lite-xl 1.16 +local syntax = require "core.syntax" + +syntax.add { + files = { "%.po$", "%.pot$" }, + comment = "#", + patterns = { + { pattern = { "#", "\n"}, type = "comment" }, + { pattern = { '"', '"', '\\' }, type = "string" }, + { pattern = "[%[%]]", type = "operator" }, + { pattern = "%d+", type = "number" }, + { pattern = "[%a_][%w_]*", type = "symbol" }, + }, + symbols = { + ["msgctxt"] = "keyword", + ["msgid"] = "keyword", + ["msgid_plural"] = "keyword", + ["msgstr"] = "keyword", + }, +} |