OS_LCTL_LSFT should be set in example code

The Chord example references OS_LCTL_LSFT which is not set in the code above it.
This commit is contained in:
James Perry 2023-01-08 07:56:46 +13:00 committed by xs5871
parent dd61c3705b
commit 945072bf6c

View File

@ -48,6 +48,7 @@ keyboard.modules.append(oneshot)
OS_LCTL = KC.OS(KC.LCTL, tap_time=None)
OS_LSFT = KC.OS(KC.LSFT, tap_time=None)
OS_LCTL_LSFT = KC.OS(KC.LCTL(OS_LSFT), tap_time=None)
combos = Combos()
keyboard.modules.append(combos)