From 5e1ae5bed8e2db263506e62a62e0763c9a352bfd Mon Sep 17 00:00:00 2001 From: Frederick Price Date: Thu, 8 Jun 2023 15:02:42 -0400 Subject: [PATCH] Update documentation on how to enable 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. --- docs/keyd.scdoc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/keyd.scdoc b/docs/keyd.scdoc index 3eac039..dac222f 100644 --- a/docs/keyd.scdoc +++ b/docs/keyd.scdoc @@ -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. [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) ``` ## Example 7