diff options
| author | Gregory Anders <greg@gpanders.com> | 2022-03-24 08:02:13 -0600 |
|---|---|---|
| committer | Christian Clason <christian.clason@uni-due.de> | 2022-03-30 22:14:23 +0200 |
| commit | e2b2d2357b227b1d2548b6bfb3506b3a93b9e636 (patch) | |
| tree | 3f491262e3cddc1c51e1191a032ef641360797de /CONTRIBUTING.md | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.tar nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.tar.gz nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.tar.bz2 nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.tar.lz nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.tar.xz nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.tar.zst nvim-treesitter-e2b2d2357b227b1d2548b6bfb3506b3a93b9e636.zip | |
Add capture groups for remaining builtin highlight groups
Some builtin highlight groups (see `:h group-name`) do not yet have
associated capture groups, so add them.
Diffstat (limited to 'CONTRIBUTING.md')
| -rw-r--r-- | CONTRIBUTING.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 06d564917..b3c51cee5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -91,8 +91,10 @@ effect on highlighting. We will work on improving highlighting in the near futur ``` @comment +@debug @error for error `ERROR` nodes. @none to disable completely the highlight +@preproc @punctuation.delimiter for `;` `.` `,` @punctuation.bracket for `()` or `{}` @punctuation.special for symbols with special meaning like `{}` in string interpolation. @@ -109,6 +111,7 @@ effect on highlighting. We will work on improving highlighting in the near futur @string.escape @string.special @character +@character.special @number @boolean @float @@ -142,9 +145,12 @@ effect on highlighting. We will work on improving highlighting in the near futur @operator (for symbolic operators, e.g. `+`, `*`) @exception (e.g. `throw`, `catch`) @include keywords for including modules (e.g. import/from in Python) +@storageclass @type @type.builtin +@type.definition +@type.qualifier @namespace for identifiers referring to namespaces @symbol for identifiers referring to symbols @attribute for e.g. Python decorators @@ -180,6 +186,8 @@ Mainly for markup languages. @text.note @text.warning @text.danger + +@todo ``` #### Tags |
