Ian Hobson
Ian Hobson
Apologies for the force push, I rebased but then went back. Other than the new `"Draw each message line separately" commit the history hasn't been changed.
I rebased the PR on to the latest master to keep it fresh, and squashed the solution-finding commits to make the intention of the branch clearer.
@lucasmerlin I've gone ahead and tried to address the open points of feedback on a branch here: https://github.com/irh/egui/tree/ios-safe-area. It would be great if we could get this landed, should I...
> @irh Nice! You should create a new one, I don't think you can update this one @lucasmerlin Ok great, new PR here: #7578.
Some groundwork for this was implemented in #291 - the VM now has an `execution_state` field which has a `Suspended` variant, used when a generator has just yielded a value....
I'm not sure if this will work for your exact situation, but I've been implementing a builder-like pattern with `MethodContext::instance_result`. See [this Koto code in bevy_koto](https://github.com/koto-lang/bevy_koto/blob/main/assets/scrolling_squares.koto#L51), which is implemented on...
I'm not sure I've got the full picture here, but maybe having your `text` field be an `Option` rather than a RefCell might be a better fit? You could use...
That's interesting, `self` or `mut self` would imply that you're dealing with the only instance of the data, which can't happen without something like a hidden call to `unwrap_or_clone`, and...
I just tried this out and it's great, nice work! ๐ @drybalka To offer my 2ยข on the working vs. buffer directory topic, we already have `file_picker`/`file_picker_in_current_buffer_directory`, so personally I...
@drybalka That's awesome, thanks ๐ I'm using it like this: ```toml [keys.normal.space] "e" = "file_browser" "E" = "file_browser_in_current_buffer_directory" ``` (`b` is used for the buffer picker, so I've gone with...