-
Notifications
You must be signed in to change notification settings - Fork 285
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
Shift
/Ctrl
+ Enter
returns modifiers::NONE
#669
Comments
Can reproduce on macOS using a few different terminals Code I used: use crossterm::{event::read, terminal};
fn main() -> std::io::Result<()> {
terminal::enable_raw_mode()?;
let res = read()?;
terminal::disable_raw_mode()?;
println!("{:#?}", res);
Ok(())
}
|
Thanks for reporting the missing keys, those key combinations are likely not implemented yet. I'll leave this issue open such that people can add support for the keys. |
Closing in favor of #685. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Ctrl + Enter =
modifiers::NONE
Shift + Enter =
modifiers::NONE
Alt + Enter =
modifiers::ALT
To Reproduce
OS
Terminal/Console
I couldn't test on Mac, but on Windows - all modifiers are returned just fine
The text was updated successfully, but these errors were encountered: