Update docs for leader mode

This commit is contained in:
Josh Klar 2018-10-19 02:03:59 -07:00
parent 3cb9b762e9
commit 26c40b977f
No known key found for this signature in database
GPG Key ID: 220F99BD7DB7A99E

View File

@ -15,32 +15,57 @@ cancel the sequence.
```python ```python
from kmk.macros.simple import simple_key_sequence from kmk.macros.simple import simple_key_sequence
LEADER_DICTIONARY = { # ...
(KC.T, KC.A, KC.S, KC.K): simple_key_sequence(Modifiers.KC_LCTRL(Modifiers.KC_LSHIFT(Common.KC_ESC)))
keyboard.leader_dictionary = {
(KC.T, KC.A, KC.S, KC.K): simple_key_sequence([Modifiers.KC_LCTRL(Modifiers.KC_LSHIFT(Common.KC_ESC))])
} }
keymap = [...KC.LEAD,...] keymap = [...KC.LEAD,...]
# ...
``` ```
If defining tuples of keycodes is too obtuse for you, we have a convenience
function available for that, too!
```python
from kmk.keycodes import generate_leader_dictionary_seq as glds
# ...
keyboard.leader_dictionary = {
glds('task'): simple_key_sequence([Modifiers.KC_LCTRL(Modifiers.KC_LSHIFT(Common.KC_ESC))])
}
# ...
```
# Modes # Modes
Modes avaliable (WARNING: LeaderMode.ENTER is currently the only one avaliable.) 1. LeaderMode.TIMEOUT
1. LeaderMode.DEFAULT
2. LeaderMode.ENTER 2. LeaderMode.ENTER
### DEFAULT #WARNING# NOT AVALIBLE YET ### Timeout Mode
Will expire after a timer and trigger the sequence that matches if any. Will expire after a timer and trigger the sequence that matches if any.
This can be enabled with This can be enabled with
```python ```python
from kmk.consts.LederMode from kmk.consts.LeaderMode
leader_mode = LeaderMode.DEFAULT keyboard.leader_mode = LeaderMode.TIMEOUT
``` ```
The timeout can be set like this The timeout can be set like this
```python ```python
leader_timeout = 2000 keyboard.leader_timeout = 2000 # in milliseconds-ish
``` ```
### ENTER
The timeout defaults to `1000`, which is roughly a second.
### Enter Mode
Has no timeout. To end sequence press the enter key, or cancel and do nothing, press escape. Has no timeout. To end sequence press the enter key, or cancel and do nothing, press escape.
This can be enabled with This can be enabled with
from kmk.consts.LederMode ```python
leader_mode = LeaderMode.ENTER from kmk.consts.LederMode
keyboard.leader_mode = LeaderMode.ENTER
```