Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The first terminal event is ignored after using stdin #1055

Closed
dalance opened this issue Mar 9, 2023 · 2 comments
Closed

The first terminal event is ignored after using stdin #1055

dalance opened this issue Mar 9, 2023 · 2 comments

Comments

@dalance
Copy link

dalance commented Mar 9, 2023

I want to use async_std::io::std and terminal event after it.
But the first event seems to be ignored.
The procedure of reproduce is below:

use crossterm::event::{read, Event};
use crossterm::terminal;
use std::time::Duration;

fn main() {
    let buf = async_std::task::block_on(async_std::io::timeout(Duration::new(1, 0), async {
        use async_std::io::ReadExt;
        let mut buf = [0; 1];
        let mut stdin = async_std::io::stdin();
        let _ = stdin.read_exact(&mut buf).await?;
        Ok(buf)
    }));
    dbg!(buf);

    terminal::enable_raw_mode().unwrap();

    println!("{:?}", read());

    terminal::disable_raw_mode().unwrap();
}
  • run the above code
  • wait until dbg! message is shown
  • press any key

The expected result is that the first key pressing is shown.
Actually the first key pressing is ignored, and the second key pressing is shown.

If let buf = ... code block is commented out, the first key pressing is shown.

@dalance
Copy link
Author

dalance commented Mar 9, 2023

This behaviour seems to be the same as tokio.

@dalance
Copy link
Author

dalance commented Mar 9, 2023

The behaviour seems to known limitation.
I'll close this.

@dalance dalance closed this as completed Mar 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant