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
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/keyd.scdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.


[shift]

leftshift = capslock
rightshift = capslock
# Without a delay, you may have capslock turn on as you type
leftshift = timeout(leftshift, 1000, capslock)
rightshift = timeout(rightshift, 1000, capslock)
Comment on lines +892 to +894
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)

```

## Example 7
Expand Down