Description
Summary
Certain markdown files are very slow to edit. In particular when they have a lot of lists.
For example a CHANGELOG.md
file from the helix repo is a enough to trigger it.
The problem is likely in grammar here, since neovim with tree-sitter works fine on it.
While this particular problem could be solved with slightly optimized, but less accurate grammar. However the issue manifests itself on any large file of any other type, just requires much larger file than ~600LoC(I've used 50K LoC C++ that I have around).
To avoid delay and input lag in those particular scenarios it would make sense to either run tree-sitter only on a part of the buffer (I'm not familiar how it works) or update it after the typing ended. Since right now you have a latency of like 2 seconds on 50K lines file of C++, which is impossible to work with.
Reproduction Steps
Try to edit CHANGELOG.md from the helix repo or any large file.
Helix log
No response
Platform
Linux
Terminal Emulator
alacritty
Helix Version
helix 22.05 (3cced1e)
Activity