mirror of https://github.com/helix-editor/helix
Add blueprint language (#7213)
* Add blueprint tree-sitter support * Add blueprint lsp support * Run cargo xtask docgenpull/7236/head
parent
751da01303
commit
2022e6175b
|
@ -7,6 +7,7 @@
|
||||||
| beancount | ✓ | | | |
|
| beancount | ✓ | | | |
|
||||||
| bibtex | ✓ | | | `texlab` |
|
| bibtex | ✓ | | | `texlab` |
|
||||||
| bicep | ✓ | | | `bicep-langserver` |
|
| bicep | ✓ | | | `bicep-langserver` |
|
||||||
|
| blueprint | ✓ | | | `blueprint-compiler` |
|
||||||
| c | ✓ | ✓ | ✓ | `clangd` |
|
| c | ✓ | ✓ | ✓ | `clangd` |
|
||||||
| c-sharp | ✓ | ✓ | | `OmniSharp` |
|
| c-sharp | ✓ | ✓ | | `OmniSharp` |
|
||||||
| cabal | | | | |
|
| cabal | | | | |
|
||||||
|
|
|
@ -77,6 +77,7 @@ vuels = { command = "vls" }
|
||||||
wgsl_analyzer = { command = "wgsl_analyzer" }
|
wgsl_analyzer = { command = "wgsl_analyzer" }
|
||||||
yaml-language-server = { command = "yaml-language-server", args = ["--stdio"] }
|
yaml-language-server = { command = "yaml-language-server", args = ["--stdio"] }
|
||||||
zls = { command = "zls" }
|
zls = { command = "zls" }
|
||||||
|
blueprint-compiler = { command = "blueprint-compiler", args = ["lsp"] }
|
||||||
|
|
||||||
|
|
||||||
[language-server.lua-language-server]
|
[language-server.lua-language-server]
|
||||||
|
@ -2577,3 +2578,17 @@ indent = { tab-width = 4, unit = "\t" }
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "just"
|
name = "just"
|
||||||
source = { git = "https://github.com/IndianBoy42/tree-sitter-just", rev = "8af0aab79854aaf25b620a52c39485849922f766" }
|
source = { git = "https://github.com/IndianBoy42/tree-sitter-just", rev = "8af0aab79854aaf25b620a52c39485849922f766" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "blueprint"
|
||||||
|
scope = "source.blueprint"
|
||||||
|
injection-regex = "blueprint"
|
||||||
|
file-types = ["blp"]
|
||||||
|
roots = []
|
||||||
|
comment-token = "//"
|
||||||
|
language-servers = [ "blueprint-compiler" ]
|
||||||
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "blueprint"
|
||||||
|
source = { git = "https://gitlab.com/gabmus/tree-sitter-blueprint", rev = "7f1a5df44861291d6951b6b2146a9fef4c226e14" }
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
(object_id) @attribute
|
||||||
|
|
||||||
|
(string) @string
|
||||||
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
(constant) @constant.builtin
|
||||||
|
(boolean) @constant.builtin.boolean
|
||||||
|
|
||||||
|
(template) @keyword
|
||||||
|
|
||||||
|
(using) @keyword.control.import
|
||||||
|
|
||||||
|
(decorator) @attribute
|
||||||
|
|
||||||
|
(property_definition (property_name) @variable.other.member)
|
||||||
|
|
||||||
|
(object) @type
|
||||||
|
|
||||||
|
(signal_binding (signal_name) @function.builtin)
|
||||||
|
(signal_binding (function (identifier)) @function)
|
||||||
|
(signal_binding "swapped" @keyword)
|
||||||
|
|
||||||
|
(styles_list "styles" @function.macro)
|
||||||
|
(layout_definition "layout" @function.macro)
|
||||||
|
|
||||||
|
(gettext_string "_" @function.builtin)
|
||||||
|
|
||||||
|
(menu_definition "menu" @keyword)
|
||||||
|
(menu_section "section" @keyword)
|
||||||
|
(menu_item "item" @function.macro)
|
||||||
|
|
||||||
|
(template_definition (template_name_qualifier) @keyword.storage.type)
|
||||||
|
|
||||||
|
(import_statement (gobject_library) @namespace)
|
||||||
|
|
||||||
|
(import_statement (version_number) @constant.numeric.float)
|
||||||
|
|
||||||
|
(float) @constant.numeric.float
|
||||||
|
(number) @constant.numeric
|
||||||
|
|
||||||
|
[
|
||||||
|
";"
|
||||||
|
"."
|
||||||
|
","
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
Loading…
Reference in New Issue