zmk
zmk copied to clipboard
feat(behaviors): Add option for tapdance to output on each key press
Adds the option for a tap-dance to output each bind on key press similar.
Thought I'd weigh in here. The each
keyword sounds the most correct for this application since the word,every
, could be interpreted that it invokes all keybinds at once, or at least that's my personal reaction.
Some other suggestions:
-
activate-each-binding
-
invoke-each-binding
-
timerless
/disable-tapping-term
- From what I understand, this boolean value makes tap-dances activate their bindings independent from their
tapping-term-ms
. We could even just make it so iftapping-term-ms == -1
, then this feature is enabled.
- From what I understand, this boolean value makes tap-dances activate their bindings independent from their
Thought I'd weigh in here. The
each
keyword sounds the most correct for this application since the word,every
, could be interpreted that it invokes all keybinds at once, or at least that's my personal reaction.Some other suggestions:
activate-each-binding
invoke-each-binding
timerless
/disable-tapping-term
- From what I understand, this boolean value makes tap-dances activate their bindings independent from their
tapping-term-ms
. We could even just make it so iftapping-term-ms == -1
, then this feature is enabled.
I think I like 'activate-each-binding' the best. This still uses the tapping term for resetting the tapdance though, so we couldn't do the negative tapping term.
Good call. Thanks for the clarification 👍