1
0
Fork 0

Allow Combo feature to be enabled/disabled live (#6318)

* Add ability to enable/disable combos

* Update documentation for Combo feature

* Change keycodes for appeasement

* Simplify combo_toggle function

* Update names

* Update combo docs to use tables
This commit is contained in:
Drashna Jael're 2019-07-16 01:37:19 -07:00 committed by skullydazed
parent 5fa0a274ea
commit c44fc68297
4 changed files with 73 additions and 10 deletions

View file

@ -58,4 +58,9 @@ bool process_combo(uint16_t keycode, keyrecord_t *record);
void matrix_scan_combo(void);
void process_combo_event(uint8_t combo_index, bool pressed);
void combo_enable(void);
void combo_disable(void);
void combo_toggle(void);
bool is_combo_enabled(void);
#endif