We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I replaced the quit key from Key::Char('q') to Key::Ctrl('[') in example.rs but it takes no effect when attempting to quit.
Key::Char('q')
Key::Ctrl('[')
I haven't been able to reproduce this problem with any other combination so far.
EDIT: I took a look at the source and it seems like the currently working keys are
rustbox/src/keyboard.rs
Lines 27 to 83 in 1d42771
Any reason other combinations aren't a part yet?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I replaced the quit key from
Key::Char('q')
toKey::Ctrl('[')
in example.rs but it takes no effect when attempting to quit.I haven't been able to reproduce this problem with any other combination so far.
EDIT: I took a look at the source and it seems like the currently working keys are
rustbox/src/keyboard.rs
Lines 27 to 83 in 1d42771
Any reason other combinations aren't a part yet?
The text was updated successfully, but these errors were encountered: