aboutsummaryrefslogtreecommitdiffstats
path: root/queries/hack
diff options
context:
space:
mode:
authorAmaan Qureshi <amaanq12@gmail.com>2023-02-24 06:37:45 -0500
committerStephan Seitz <stephan.seitz@fau.de>2023-03-03 07:07:52 -0800
commit33ba346e60c3151fcdafc55d0e547556dc803c03 (patch)
treed1c5467293ca8fe4b0f44f05f4d4aa303877a2f8 /queries/hack
parentdocs: add `@keyword.coroutine` (diff)
downloadnvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.tar
nvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.tar.gz
nvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.tar.bz2
nvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.tar.lz
nvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.tar.xz
nvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.tar.zst
nvim-treesitter-33ba346e60c3151fcdafc55d0e547556dc803c03.zip
feat!: add `@keyword.coroutine` capture
Diffstat (limited to 'queries/hack')
-rw-r--r--queries/hack/highlights.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/queries/hack/highlights.scm b/queries/hack/highlights.scm
index e79d62c75..ffb365c87 100644
--- a/queries/hack/highlights.scm
+++ b/queries/hack/highlights.scm
@@ -17,8 +17,6 @@
"function" @keyword.function
[
- "async"
- "await"
"type"
"interface"
"implements"
@@ -32,6 +30,11 @@
] @keyword
[
+ "async"
+ "await"
+] @keyword.coroutine
+
+[
"use"
"include"
"include_once"