Files
2026-07-13 12:28:45 +08:00

19 lines
461 B
Plaintext

# This example demonstrates what is sometimes called a simlayer: when the layer is
# activated, if no action is taken within a specified period of time, another action
# takes place. This can be used, for example, to preserve the repeat action of the key
# that is being overloaded (backspace in this case).
[ids]
*
[main]
backspace = timeout(overload(shortcuts, backspace), 500, backspace)
[shortcuts]
1 = M-pageup
2 = M-pagedown
# Other shortcuts here.