aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorJaehwang Jung <tomtomjhj@gmail.com>2024-03-08 19:09:51 +0900
committerChristian Clason <c.clason@uni-graz.at>2024-03-16 20:51:16 +0800
commit998b230a77b544761bae8aa7518d40b91a5c9559 (patch)
tree45eb36a1cb2927598c8f1a4bf508f4291be04e49 /CONTRIBUTING.md
parentbot(readme): update (diff)
downloadnvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.tar
nvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.tar.gz
nvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.tar.bz2
nvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.tar.lz
nvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.tar.xz
nvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.tar.zst
nvim-treesitter-998b230a77b544761bae8aa7518d40b91a5c9559.zip
feat(highlights)!: keyword `@type.qualifier` → `@keyword.modifier`
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 9db53d688..a6369a5ae 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -171,6 +171,7 @@ As languages differ quite a lot, here is a set of captures available to you when
@keyword.import ; keywords for including modules (e.g. `import` / `from` in Python)
@keyword.storage ; modifiers that affect storage in memory or life-time
@keyword.type ; keywords describing composite types (e.g. `struct`, `enum`)
+@keyword.modifier ; keywords modifying other constructs (e.g. `const`, `static`, `public`)
@keyword.repeat ; keywords related to loops (e.g. `for` / `while`)
@keyword.return ; keywords like `return` and `yield`
@keyword.debug ; keywords related to debugging