diff options
author | rxi <rxi@users.noreply.github.com> | 2020-04-08 14:01:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-08 14:01:37 +0100 |
commit | bb07bc7022edab4f9ff67f7e1fb8d1e2c64b4fc0 (patch) | |
tree | 6899d77ef81514aea4b8a95ab9a4155826f5d250 | |
parent | 62c86e11b424b97d9c92c09e2f2645edbf440ff0 (diff) | |
parent | abbdbe6dc8b3b6043c27f16823fd9ec88feccabf (diff) | |
download | lite-xl-plugins-bb07bc7022edab4f9ff67f7e1fb8d1e2c64b4fc0.tar.gz lite-xl-plugins-bb07bc7022edab4f9ff67f7e1fb8d1e2c64b4fc0.zip |
Merge pull request #6 from drmargarido/golang_support
Added syntax for the Go language.
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | language_go.lua | 71 |
2 files changed, 72 insertions, 0 deletions
@@ -7,6 +7,7 @@ Plugins for the [lite text editor](https://github.com/rxi/lite) Plugin | Description -------|----------------------------------------- [`language_fe`](language_fe.lua?raw=1) | Syntax for the [fe](https://github.com/rxi/fe) programming language +[`language_go`](language_go.lua?raw=1) | Syntax for the [Go](https://golang.org/) programming language [`language_jiyu`](language_jiyu.lua?raw=1) | Syntax for the [jiyu](https://github.com/machinamentum/jiyu) programming language [`language_odin`](language_odin.lua?raw=1) | Syntax for the [Odin](https://github.com/odin-lang/Odin) programming language [`language_wren`](language_wren.lua?raw=1) | Syntax for the [Wren](http://wren.io/) programming language diff --git a/language_go.lua b/language_go.lua new file mode 100644 index 0000000..488725f --- /dev/null +++ b/language_go.lua @@ -0,0 +1,71 @@ +local syntax = require "core.syntax" + +syntax.add { + files = { "%.go$" }, + comment = "//", + patterns = { + { pattern = "//.-\n", type = "comment" }, + { pattern = { "/%*", "%*/" }, type = "comment" }, + { pattern = { '"', '"', '\\' }, type = "string" }, + { pattern = { "`", "`", '\\' }, type = "string" }, + { pattern = "0[oO_][0-7]+", type = "number" }, + { pattern = "-?0x[%x_]+", type = "number" }, + { pattern = "-?%d+_%d", type = "number" }, + { pattern = "-?%d+[%d%.eE]*f?", type = "number" }, + { pattern = "-?%.?%d+f?", type = "number" }, + { pattern = "[%+%-=/%*%^%%<>!~|&]", type = "operator" }, + { pattern = ":=", type = "operator" }, + { pattern = "[%a_][%w_]*%f[(]", type = "function" }, + { pattern = "[%a_][%w_]*", type = "symbol" }, + }, + symbols = { + ["if"] = "keyword", + ["else"] = "keyword", + ["elseif"] = "keyword", + ["for"] = "keyword", + ["continue"] = "keyword", + ["return"] = "keyword", + ["struct"] = "keyword", + ["switch"] = "keyword", + ["case"] = "keyword", + ["default"] = "keyword", + ["const"] = "keyword", + ["package"] = "keyword", + ["import"] = "keyword", + ["func"] = "keyword", + ["var"] = "keyword", + ["type"] = "keyword", + ["interface"] = "keyword", + ["select"] = "keyword", + ["break"] = "keyword", + ["range"] = "keyword", + ["chan"] = "keyword", + ["defer"] = "keyword", + ["go"] = "keyword", + ["int"] = "keyword2", + ["int64"] = "keyword2", + ["int32"] = "keyword2", + ["int16"] = "keyword2", + ["int8"] = "keyword2", + ["uint"] = "keyword2", + ["uint64"] = "keyword2", + ["uint32"] = "keyword2", + ["uint16"] = "keyword2", + ["uint8"] = "keyword2", + ["uintptr"] = "keyword2", + ["float64"] = "keyword2", + ["float32"] = "keyword2", + ["map"] = "keyword2", + ["string"] = "keyword2", + ["rune"] = "keyword2", + ["bool"] = "keyword2", + ["byte"] = "keyword2", + ["error"] = "keyword2", + ["complex64"] = "keyword2", + ["complex128"] = "keyword2", + ["true"] = "literal", + ["false"] = "literal", + ["nil"] = "literal", + }, +} + |