diff options
author | jgmdev <jgmdev@gmail.com> | 2021-06-14 19:04:47 -0400 |
---|---|---|
committer | jgmdev <jgmdev@gmail.com> | 2021-06-14 19:04:47 -0400 |
commit | 57adcb345c4a14de9cf69a3f4f971455732a95ab (patch) | |
tree | 4f2a2faeb51b6fa19e10018ba840027c96b7fbd3 | |
parent | 32b8d620b8b2aa07304ed76a2855d353faaa9ca0 (diff) | |
download | lite-xl-plugins-57adcb345c4a14de9cf69a3f4f971455732a95ab.tar.gz lite-xl-plugins-57adcb345c4a14de9cf69a3f4f971455732a95ab.zip |
Added language_po
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | plugins/language_po.lua | 20 |
2 files changed, 21 insertions, 0 deletions
@@ -72,6 +72,7 @@ Plugin | Description [`language_perl`](plugins/language_perl.lua?raw=1) | Syntax for the [Perl](https://perl.org) programming language [`language_php`](plugins/language_php.lua?raw=1) | Syntax for the [PHP](https://php.net) programming language [`language_pico8`](plugins/language_pico8.lua?raw=1) | Syntax for [Pico-8](https://www.lexaloffle.com/pico-8.php) cartridge files +[`language_po`](plugins/language_po.lua?raw=1) | Syntax for [PO](https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html) translation files [`language_powershell`](plugins/language_powershell.lua?raw=1) | Syntax for [PowerShell](https://docs.microsoft.com/en-us/powershell) scripting language [`language_psql`](plugins/language_psql.lua?raw=1) | Syntax for the postgresql database access language [`language_rust`](plugins/language_rust.lua?raw=1) | Syntax for the [Rust](https://rust-lang.org/) programming language 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", + }, +} |