Tye
Tye
I think that you have to run the CI to generate the images again for me to pull them from the CI, apologies.
This should do it!
> automatically replace the value with the last character typed / pasted. If you mean in regards to current system, to implement that I could change the `read_from_string` function to...
I've updated the `read_from_string(s: &str)` function to `read_from_strings(previous: &str, modified: &str)`. This allows the char parsing to detect which characters have been modified and behave accordingly.
Regarding the todo of `Clean up TextBuffer implementations to apply directly to String type`. I am wondering whether it will be better to switch `TextBuffer` to a newtype around `&mut...
Whilst working on "Allowing Invalid States", I came encountered the following issue and its corresponding PR: - - As suggested by [willbicks](https://github.com/willbicks) in [his response](https://github.com/emilk/egui/issues/2142#issuecomment-2667129157) to the issue, combining `lost_focus()`...
I would like feedback on whether `TextType::is_mutable` should be renamed to `TextType::is_parseable`. This would be to better represent the true purpose of the function, which is a performance optimisation of...
After looking through more of the `TextEdit` code, the `TextEditUndoer` in the `TextEditState` creates a clone of the `TextEdit` string for each change that is made. Therefore, attempting to implement...