aboutsummaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorYorick Peterse <yorick@yorickpeterse.com>2025-10-03 15:13:45 +0200
committerChristian Clason <ch.clason+github@icloud.com>2025-10-03 15:18:41 +0200
commitb684696315a11e1b08564398bda778788eac92a9 (patch)
treeaf2611cea04b66474c0cd7a77ef9eab742ff87ac /runtime
parentfeat(python): highlight special brackets in `format_expression` (diff)
downloadnvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.tar
nvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.tar.gz
nvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.tar.bz2
nvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.tar.lz
nvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.tar.xz
nvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.tar.zst
nvim-treesitter-b684696315a11e1b08564398bda778788eac92a9.zip
feat(inko): update parser and highlights
This commit includes syntax support for a few new syntax elements, and updates the highlights queries to highlight two new expression keywords.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/queries/inko/highlights.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/queries/inko/highlights.scm b/runtime/queries/inko/highlights.scm
index 3b8ede262..4bb9631f8 100644
--- a/runtime/queries/inko/highlights.scm
+++ b/runtime/queries/inko/highlights.scm
@@ -64,6 +64,11 @@
"uni"
] @keyword
+[
+ "async"
+ "await"
+] @keyword.coroutine
+
"fn" @keyword.function
"import" @keyword.import