aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-08-29 14:50:43 +0200
committerChristian Clason <ch.clason+github@icloud.com>2025-08-29 14:54:38 +0200
commit16da7ded58b41a4c320f32661264c6283ce8cd18 (patch)
tree31f9a332e168646aaa42a4f3c57260ccf22f2ca7 /runtime/queries
parentfeat(parsers): update bash, c, clojure, cpp, embedded_template, gap, go, html... (diff)
downloadnvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.tar
nvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.tar.gz
nvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.tar.bz2
nvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.tar.lz
nvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.tar.xz
nvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.tar.zst
nvim-treesitter-16da7ded58b41a4c320f32661264c6283ce8cd18.zip
feat(matlab)!: update parser and queries
Diffstat (limited to 'runtime/queries')
-rw-r--r--runtime/queries/matlab/highlights.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/runtime/queries/matlab/highlights.scm b/runtime/queries/matlab/highlights.scm
index 91fdae2a9..66ec69465 100644
--- a/runtime/queries/matlab/highlights.scm
+++ b/runtime/queries/matlab/highlights.scm
@@ -134,8 +134,7 @@
(identifier) @function)
(validation_functions
- (property_name
- (identifier) @function))
+ (identifier) @function)
(command
(command_name) @function.call)
@@ -205,7 +204,11 @@
(number) @number
-(boolean) @boolean
+((identifier) @boolean
+ (#eq? @boolean "true"))
+
+((identifier) @boolean
+ (#eq? @boolean "false"))
; Comments
[