add at least some kind of documentation

This commit is contained in:
xs5871
2022-02-07 18:39:31 +00:00
committed by Kyle Brown
parent 1c6b25517a
commit 481c69b212
2 changed files with 17 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ from kmk.modules.layers import Layers
keyboard.modules.append(Layers())
```
## Keycodes
## Keycodes
|Key |Description |
|-----------------|------------------------------------------------------------------------|
@@ -19,3 +19,6 @@ keyboard.modules.append(Layers())
|`KC.TO(layer)` |Activates layer and deactivates all other layers |
|`KC.TT(layer)` |Momentarily activates layer if held, toggles it if tapped repeatedly |
## Custom HoldTap Behavior
`KC.TT` and `KC.LT` use the same heuristic to determine taps and holds as
ModTap. Check out the [ModTap doc](modtap.md) to find out more.