Browse Source

[Docs] Use layer number as example for COMBO_ONLY_FROM_LAYER (#18072)

Co-authored-by: Ryan <fauxpark@gmail.com>
pull/18088/head
Albert Y 1 year ago
committed by GitHub
parent
commit
a1f0208797
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/feature_combo.md

+ 1
- 1
docs/feature_combo.md View File

@ -326,7 +326,7 @@ bool process_combo_key_release(uint16_t combo_index, combo_t *combo, uint8_t key
If you, for example, use multiple base layers for different key layouts, one for QWERTY, and another one for Colemak, you might want your combos to work from the same key positions on all layers. Defining the same combos again for another layout is redundant and takes more memory. The solution is to just check the keycodes from one layer.
With `#define COMBO_ONLY_FROM_LAYER _LAYER_A` the combos' keys are always checked from layer `_LAYER_A` even though the active layer would be `_LAYER_B`.
With `#define COMBO_ONLY_FROM_LAYER 0` in config.h, the combos' keys are always checked from layer `0`, even if other layers are active.
## User callbacks


Loading…
Cancel
Save