You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Awesome project! I'm wondering if we could remove some build steps, reduce deps and leverage some of the features that exist in most peoples nvim setups.
The Syntax highlighting is implemented by syntect, AFAIUI the tree-sitter is a lower-level lib compared to syntect. For generating an image, need to calculate the color byte vector of the image, would there be a significant amount of work involved in using tree-sitter than using syntect?
I am not sure if this is related but while testing the latest change for Dockerfile/Pipfile support the syntax highlight only works if you select from the top of the file not in the middle of the file on a random line
Additionally, python+rust+lua+linked libs+shell scripts might be hurt your portability/plugin adoption...
Anyways, while I'm not aware of the LOE for tearing out syntect/Rust. It might be a boon for formatting/theming work. As ts could provide the heavy lifting and, if needed, nvim's lua API could provide the tab rules and file type.
Hello!
Awesome project! I'm wondering if we could remove some build steps, reduce deps and leverage some of the features that exist in most peoples nvim setups.
For example: https://tree-sitter.github.io/tree-sitter/syntax-highlighting have you considered treesitter for handling the syntax highlighting duties?
The text was updated successfully, but these errors were encountered: