ExpandingMan

Results 326 comments of ExpandingMan

I'm also struggling a bit with this, more documentation would be much appreciated. Most of the examples seem to involve returning values directly. It seems to me the main difficulty...

I dug through the examples a bit and discovered that one way of doing it is with `Box::leak`, however this usually involves copying stuff over to the heap so it...

Thanks, that was helpful. Suggest adding it to docs.

Nope, just normal exiting. In one of your examples, it's `q` to break the loop, even hitting `q` lands me in this issue.

Yup, I'm literally just running your examples. Yes, I *do* see the cursor after quitting normally with `q` and call `TUI.cleanup()`. Note that this issue does not seem to depend...

Typing `reset` and then enter in the "dead" state does not seem to do anything.

Sorry for the late response. I have essentially no ability to test on windows, I got the impression that @tpapp didn't either, so if you're a windows user and want...

Ah, nice. Thanks, please document!

Played around with this a bit today, some things that would still be nice to have - A "lower level" function for creating the REPL mode that doesn't do some...

```julia julia> using VideoIO, Images; julia> v = map(_ -> rand(RGB{N0f8}, 128, 128), 1:60); julia> VideoIO.save("testfile.mkv", v); julia> VideoIO.save("testfile.mp4", v); julia> versioninfo() Julia Version 1.6.1 Commit 6aaedecc44 (2021-04-23 05:59 UTC)...