Alexandre Bury

Results 285 comments of Alexandre Bury

Ah indeed, I didn't know about `newterm`. Latest master should now use this instead of `initscr`; if this works for you, I'll use the same for pancurses. We'll see then...

We still print a few things to stdout, I still need to replace these with writing to the tty.

2729e77838b2312054251d95fe162e1ee7d092d1 should remove the last bits we were writing to `stdout`. For instance, `cargo run --example colors | hexdump` should show no output. In addition, `stdin` is also untouched, making...

Just added the `vpv` example - a visual pipe viewer - to showcase stdin/stdout usage. It uses moves data from `stdin` (or directly a file) to `stdout` and shows the...

Ah, sorry, the example only shows how stdin/stdout are now free for other usages, like piping data. This "feature" is more abstract and really simple, so I hope it won't...

So there's a bunch of different needs here: * A simple pause-cursive, the entire screen goes back to normal and it can be used for another app, then bring back...

The latest commit starts experimenting with the idea of pausable/resumable backends. More specifically: * The backend is now given (and initialized) when running the event loop, not when creating cursive....

Added the [`pause` example](https://github.com/gyscos/cursive/blob/main/examples/src/bin/pause.rs) to show how to run multiple event loops, potentially running other commands in between.

Hi, and thanks for the report! These are very good points, we should make them more consistent.

Hi, and thanks for the report! Whoops, looks indeed like something we should test for!