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
Describe the bug CapsLock seems to have no effect
To Reproduce
use enigo::{Enigo, Key, KeyboardControllable}; use std::thread; use std::time::Duration; fn main() { thread::sleep(Duration::from_secs(2)); let mut enigo = Enigo::new(); enigo.key_click(Key::Layout('a')); enigo.key_click(Key::CapsLock); enigo.key_click(Key::Layout('a')); }
Expected behavior The letters aA should be typed.
aA
Environment (please complete the following information):
Additional context This seems to be a know issue. I only found out about it because I read: https://eastmanreference.com/complete-list-of-applescript-key-codes
The text was updated successfully, but these errors were encountered:
Instead of CapsLock, the shift can get activated. We need to store the shift state so we can toggle it
Sorry, something went wrong.
Enigo
Successfully merging a pull request may close this issue.
Describe the bug
CapsLock seems to have no effect
To Reproduce
Expected behavior
The letters
aA
should be typed.Environment (please complete the following information):
Additional context
This seems to be a know issue. I only found out about it because I read: https://eastmanreference.com/complete-list-of-applescript-key-codes
The text was updated successfully, but these errors were encountered: