diff options
author | rxi <rxi@users.noreply.github.com> | 2020-05-26 22:17:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 22:17:53 +0100 |
commit | 96cbb139ee92608d56592e41a1a7b97132869664 (patch) | |
tree | f504a178574e147b7b665e55d2d1fd91c0348c8d | |
parent | b80e49cb2c606f434b77ef2a0cd1f0a85db42f52 (diff) | |
parent | 7909cc8df540cd9283aee019eb0463d16a62ea76 (diff) | |
download | lite-xl-plugins-96cbb139ee92608d56592e41a1a7b97132869664.tar.gz lite-xl-plugins-96cbb139ee92608d56592e41a1a7b97132869664.zip |
Merge pull request #47 from 636f6d6d656e740a/master
Added LaTeX syntax file
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | plugins/language_tex.lua | 16 |
2 files changed, 17 insertions, 0 deletions
@@ -45,6 +45,7 @@ Plugin | Description [`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 [`language_sh`](plugins/language_sh.lua?raw=1) | Syntax for shell scripting language +[`language_tex`](plugins/language_tex.lua?raw=1) | Syntax for the [LaTeX](https://www.latex-project.org/) typesetting language [`language_wren`](plugins/language_wren.lua?raw=1) | Syntax for the [Wren](http://wren.io/) programming language [`lfautoinsert`](plugins/lfautoinsert.lua?raw=1) | Automatically inserts indentation and closing bracket/text after newline [`lineguide`](plugins/lineguide.lua?raw=1) | Displays a line-guide at the line limit offset *([screenshot](https://user-images.githubusercontent.com/3920290/81476159-2cf70000-9208-11ea-928b-9dae3884c477.png))* diff --git a/plugins/language_tex.lua b/plugins/language_tex.lua new file mode 100644 index 0000000..eced489 --- /dev/null +++ b/plugins/language_tex.lua @@ -0,0 +1,16 @@ +local syntax = require "core.syntax" + +syntax.add { + files = { "%.tex$" }, + comment = "%%", + patterns = { + { pattern = {"%%", "\n"}, type = "comment" }, + { pattern = "&", type = "operator" }, + { pattern = "\\\\", type = "operator" }, + { pattern = {"%$", "%$"}, type = "operator" }, + { pattern = {"\\%[", "\\]"}, type = "operator" }, + { pattern = {"{", "}"}, type = "keyword" }, + { pattern = "\\%w*", type = "keyword2" }, + }, + symbols = {} +} |