mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
support Bazel languages (#2903)
This commit is contained in:
parent
6f932375bf
commit
64cf4c859b
@ -85,6 +85,7 @@
|
||||
| solidity | ✓ | | | `solc` |
|
||||
| sql | ✓ | | | |
|
||||
| sshclientconfig | ✓ | | | |
|
||||
| starlark | ✓ | ✓ | | |
|
||||
| svelte | ✓ | | ✓ | `svelteserver` |
|
||||
| swift | ✓ | | | `sourcekit-lsp` |
|
||||
| tablegen | ✓ | ✓ | ✓ | |
|
||||
|
@ -461,7 +461,7 @@ source = { git = "https://github.com/tree-sitter/tree-sitter-ruby", rev = "dfff6
|
||||
name = "bash"
|
||||
scope = "source.bash"
|
||||
injection-regex = "bash"
|
||||
file-types = ["sh", "bash", "zsh", ".bash_login", ".bash_logout", ".bash_profile", ".bashrc", ".profile", ".zshenv", ".zlogin", ".zlogout", ".zprofile", ".zshrc", "APKBUILD", "PKGBUILD", "eclass", "ebuild"]
|
||||
file-types = ["sh", "bash", "zsh", ".bash_login", ".bash_logout", ".bash_profile", ".bashrc", ".profile", ".zshenv", ".zlogin", ".zlogout", ".zprofile", ".zshrc", "APKBUILD", "PKGBUILD", "eclass", "ebuild", "bazelrc"]
|
||||
shebangs = ["sh", "bash", "dash"]
|
||||
roots = []
|
||||
comment-token = "#"
|
||||
@ -1478,3 +1478,13 @@ indent = { tab-width = 2, unit = " " }
|
||||
[[grammar]]
|
||||
name = "clojure"
|
||||
source = { git = "https://github.com/sogaiu/tree-sitter-clojure", rev = "e57c569ae332ca365da623712ae1f50f84daeae2" }
|
||||
|
||||
[[language]]
|
||||
name = "starlark"
|
||||
scope = "source.starlark"
|
||||
injection-regex = "(starlark|bzl|bazel)"
|
||||
file-types = ["bzl", "bazel", "BUILD"]
|
||||
roots = []
|
||||
comment-token = "#"
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
grammar = "python"
|
||||
|
1
runtime/queries/starlark/highlights.scm
Normal file
1
runtime/queries/starlark/highlights.scm
Normal file
@ -0,0 +1 @@
|
||||
; inherits: python
|
2
runtime/queries/starlark/injections.scm
Normal file
2
runtime/queries/starlark/injections.scm
Normal file
@ -0,0 +1,2 @@
|
||||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
1
runtime/queries/starlark/textobjects.scm
Normal file
1
runtime/queries/starlark/textobjects.scm
Normal file
@ -0,0 +1 @@
|
||||
; inherits: python
|
Loading…
Reference in New Issue
Block a user