-
Notifications
You must be signed in to change notification settings - Fork 7
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
For a two-key shortcut both keys have to be pressed each time #5
Comments
Which program are you attempting to use Shift+Backspace in? I noticed in notepad it works as desired (you can hold down shift and hit backspace numerous times without letting go of shift). In TextPad it did not work (at all, ha!). |
Haha, well I guess fixing the version number in the next revision would be nice... I'll upload a new version to try out. My settings appear to be about the same. Every application I've tried seems to react differently to shift+backspace (potentially having hooks of their own to perform a different action). Very weird... |
Here's something to check: What does left shift vs. right shift do for you? In notepad left-shit + backspace acts as you described (working once) but right-shift works numerous times. |
You are right. Right shift + Backspace works in Notepad, but in VS Code it seems to be hard wired to the Cut command. So in KeyCap I mapped Ctrl + Alt + Backspace to Delete and that does not work continuously. I implemented that mapping with AHK and it works. Given that it is open source, maybe you can look in the source code to see how they handle it. |
I defined the mapping Shift+Backspace = Delete. The first time I have to press both keys and it works. If I leave Shift pressed and then press Backspace the key event sent is Backspace instead of Delete. KeyCap should check if a key is already pressed whenever a key is pressed and then both together would match the defined shortcut.
Thanks for writing this awesome program!
The text was updated successfully, but these errors were encountered: