keyd
keyd copied to clipboard
[Question] I have a problem understanding the [global] and how it works I found an exception to the global rule.
I have the following
[global]
overload_tap_timeout = 168
[main]
leftshift = oneshot(shift)
rightshift = oneshot(shift)
space = overload(shift, space)
[shift]
g = t
k = t
the global works for leftshfit and right shift but it doens't work for space. and other typing keys why is that ? I haven't tried other modifiers.
for typing keys I need to use overloadt in this case I need to use space = overloadt(shift, space, 168)
why is htat ?