-
As of 09/10/2023, Termion has no support for Windows.
As this looks like a project that shouldn't be attached to just Linux, I propose the use of Crossterm(Termion alternative) for the crossplatform…
-
**Describe the bug**
Not able to read key event through pipe on Mac OS.
**To Reproduce**
Steps to reproduce the behavior:
run this code:
```rust
fn main() {
use crossterm::{event, termina…
-
@zhiburt we're running into issues with nushell. we can't upgrade to crossterm 28.1 and ratatui 28.1. I think this is because tabled has a dep on papergrid which locks the unicode-width dep at 0.1.11.…
-
crossterm support for reading events from /dev/tty only is limited on macos: https://github.com/crossterm-rs/crossterm/issues/396
-
Hi, I might these 2 errors when installing Click on my laptop, could someone help to take a look?
```
error[E0277]: the trait bound `TableColor: From` is not satisfied
--> /Users/xxx.cargo/re…
-
# Solution
rustix has released 0.38.36, which fixes this bug. Crossterm 0.28.1 is compatible with this version of rustix. Run `cargo update` to update your dependencies in your lock file.
---
…
-
I have a project called [interactive-parse](https://crates.io/crates/interactive-parse) that builds JsonSchema types interactively using inquire. It calls various inquire methods many times to eventua…
-
May be my question is not addressed correctly, just close issue.
I working on WASI based plugin system. And for terminal applications such as [helix](https://github.com/helix-editor/helix) I think th…
-
code:
`cargo add crossterm`
```rs
#[test]
fn t() {
// both of these freeze cargo next-test run
// crossterm::terminal::enable_raw_mode().unwrap();
// crossterm::cursor::position()…
-
Hey,
In the other repo, you said adding Windows support shouldn't be too bad, so I thought I'd take a look at it.
Having a quick look, I think the main roadblock will be https://github.com/php-t…