19ee7849f8
* Add optional `hold-trigger-key-positions` hold-tap configuration * Leverage configuration for decision making around when to trigger hold decision in hold-taps. * Add docs for new configuration. * Tests for the new config/decision logic.
14 lines
No EOL
305 B
Text
14 lines
No EOL
305 B
Text
#include <dt-bindings/zmk/keys.h>
|
|
#include <behaviors.dtsi>
|
|
#include <dt-bindings/zmk/kscan_mock.h>
|
|
#include "../behavior_keymap.dtsi"
|
|
|
|
&kscan {
|
|
events = <
|
|
ZMK_MOCK_PRESS(0,0,200)
|
|
ZMK_MOCK_PRESS(1,0,200) // trigger key
|
|
/* timer fires */
|
|
ZMK_MOCK_RELEASE(1,0,10)
|
|
ZMK_MOCK_RELEASE(0,0,10)
|
|
>;
|
|
}; |