Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

rickprice
Copy link

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

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.
rhansen added a commit to keyd-project/keyd-fork that referenced this pull request Dec 12, 2024
Copy link
Contributor

@rhansen rhansen left a 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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Holding both shift keys will activate capslock.
# Briefly holding down both shift keys will toggle capslock.

Comment on lines +892 to +894
# Without a delay, you may have capslock turn on as you type
leftshift = timeout(leftshift, 1000, capslock)
rightshift = timeout(rightshift, 1000, capslock)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# 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)

rhansen added a commit to keyd-project/keyd-fork that referenced this pull request Dec 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Problem with spurious capslock when using documented method
2 participants