aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAmaan Qureshi <amaanq12@gmail.com>2023-03-01 12:25:39 -0500
committerAmaan Qureshi <amaanq12@gmail.com>2023-03-05 17:15:32 -0500
commit51030378eb12160cbf802b68aaf56b3116aa22de (patch)
tree720c5883c2170421ac4fc571ddc1197bdab8684e /CONTRIBUTING.md
parentinjections(html): fix faulty css/js injections (diff)
downloadnvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.tar
nvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.tar.gz
nvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.tar.bz2
nvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.tar.lz
nvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.tar.xz
nvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.tar.zst
nvim-treesitter-51030378eb12160cbf802b68aaf56b3116aa22de.zip
docs: add `@string.documentation`
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md19
1 files changed, 10 insertions, 9 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f954bff1d..c972da7e0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -108,17 +108,18 @@ effect on highlighting. We will work on improving highlighting in the near futur
#### Literals
```scheme
-@string ; string literals
-@string.regex ; regular expressions
-@string.escape ; escape sequences
-@string.special ; other special strings (e.g. dates)
+@string ; string literals
+@string.documentation ; string documenting code (e.g. Python docstrings)
+@string.regex ; regular expressions
+@string.escape ; escape sequences
+@string.special ; other special strings (e.g. dates)
-@character ; character literals
-@character.special ; special characters (e.g. wildcards)
+@character ; character literals
+@character.special ; special characters (e.g. wildcards)
-@boolean ; boolean literals
-@number ; numeric literals
-@float ; floating-point number literals
+@boolean ; boolean literals
+@number ; numeric literals
+@float ; floating-point number literals
```
#### Functions