Kyle Nazario
Kyle Nazario
Is there any ETA for merging this PR? I am running into this problem in February 2020 and it is still not fixed.
Please see #46, I am interested in using your PRs, but we need to verify the code.
Please see #46, I am interested in using your PRs, but we need to verify the code.
After investigation, I have narrowed down the slowness to one line of code in both editors. ```swift public func textViewDidChange(_ textView: UITextView) { // For Multistage Text Input guard textView.markedTextRange...
@Parth Thank you for the kind words! Let me know when HLTE ships in your app, we'll [add Lockbook as a featured app](https://github.com/kyle-n/HighlightedTextEditor#featured-apps). --- Re: performance, yeah, there are many...
@ceojosef This is the frustrating thing - I've tried builds with all highlighting turned off, and it still slows down with long blocks of text. If highlighting zero characters does...
I retested this bug with the [reproduction project](https://gist.github.com/kyle-n/24ab7f87520013c6d4997220d7171714) and found a new piece of evidence: The lag does not happen if the user is typing at the of the text,...
@dbarsamian Hmmmm. The bug is very clear in your video but I'm still figuring out how to reproduce it on my end. I followed the steps and did not see...
I've been looking into this problem and am still working on reproducing this issue. Here's the sample code I've tried: ```swift struct ContentView: View { @State private var text: String...
Confirmed the bug is happening on macOS 14.2.1. Code to reproduce: ```swift struct MarkdownEditorA: View { @State var text: String = "" var body: some View { HighlightedTextEditor(text: $text, highlightRules:...