diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | plugins/language_gmi.lua | 21 |
2 files changed, 22 insertions, 0 deletions
@@ -61,6 +61,7 @@ to something other than a raw file it should be marked with an asterisk.* | [`language_gdscript`](plugins/language_gdscript.lua?raw=1) | Syntax for the [Godot Engine](https://godotengine.org/)'s GDScript scripting language | | [`language_glsl`](plugins/language_glsl.lua?raw=1) | Syntax for the [GLSL](https://www.khronos.org/registry/OpenGL/specs/gl/) programming language | | [`language_go`](plugins/language_go.lua?raw=1) | Syntax for the [Go](https://golang.org/) programming language | +| [`language_gmi`](plugins/language_gmi.lua?raw=1) | Syntax for the [Gemtext](https://gemini.circumlunar.space/docs/gemtext.gmi) markup language | | [`language_hlsl`](plugins/language_hlsl.lua?raw=1) | Syntax for the [HLSL](https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl) programming language | | [`language_hs`](plugins/language_hs.lua?raw=1) | Syntax for the [Haskell](https://www.haskell.org/) programming language | | [`language_ini`](plugins/language_ini.lua?raw=1) | Syntax for [ini](https://en.wikipedia.org/wiki/INI_file) files | diff --git a/plugins/language_gmi.lua b/plugins/language_gmi.lua new file mode 100644 index 0000000..f478126 --- /dev/null +++ b/plugins/language_gmi.lua @@ -0,0 +1,21 @@ +-- mod-version:2 -- lite-xl 2.0 +local syntax = require "core.syntax" + + + +syntax.add { + files = { "%.gmi$" }, + patterns = { + { pattern = { "```", "```" }, type = "string" }, + { pattern = "#.-\n", type = "keyword" }, + { pattern = "%*.*\n", type = "keyword2" }, + { pattern = "=>", type = "function" }, + { pattern = "!?%[.-%]%(.-%)", type = "function" }, + { pattern = "https?://%S+", type = "literal" }, + { pattern = "gemini?://%S+", type = "literal" }, + { pattern = ">.*", type = "comment" }, + { pattern = ".*[>*#]", type = "normal" }, + { pattern = ".*=>", type = "normal" } + }, + symbols = { }, +} |