-
Notifications
You must be signed in to change notification settings - Fork 173
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
Update documentation on how to enable capslock #514
base: master
Are you sure you want to change the base?
Conversation
I find that as I type, I tend to get Capslock turning on when I don't want it to. By putting a delay in, this problem is fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
FYI, this was merged (along with the changes I suggested) into https://github.com/keyd-project/keyd-fork as keyd-project/keyd-fork@319dc51
@@ -885,12 +885,13 @@ _will thus produce A-tab instead of M-\\_. | |||
## Example 6 | |||
|
|||
``` | |||
# Tapping both shift keys will activate capslock. | |||
# Holding both shift keys will activate capslock. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Holding both shift keys will activate capslock. | |
# Briefly holding down both shift keys will toggle capslock. |
# Without a delay, you may have capslock turn on as you type | ||
leftshift = timeout(leftshift, 1000, capslock) | ||
rightshift = timeout(rightshift, 1000, capslock) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Without a delay, you may have capslock turn on as you type | |
leftshift = timeout(leftshift, 1000, capslock) | |
rightshift = timeout(rightshift, 1000, capslock) | |
# Without a delay, you might accidentally toggle capslock as you type. | |
leftshift = timeout(leftshift, 1000, capslock) | |
rightshift = timeout(rightshift, 1000, capslock) |
I find that as I type, I tend to get Capslock turning on when I don't want it to.
By putting a delay in, this problem is fixed.
Fixes #513