Tyler Ruckinger

Results 18 comments of Tyler Ruckinger

`PtyProcess::new` and `session::spawn_command` are the only two public functions that take a `Command` argument. I expect the fix for anyone using these is to replace `use std::process::Command` with `use rexpect::Command`.

Thanks for that. As a status update, I'm currently waiting on a [Rust PR](https://github.com/rust-lang/rust/pull/69937) in order to finish implementing `Command` on Windows. I don't know how long that will take,...

It is a relatively simple PR, but still no telling how long it might take. Initially, yes, it would require Windows builds to use nightly. That said, we could wait...

I am still working on this, albeit it has fallen down my list of priorities (largely due to waiting for future Rust releases). If you are okay with Windows support...

Nightly would not be required for any other platform. And since this is just a library, we can just put it in documentation somewhere that Windows requires nightly and the...

I didn't have as much time as I'd hoped the last couple weeks, but I did get something very close to ready, at least ready enough for feedback and testing....

Adding to this so it is mentioned somewhere, this also causes issues with Windows ping.exe, which blinks the cursor using escape codes over the R in "Reply from \". I...

To be honest I haven't been looking closely at this part of the code, as I've been focusing mostly on the platform-specific parts and this code is mostly platform-agnostic. That...