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 would like to set a hotkey for ctrl pressed alone but it doesn't get triggered, am I missing something?
ctrl
useHotkeys('ctrl', () => console.log("ctrl where are you..."))
other combination with ctrl are working tho:
useHotkeys('ctrl+a', () => console.log("oh yeah"))
(I am testing on mac...)
Thanks
The text was updated successfully, but these errors were encountered:
Please add a reproducible
Sorry, something went wrong.
I have the same issue useHotkeys('ctrl', () => console.log("ctrl where are you...")) does not get triggered. Linux and Mac
turns out "meta" is "ctl" that maybe is listed somewhere but the examples imply you can use "ctl".
useHotkeys('meta', () => console.log("ctrl where are you...")) <- this will work
useHotkeys('meta', () => console.log("ctrl where are you..."))
No branches or pull requests
I would like to set a hotkey for
ctrl
pressed alone but it doesn't get triggered, am I missing something?other combination with ctrl are working tho:
(I am testing on mac...)
Thanks
The text was updated successfully, but these errors were encountered: