mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Improve tsq/tree-sitter-query language support (#12148)
This commit is contained in:
parent
7b9b9329b9
commit
a5a7cff311
5 changed files with 65 additions and 42 deletions
|
@ -217,7 +217,7 @@
|
||||||
| thrift | ✓ | | | |
|
| thrift | ✓ | | | |
|
||||||
| todotxt | ✓ | | | |
|
| todotxt | ✓ | | | |
|
||||||
| toml | ✓ | ✓ | | `taplo` |
|
| toml | ✓ | ✓ | | `taplo` |
|
||||||
| tsq | ✓ | | | |
|
| tsq | ✓ | | | `ts_query_ls` |
|
||||||
| tsx | ✓ | ✓ | ✓ | `typescript-language-server` |
|
| tsx | ✓ | ✓ | ✓ | `typescript-language-server` |
|
||||||
| twig | ✓ | | | |
|
| twig | ✓ | | | |
|
||||||
| typescript | ✓ | ✓ | ✓ | `typescript-language-server` |
|
| typescript | ✓ | ✓ | ✓ | `typescript-language-server` |
|
||||||
|
|
|
@ -122,6 +122,7 @@ zls = { command = "zls" }
|
||||||
blueprint-compiler = { command = "blueprint-compiler", args = ["lsp"] }
|
blueprint-compiler = { command = "blueprint-compiler", args = ["lsp"] }
|
||||||
typst-lsp = { command = "typst-lsp" }
|
typst-lsp = { command = "typst-lsp" }
|
||||||
tinymist = { command = "tinymist" }
|
tinymist = { command = "tinymist" }
|
||||||
|
ts_query_ls = { command = "ts_query_ls" }
|
||||||
pkgbuild-language-server = { command = "pkgbuild-language-server" }
|
pkgbuild-language-server = { command = "pkgbuild-language-server" }
|
||||||
helm_ls = { command = "helm_ls", args = ["serve"] }
|
helm_ls = { command = "helm_ls", args = ["serve"] }
|
||||||
ember-language-server = { command = "ember-language-server", args = ["--stdio"] }
|
ember-language-server = { command = "ember-language-server", args = ["--stdio"] }
|
||||||
|
@ -1458,14 +1459,21 @@ language-servers = [ "swipl" ]
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "tsq"
|
name = "tsq"
|
||||||
scope = "source.tsq"
|
scope = "source.tsq"
|
||||||
file-types = ["tsq"]
|
file-types = [{ glob = "queries/*.scm" }, { glob = "injections.scm" }, { glob = "highlights.scm" }, { glob = "indents.scm" }, { glob = "textobjects.scm" }, { glob = "locals.scm" }, { glob = "tags.scm" }]
|
||||||
comment-token = ";"
|
comment-token = ";"
|
||||||
injection-regex = "tsq"
|
injection-regex = "tsq"
|
||||||
|
language-servers = ["ts_query_ls"]
|
||||||
|
grammar = "query"
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
[language.auto-pairs]
|
||||||
|
'(' = ')'
|
||||||
|
'[' = ']'
|
||||||
|
'"' = '"'
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "tsq"
|
name = "query"
|
||||||
source = { git = "https://github.com/the-mikedavis/tree-sitter-tsq", rev = "48b5e9f82ae0a4727201626f33a17f69f8e0ff86" }
|
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-query", rev = "a6674e279b14958625d7a530cabe06119c7a1532" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "cmake"
|
name = "cmake"
|
||||||
|
|
6
runtime/queries/tsq/folds.scm
Normal file
6
runtime/queries/tsq/folds.scm
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[
|
||||||
|
(named_node)
|
||||||
|
(predicate)
|
||||||
|
(grouping)
|
||||||
|
(list)
|
||||||
|
] @fold
|
|
@ -1,50 +1,57 @@
|
||||||
; mark the string passed #match? as a regex
|
((program
|
||||||
(((predicate_name) @function
|
.
|
||||||
(capture)
|
(comment)*
|
||||||
(string) @string.regexp)
|
.
|
||||||
(#eq? @function "#match?"))
|
(comment) @keyword.import)
|
||||||
|
(#match? @keyword.import "^;+ *inherits *:"))
|
||||||
|
|
||||||
; highlight inheritance comments
|
((parameters
|
||||||
(((comment) @keyword.directive)
|
(identifier) @constant.numeric)
|
||||||
(#match? @keyword.directive "^; +inherits *:"))
|
(#match? @constant.numeric "^[-+]?[0-9]+(.[0-9]+)?$"))
|
||||||
|
|
||||||
|
"_" @constant
|
||||||
|
|
||||||
[
|
[
|
||||||
"("
|
"@"
|
||||||
")"
|
"#"
|
||||||
"["
|
] @punctuation.special
|
||||||
"]"
|
|
||||||
] @punctuation.bracket
|
|
||||||
|
|
||||||
":" @punctuation.delimiter
|
":" @punctuation.delimiter
|
||||||
"!" @operator
|
|
||||||
|
|
||||||
[
|
[
|
||||||
(one_or_more)
|
"["
|
||||||
(zero_or_one)
|
"]"
|
||||||
(zero_or_more)
|
"("
|
||||||
] @operator
|
")"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
[
|
"." @operator
|
||||||
(wildcard_node)
|
|
||||||
(anchor)
|
|
||||||
] @constant.builtin
|
|
||||||
|
|
||||||
[
|
(predicate_type) @punctuation.special
|
||||||
(anonymous_leaf)
|
|
||||||
(string)
|
(quantifier) @operator
|
||||||
] @string
|
|
||||||
|
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
||||||
(field_name) @variable.other.member
|
(negated_field
|
||||||
|
"!" @operator
|
||||||
|
(identifier) @variable.other.member)
|
||||||
|
|
||||||
(capture) @label
|
(field_definition
|
||||||
|
name: (identifier) @variable.other.member)
|
||||||
|
|
||||||
((predicate_name) @function
|
(named_node
|
||||||
(#any-of? @function "#eq?" "#match?" "#any-of?" "#not-any-of?" "#is?" "#is-not?" "#not-same-line?" "#not-kind-eq?" "#set!" "#select-adjacent!" "#strip!"))
|
name: (identifier) @variable)
|
||||||
(predicate_name) @error
|
|
||||||
|
(predicate
|
||||||
|
name: (identifier) @function)
|
||||||
|
|
||||||
|
(anonymous_node
|
||||||
|
(string) @string)
|
||||||
|
|
||||||
|
(capture
|
||||||
|
(identifier) @type)
|
||||||
|
|
||||||
(escape_sequence) @constant.character.escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
(node_name) @tag
|
(string) @string
|
||||||
(variable) @variable
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
((comment) @injection.content
|
((comment) @injection.content
|
||||||
(#set! injection.language "comment"))
|
(#set! injection.language "comment"))
|
||||||
|
|
||||||
((predicate
|
((predicate
|
||||||
(predicate_name) @_predicate
|
name: (identifier) @_name
|
||||||
(string) @injection.content)
|
parameters:
|
||||||
(#eq? @_predicate "#match?")
|
(parameters
|
||||||
(#set! injection.language "regex"))
|
(string) @injection.content))
|
||||||
|
(#any-of? @_name "match" "not-match")
|
||||||
|
(#set! injection.language "regex"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue