aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorJaehwang Jung <tomtomjhj@gmail.com>2024-03-16 14:23:57 +0900
committerChristian Clason <c.clason@uni-graz.at>2024-03-16 20:51:16 +0800
commitdccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d (patch)
treeecec03d5b66667347ee183e8e480b217f1037f63 /CONTRIBUTING.md
parentfeat(highlights)!: keyword `@type.qualifier` → `@keyword.modifier` (diff)
downloadnvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.tar
nvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.tar.gz
nvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.tar.bz2
nvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.tar.lz
nvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.tar.xz
nvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.tar.zst
nvim-treesitter-dccf31f9b1fbbbd09e6720c7d8f5f1a2433fd32d.zip
feat(highlights)!: `@keyword.storage` → `@keyword.modifier`
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index a6369a5ae..1f80341e0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -169,7 +169,6 @@ As languages differ quite a lot, here is a set of captures available to you when
@keyword.function ; keywords that define a function (e.g. `func` in Go, `def` in Python)
@keyword.operator ; operators that are English words (e.g. `and` / `or`)
@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`)