Khan Winter
Khan Winter
Sorry, meant #285
That release is live (tagged as 0.10.0), @ignaciojuarez does that fix your editing crash?
I am having a hard time replicating it, but the issue you mentioned strikes me as a problem with CodeEditTextView, not CodeEditSourceEditor. Usually when text is disappearing like that, it...
I've found a way to replicate it, it looks like the internal layout storage is getting corrupted. I'll report more as I find more.
I've now found a fix and have a reproducible test case. I'll merge it into the text view package. I'm also going to close this issue, since it's gotten a...
> @FastestMolasses hi! I forked from your branch and found a crash: StyledRangeStore+Internals.swift line 44 _guts[_guts.index(after: index)] fails with out of bounds error > > this check fixes: let nextIndex...
@FastestMolasses is this just waiting for a parameter to be able to pass in a suggestion delegate? I'd be happy to fill that out if that's all that's left.
@FastestMolasses if it's alright I'm going to push this one across the finish line. I'd like to get "Jump to Definition" going and I'll need the itembox for that too.
Ah shoot I didn't realize you had changes ready. I made a refactor making it so CESE controls displaying the autocomplete window and upgraded the code suggestion delegate to *only*...
This is what I came up with for the delegate: `CodeSuggestionDelegate` ```swift public protocol CodeSuggestionDelegate: AnyObject { func completionTriggerCharacters() -> Set func completionSuggestionsRequested( textView: TextViewController, cursorPosition: CursorPosition ) async ->...