-
Hi, I'd like to create a combo tap dance to trigger &kp LG(A) on first combo tap, and &kp LG(C) on second. Does anyone know how to implement this behavior? Here is my attempt, but it is not working.
|
Beta Was this translation helpful? Give feedback.
Answered by
urob
Jul 21, 2024
Replies: 1 comment 2 replies
-
You don't need the ZMK_BEHAVIOR(copy_all_td, tap_dance,
tapping-term-ms = <200>;
bindings = <&kp LG(A)>, <&kp LG(C)>;
) You can then add |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
urob
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You don't need the
macro
,HRM
orcombo
for that. The following should do:You can then add
©_all_td
anywhere on your keymap or bind it to other behaviors such as combos or hold-taps.