aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFrancesco <francesco.bbt@gmail.com>2021-06-17 22:59:08 +0200
committerGitHub <noreply@github.com>2021-06-17 22:59:08 +0200
commit5dc72367396e8689442a9b3638e64cddee69047f (patch)
treec8257682521cb8c53d932f37bd67dca6df0b928f /plugins
parent538e44f960762fe4619494c72b8737d6dc22c7ba (diff)
parent57adcb345c4a14de9cf69a3f4f971455732a95ab (diff)
downloadlite-xl-plugins-5dc72367396e8689442a9b3638e64cddee69047f.tar.gz
lite-xl-plugins-5dc72367396e8689442a9b3638e64cddee69047f.zip
Merge pull request #33 from jgmdev/language-po
Added language_po
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_po.lua20
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",
+ },
+}