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

Tapping capslock quickly doesn't work on OS X #756

Open
okke-formsma opened this issue Apr 6, 2021 · 1 comment
Open

Tapping capslock quickly doesn't work on OS X #756

okke-formsma opened this issue Apr 6, 2021 · 1 comment

Comments

@okke-formsma
Copy link
Collaborator

Macs don't register capslock if capslock is pressed and released too quickly.

also see tmk/tmk_keyboard#390 / https://beta.docs.qmk.fm/developing-qmk/qmk-reference/config_options TAP_HOLD_CAPS_DELAY

As we don't want mac-specific delays in the codebase, we could fix this by adding a tap-duration-ms parameter to hold-taps so mac users can configure the key-up delay to 100ms so the capslock key is triggered properly. Also add an example in the docs with this specific example.

@caksoylar
Copy link
Contributor

One workaround that is now possible is to use a macro to trigger caps lock, where the tap duration can be customized. E.g. (not tested):

ZMK_MACRO(caps_macro,
    tap-ms = <200>;
    bindings = <&kp CAPS>;
)

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

No branches or pull requests

2 participants