diff options
author | Triton171 | 2022-10-30 16:45:58 +0000 |
---|---|---|
committer | GitHub | 2022-10-30 16:45:58 +0000 |
commit | 908529ccac153c12fd3b8e051a8f8ef68120d94d (patch) | |
tree | 91f842f6e4439ee7f280ff4dd1ddbfc3fea8cc51 /runtime/queries/latex/highlights.scm | |
parent | 00cf12f571b72451bcdd5c2b0079ce2331a0869f (diff) |
Update LaTex grammar (#4528)
Fix comment injection & add highlighting for math delimiters.
Diffstat (limited to 'runtime/queries/latex/highlights.scm')
-rw-r--r-- | runtime/queries/latex/highlights.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/queries/latex/highlights.scm b/runtime/queries/latex/highlights.scm index e39226a2..3174d80b 100644 --- a/runtime/queries/latex/highlights.scm +++ b/runtime/queries/latex/highlights.scm @@ -29,6 +29,12 @@ (#eq? @punctuation.delimiter "&")) ["[" "]" "{" "}"] @punctuation.bracket ; "(" ")" has no syntactical meaning in LaTeX +(math_delimiter + left_command: _ @punctuation.delimiter + left_delimiter: _ @punctuation.delimiter + right_command: _ @punctuation.delimiter + right_delimiter: _ @punctuation.delimiter +) ;; General environments (begin |