aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/c
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-11-19 09:46:55 +0100
committerChristian Clason <ch.clason+github@icloud.com>2024-11-22 09:39:45 +0100
commit6e44a6a289c538c9e05a5114ddb7f91f581e8965 (patch)
treee6ceee8121d77cff5326344b9f7ae90b17b244be /runtime/queries/c
parentc2f08d294a7f30d92368ffed9115edf96279dcb9 (diff)
downloadrneovim-6e44a6a289c538c9e05a5114ddb7f91f581e8965.tar.gz
rneovim-6e44a6a289c538c9e05a5114ddb7f91f581e8965.tar.bz2
rneovim-6e44a6a289c538c9e05a5114ddb7f91f581e8965.zip
fix(treesitter): update queries
Diffstat (limited to 'runtime/queries/c')
-rw-r--r--runtime/queries/c/highlights.scm13
1 files changed, 11 insertions, 2 deletions
diff --git a/runtime/queries/c/highlights.scm b/runtime/queries/c/highlights.scm
index eba272d5c9..bd6857fd17 100644
--- a/runtime/queries/c/highlights.scm
+++ b/runtime/queries/c/highlights.scm
@@ -252,13 +252,22 @@
; Preproc def / undef
(preproc_def
- name: (_) @constant)
+ name: (_) @constant.macro)
(preproc_call
directive: (preproc_directive) @_u
- argument: (_) @constant
+ argument: (_) @constant.macro
(#eq? @_u "#undef"))
+(preproc_ifdef
+ name: (identifier) @constant.macro)
+
+(preproc_elifdef
+ name: (identifier) @constant.macro)
+
+(preproc_defined
+ (identifier) @constant.macro)
+
(call_expression
function: (identifier) @function.call)