Timon

Results 215 comments of Timon

Weird, I can't directly replicate this since I do not have an SSH connection to something. The error that it returns means that the reading of the position could not...

Mmm, I am not familiar with smol. How does it compare to async-std and Tokio? I prefer to provide only examples for the biggest crates because those cover most of...

Ah nice, I am oke with it.

We already use /dev/tty, this one is not supported for windows of course. There we use winapi. Crossterm can be used through a pipe, please see [this example](https://github.com/crossterm-rs/crossterm/blob/master/examples/stderr.rs) for a...

I've tried to always use /dev/tty here: ```rust /// Creates a file descriptor pointing to the standard input or `/dev/tty`. pub fn tty_fd() -> Result { let (fd, close_on_drop) =...

In fact, this resulted in an error for ITerm terminals. #404. On Linux, it seems to behave just fine, but on macos no input can be read anymore.

Ah, no they did not, I will open a branch with those changes. If someone can validate the working on mac os we can merge it.

Can someone try this branch on mac os: https://github.com/crossterm-rs/crossterm/pull/407

You could run the interactive example in the examples folder. And in there run the input demo. It should work. Though on the PR #407 and #406 there are people...

Yea, there is someplace some argument is given, I supposed to libc, which is invalid. I haven't found that place yet. Regarding @Iotabout his comment, his ideas are implemented by...