add combos from programming raccoon that avoid and work around a kmk bug in the combo handling engine that can caus the board to get stuck in states that are non-usable

This commit is contained in:
KemoNine 2023-07-30 11:14:48 -04:00
parent c998eeda61
commit 80b92da798
1 changed files with 3 additions and 0 deletions

View File

@ -193,4 +193,7 @@ class _ArduxKeyboard(KMKKeyboard):
self.combo_module.combos.append(Chord((self.base_o_custom, KC.Y, self.base_e_symbols), KC.NO))
self.combo_module.combos.append(Chord((self.base_a_parens, KC.R, self.base_s_numbers), KC.NO))
self.combo_module.combos.append(Chord((self.base_a_parens, KC.T), KC.NO))
self.combo_module.combos.append(Chord((self.base_o_custom, KC.T), KC.NO))
self.combo_module.combos.append(Chord((self.base_o_custom, self.base_s_numbers), KC.NO))
self.combo_module.combos.append(Chord((self.base_s_numbers, KC.Y), KC.NO))