On tap, I'd like to have sticky shift, and on hold, I'd like to have a layer activated.
I use this paradigm currently with non-sticky keys like this < 3 SPACE .
I have a sticky key behavior like so:
skq: skq {
compatible = "zmk,behavior-sticky-key";
label = "sticky_key_quick_release";
#binding-cells = <1>;
bindings = <&kp>;
release-after-ms = <1000>;
quick-release;
ignore-modifiers;
};
where it is used like so, &skq LSHIFT.
I would like something like < 3 &skq LSHIFT
Is this possible?