diff options
| author | Jannik Buhr <17450586+jmbuhr@users.noreply.github.com> | 2024-06-17 11:04:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-17 11:04:00 +0200 |
| commit | f7edd3f5f636dceebc874a59bdcf9de6a41dbc68 (patch) | |
| tree | 6ae0cbdb87c0d195a996b5ddd301a65865cb4114 /queries | |
| parent | bot(lockfile): update corn, earthfile, hcl, janet_simple, rbs (diff) | |
| download | nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.tar nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.tar.gz nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.tar.bz2 nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.tar.lz nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.tar.xz nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.tar.zst nvim-treesitter-f7edd3f5f636dceebc874a59bdcf9de6a41dbc68.zip | |
fix(markdown): conceal nbsp entity as space (#6778)
Diffstat (limited to 'queries')
| -rw-r--r-- | queries/markdown_inline/highlights.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queries/markdown_inline/highlights.scm b/queries/markdown_inline/highlights.scm index 0afb0d983..10bb5b060 100644 --- a/queries/markdown_inline/highlights.scm +++ b/queries/markdown_inline/highlights.scm @@ -93,7 +93,7 @@ ; Replace common HTML entities. ((entity_reference) @character.special (#eq? @character.special " ") - (#set! conceal "")) + (#set! conceal " ")) ((entity_reference) @character.special (#eq? @character.special "<") |
