aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lua/nvim-treesitter/query_predicates.lua2
-rw-r--r--queries/c/indents.scm6
-rw-r--r--queries/ecma/indents.scm6
-rw-r--r--queries/groovy/indents.scm2
-rw-r--r--queries/ispc/indents.scm4
-rw-r--r--queries/ocaml/indents.scm2
-rw-r--r--queries/swift/indents.scm2
-rwxr-xr-xscripts/format-queries.lua8
8 files changed, 16 insertions, 16 deletions
diff --git a/lua/nvim-treesitter/query_predicates.lua b/lua/nvim-treesitter/query_predicates.lua
index 61400e478..2d61ca6b4 100644
--- a/lua/nvim-treesitter/query_predicates.lua
+++ b/lua/nvim-treesitter/query_predicates.lua
@@ -124,7 +124,7 @@ end, true)
---@param _bufnr integer
---@param pred string[]
---@return boolean|nil
-query.add_predicate("has-type?", function(match, _pattern, _bufnr, pred)
+query.add_predicate("kind-eq?", function(match, _pattern, _bufnr, pred)
if not valid_args(pred[1], pred, 2) then
return
end
diff --git a/queries/c/indents.scm b/queries/c/indents.scm
index 372a26c6c..1932ce8d6 100644
--- a/queries/c/indents.scm
+++ b/queries/c/indents.scm
@@ -24,14 +24,14 @@
((for_statement
body: (_) @_body) @indent.begin
- (#not-has-type? @_body compound_statement))
+ (#not-kind-eq? @_body "compound_statement"))
(while_statement
condition: (_) @indent.begin)
((while_statement
body: (_) @_body) @indent.begin
- (#not-has-type? @_body compound_statement))
+ (#not-kind-eq? @_body "compound_statement"))
((if_statement)
.
@@ -45,7 +45,7 @@
(if_statement
consequence: (_
";" @indent.end) @_consequence
- (#not-has-type? @_consequence compound_statement)
+ (#not-kind-eq? @_consequence "compound_statement")
alternative: (else_clause
"else" @indent.branch
[
diff --git a/queries/ecma/indents.scm b/queries/ecma/indents.scm
index 03b10c605..966664219 100644
--- a/queries/ecma/indents.scm
+++ b/queries/ecma/indents.scm
@@ -29,15 +29,15 @@
(arrow_function
body: (_) @_body
- (#not-has-type? @_body statement_block)) @indent.begin
+ (#not-kind-eq? @_body "statement_block")) @indent.begin
(assignment_expression
right: (_) @_right
- (#not-has-type? @_right arrow_function function)) @indent.begin
+ (#not-kind-eq? @_right "arrow_function" "function")) @indent.begin
(variable_declarator
value: (_) @_value
- (#not-has-type? @_value arrow_function call_expression function)) @indent.begin
+ (#not-kind-eq? @_value "arrow_function" "call_expression" "function")) @indent.begin
(arguments
")" @indent.end)
diff --git a/queries/groovy/indents.scm b/queries/groovy/indents.scm
index 888d50107..ba3a2e844 100644
--- a/queries/groovy/indents.scm
+++ b/queries/groovy/indents.scm
@@ -19,7 +19,7 @@
((for_loop
body: (_) @_body) @indent.begin
- (#not-has-type? @_body closure))
+ (#not-kind-eq? @_body "closure"))
; TODO: while, try
(list
diff --git a/queries/ispc/indents.scm b/queries/ispc/indents.scm
index 80723afb4..f8c04e3a9 100644
--- a/queries/ispc/indents.scm
+++ b/queries/ispc/indents.scm
@@ -2,8 +2,8 @@
((foreach_statement
body: (_) @_body) @indent.begin
- (#not-has-type? @_body compound_statement))
+ (#not-kind-eq? @_body "compound_statement"))
((foreach_instance_statement
body: (_) @_body) @indent.begin
- (#not-has-type? @_body compound_statement))
+ (#not-kind-eq? @_body "compound_statement"))
diff --git a/queries/ocaml/indents.scm b/queries/ocaml/indents.scm
index 9181dcadf..d7f05367d 100644
--- a/queries/ocaml/indents.scm
+++ b/queries/ocaml/indents.scm
@@ -28,7 +28,7 @@
((else_clause
(_) @_not_if) @indent.begin
- (#not-has-type? @_not_if if_expression))
+ (#not-kind-eq? @_not_if "if_expression"))
((parameter) @indent.begin
(#set! indent.start_at_same_line))
diff --git a/queries/swift/indents.scm b/queries/swift/indents.scm
index f208292c7..2366c3bd6 100644
--- a/queries/swift/indents.scm
+++ b/queries/swift/indents.scm
@@ -66,7 +66,7 @@
(_)* @indent.branch)
.
_ @indent.branch
- (#not-has-type? @indent.branch type_parameters parameter))
+ (#not-kind-eq? @indent.branch "type_parameters" "parameter"))
(ERROR
[
diff --git a/scripts/format-queries.lua b/scripts/format-queries.lua
index ec0e81a57..f241fa819 100755
--- a/scripts/format-queries.lua
+++ b/scripts/format-queries.lua
@@ -13,7 +13,7 @@ else
files = vim.fn.split(vim.fn.glob(arg .. "/**/*.scm"))
end
-ts.query.add_predicate("has-type?", function(match, _, _, pred)
+ts.query.add_predicate("kind-eq?", function(match, _, _, pred)
local node = match[pred[2]]
if not node then
return true
@@ -132,7 +132,7 @@ local format_queries = [[
;; Append newlines for nodes inside the list
(list
(_) @format.append-newline
- (#not-has-type? @format.append-newline capture quantifier))
+ (#not-kind-eq? @format.append-newline "capture" "quantifier"))
;; (_), "_" and _ handler
;; Start indents if it's one of these patterns
@@ -194,7 +194,7 @@ local format_queries = [[
] @format.cancel-append
.
")"
- (#not-has-type? @format.cancel-append comment))
+ (#not-kind-eq? @format.cancel-append "comment"))
;; All captures should be separated with a space
(capture) @format.prepend-space
@@ -233,7 +233,7 @@ local format_queries = [[
;; Collapsing closing parens
(grouping
(_) @format.cancel-append . ")"
- (#not-has-type? @format.cancel-append comment))
+ (#not-kind-eq? @format.cancel-append "comment"))
(grouping
(capture) @format.prepend-space)
;; Remove unnecessary parens