Moosems
Moosems
This is due to it not rendering all at once because doing that every time an edit is made would be incredibly time expensive. The viewport-only tags may help alleviate...
Fixed in #20
Maybe we want to set up something to use `highlight_area()` when it detects things like this @rdbende. What do you think? This might not be worth the time but its...
My worry is if there're multiple docstrings near each other.
Could you review the plan and give your thoughts/ideas/suggestions/changes?
Check for a set of characters in the text, if any ranges are found, remove it from any relevant tags (might make a method that takes the tokens and tags...
Yes, this runs on every keypress. Maybe I should add a check at the beginning of the method to check if anything has changed and if something has, only then...
A method to scroll to where someone types that works properly is also in order.
@rdbende, this runs*before* the highlighting. The issue? The check for MLCDS tags relies on checking for `"Token.Literal.String.Doc", "Token.Comment.Multiline", "Token.Literal.String.Backtick"` Tokens. What would you recommend? My thought is lex the line...
I wonder if it's the lexing or tags that takes up the computation time. If it's just the tags then it wouldn't be that hard to simply add the tags...