Skip to content

Commit

Permalink
Merge pull request rxi#22 from ChildishGiant/vlang
Browse files Browse the repository at this point in the history
Add language_v
  • Loading branch information
franko authored Jun 1, 2021
2 parents db424f2 + 5032ee4 commit ab2f674
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Plugin | Description
[`language_sh`](plugins/language_sh.lua?raw=1) | Syntax for shell scripting language
[`language_teal`](plugins/language_teal.lua?raw=1) | Syntax for the [Teal](https://github.com/teal-language/tl) programming language, a typed dialect of Lua.
[`language_tex`](plugins/language_tex.lua?raw=1) | Syntax for the [LaTeX](https://www.latex-project.org/) typesetting language
[`language_v`](plugins/language_v.lua?raw=1) | Syntax for the [V](https://vlang.io/) programming language
[`language_wren`](plugins/language_wren.lua?raw=1) | Syntax for the [Wren](http://wren.io/) programming language
[`language_zig`](plugins/language_zig.lua?raw=1) | Syntax for the [Zig](https://ziglang.org/) programming language
~~[`lastproject`](plugins/lastproject.lua?raw=1)~~ | Integrated with lite-xl ~~Loads the last loaded project if lite is launched without any arguments~~
Expand Down
69 changes: 69 additions & 0 deletions plugins/language_v.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
-- mod-version:1 -- lite-xl 1.16
local syntax = require "core.syntax"

syntax.add {
files = "%.v$", "%.vsh$",
headers = "^#!.*[ /]v\n",
comment = "//",
patterns = {
{ pattern = "//.-\n", type = "comment" },
{ pattern = { "/%*", "%*/" }, type = "comment" },
{ pattern = { '"', '"', '\\' }, type = "string" },
{ pattern = { "'", "'", '\\' }, type = "string" },
{ pattern = "0x[%da-fA-F_]+", type = "number" },
{ pattern = "0b[01_]+", type = "number" },
{ pattern = "00[01234567_]+", type = "number" },
{ pattern = "-?%.?%d+", type = "number" },
{ pattern = "[%a_][%w_]*%f[(]", type = "function" },
{ pattern = "[%+%-%*%/%%%~%&%|%^%!%=]", type = "operator" },
{ pattern = "%:%=", type = "operator" },
{ pattern = "%.%.%.?", type = "operator" },
{ pattern = "[%a_][%w_]*", type = "symbol" },
},
symbols = {
["as"] = "keyword",
["asm"] = "keyword",
["assert"] = "keyword",
["atomic"] = "keyword",
["break"] = "keyword",
["const"] = "keyword",
["continue"] = "keyword",
["defer"] = "keyword",
["else"] = "keyword",
["embed"] = "keyword",
["enum"] = "keyword",
["fn"] = "keyword",
["for"] = "keyword",
["go"] = "keyword",
["goto"] = "keyword",
["if"] = "keyword",
["import"] = "keyword",
["in"] = "keyword",
["interface"] = "keyword",
["is"] = "keyword",
["lock"] = "keyword",
["match"] = "keyword",
["module"] = "keyword",
["mut"] = "keyword2",
["none"] = "keyword",
["or"] = "keyword",
["return"] = "keyword",
["rlock"] = "keyword",
["select"] = "keyword",
["shared"] = "keyword",
["sizeof"] = "keyword",
["static"] = "keyword",
["struct"] = "keyword",
["type"] = "keyword",
["typeof"] = "keyword",
["union"] = "keyword",
["unsafe"] = "keyword",
["__offsetof"] = "keyword",


["true"] = "literal",
["false"] = "literal",
["pub"] = "literal",
},
}

0 comments on commit ab2f674

Please sign in to comment.