neovim / tree-sitter-vimdoc

Tree-sitter parser for Vim help files
Apache License 2.0
103 stars 13 forks source link

fix: highlight queries conceal too much #28

Closed justinmk closed 2 years ago

justinmk commented 2 years ago

Problem: The @conceal captures eat whitespace. #23

Solution: Drop conceal for now, until we find a way to avoid concealing whitespace (either by changing the grammar or adding a "trim" feature to queries).

clason commented 2 years ago

Maybe comment them out for now? Makes it easier to re-enable them when things get fixed.

justinmk commented 2 years ago

May not need this after https://github.com/neovim/tree-sitter-vimdoc/pull/31 , where it seems the whitespace issue is fixed.