diff options
| author | Izzy Muerte <63051+bruxisma@users.noreply.github.com> | 2025-11-03 00:37:30 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-03 09:37:30 +0100 |
| commit | 65a266bf693d3fc856dd341c25edea1a0917a30f (patch) | |
| tree | 859a7b8ea5e94c50837ed20d7e3eee0511561217 /runtime | |
| parent | feat(parsers): update angular, desktop, earthfile, editorconfig, gdshader, ja... (diff) | |
| download | nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.tar nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.tar.gz nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.tar.bz2 nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.tar.lz nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.tar.xz nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.tar.zst nvim-treesitter-65a266bf693d3fc856dd341c25edea1a0917a30f.zip | |
fix(xml): remove `CDATA` injection
This change does not break existing injections that currently ship with nvim-treesitter, but instead allows additional injections to be defined by users, like those found in the Max/MSP Jitter XML Shader format.
Diffstat (limited to 'runtime')
| -rw-r--r-- | runtime/queries/xml/highlights.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/queries/xml/highlights.scm b/runtime/queries/xml/highlights.scm index 85e6e9bb4..5ac9dd925 100644 --- a/runtime/queries/xml/highlights.scm +++ b/runtime/queries/xml/highlights.scm @@ -189,11 +189,10 @@ ; Text (CharData) @none @spell -((CDSect +(CDSect (CDStart) @module (CData) @markup.raw "]]>" @module) - (#set! priority 105)) ; Misc (Comment) @comment @spell |
