You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
461 B
18 lines
461 B
# 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.
|
|
|