Add some clarity about enabling quick tap
This commit is contained in:
parent
57661362ea
commit
f517261e85
1 changed files with 21 additions and 0 deletions
|
@ -45,6 +45,27 @@ Defines how long a key must be pressed to trigger Hold behavior.
|
||||||
|
|
||||||
If you press a tapped hold-tap again within `quick_tap_ms` milliseconds, it will always trigger the tap behavior. This is useful for things like a backspace, where a quick tap+hold holds backspace pressed. Set this to a negative value to disable. The default is -1 (disabled).
|
If you press a tapped hold-tap again within `quick_tap_ms` milliseconds, it will always trigger the tap behavior. This is useful for things like a backspace, where a quick tap+hold holds backspace pressed. Set this to a negative value to disable. The default is -1 (disabled).
|
||||||
|
|
||||||
|
The simplest way to enable this functionality would be to set the value to a positive integer at the root of your personal keymap definition (not nested under any `/` node).
|
||||||
|
|
||||||
|
```
|
||||||
|
#include <behaviors.dtsi>
|
||||||
|
#include <dt-bindings/zmk/keys.h>
|
||||||
|
|
||||||
|
< { quick_tap_ms = <200>; };
|
||||||
|
|
||||||
|
/ {
|
||||||
|
keymap {
|
||||||
|
compatible = "zmk,keymap";
|
||||||
|
|
||||||
|
default_layer {
|
||||||
|
bindings = <
|
||||||
|
< 1 BKSP < 1 SPC
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
In QMK, unlike ZMK, this functionality is enabled by default, and you turn it off using `TAPPING_FORCE_HOLD`.
|
In QMK, unlike ZMK, this functionality is enabled by default, and you turn it off using `TAPPING_FORCE_HOLD`.
|
||||||
|
|
||||||
#### Home row mods
|
#### Home row mods
|
||||||
|
|
Loading…
Add table
Reference in a new issue