Eliza Weisman
Eliza Weisman
not _directly_ related, but we probably also want to format durations over one or two minutes as minutes + seconds, rather than as a large number of seconds, which it...
Hmm, well, this is certainly weird! Thanks for the report. One thing that might be worth trying is running `tui`'s [example programs](https://github.com/fdehau/tui-rs/tree/master/examples) in a ssh session and seeing if you...
It could also be useful to know details about the version of `ssh` you're running (on the client and on the host). You can get the ssh client version with...
Testing this out on two of my machines, I can't seem to reproduce this; if I connect over ssh and run the console, everything works normally, and keyboard input doesn't...
Okay, thanks for the info! Another thing that might be worth trying is switching to a different terminal on the client. Since you're presumably on a Mac (because you're using...
Interesting, thanks for the update. I can't immediately think of anything that would be different between the console and `tui`'s example programs, that's very strange.
Can I get you to try out PR #222 and see if you still have this issue? Thanks!
This should be pretty easy. I think the only difficult part is that we'll have to determine how long a task should have run before yielding before adding a warning.
@tobz if you're interested in working on this, the way we'd do it is adding a new type implementing the `Warn` trait: https://github.com/tokio-rs/console/blob/7d16eadc5c254f21b0f4fba31f2fdf758808a8f4/console/src/warnings.rs#L4-L47 This would be pretty similar to existing...
we probably want to be _fairly_ generous with the threshold, to avoid false positives...it could be something like 5-10 ms? I don't think we want the lint to fire on...