Detaching the global-quick-tap functionality from the quick-tap term. This makes way for two improvements: 1. This functionality can be added to combos under a unified name 'global-quick-tap-ms'. 2. This allows users to set a lower term for the 'global-quick-tap' (typically ~100ms), and a higher term for the regular quick-tap (typically ~200ms) This deprecates the global-quick-tap option, however if it is set, the quick-tap-ms value will be copied to global-quick-tap-ms.
25 lines
659 B
Text
25 lines
659 B
Text
#include <dt-bindings/zmk/keys.h>
|
|
#include <behaviors.dtsi>
|
|
#include <dt-bindings/zmk/kscan_mock.h>
|
|
#include "../behavior_keymap.dtsi"
|
|
|
|
&kscan {
|
|
events = <
|
|
/* tap */
|
|
ZMK_MOCK_PRESS(0,0,10)
|
|
ZMK_MOCK_RELEASE(0,0,250)
|
|
/* normal quick tap */
|
|
ZMK_MOCK_PRESS(0,0,400)
|
|
ZMK_MOCK_RELEASE(0,0,400)
|
|
/* hold */
|
|
ZMK_MOCK_PRESS(0,0,400)
|
|
ZMK_MOCK_PRESS(1,0,10)
|
|
ZMK_MOCK_RELEASE(1,0,10)
|
|
ZMK_MOCK_RELEASE(0,0,400)
|
|
/* global quick tap */
|
|
ZMK_MOCK_PRESS(1,0,10)
|
|
ZMK_MOCK_PRESS(0,0,400)
|
|
ZMK_MOCK_RELEASE(1,0,10)
|
|
ZMK_MOCK_RELEASE(0,0,10)
|
|
>;
|
|
};
|