Replies: 1 comment 2 replies
-
do exactly what you said: wait
if that does not work you can try to replace the inner
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Within the multistroke if_tap setup; I noticed if I define the first stroke/key press with a hold_keys(x) it will allow me to press and release sending (x) once, and if double pressed + held it will repeatedly send (x).
if_tap(
if_tap(
modify(Shift_L, hold_keys(Super_R, left)),
hold_keys(Alt_L, Escape) <---------WHAT TO DO HERE?! I would like a wait/delay when sending Escape each time slowly
),
modify(Shift_L, hold_keys(Super_R, down))
)
This key combination Alt + Esc cycles active windows in OS. I am hoping to maintain Multistroke functionality.
Cycling happens rapidly and its a roulette to land on the active window I want. How to slow this down?
Beta Was this translation helpful? Give feedback.
All reactions