Merge pull request #960 from ofples/feature/combos

Keyboard combination triggers
This commit is contained in:
Jack Humbert
2017-02-06 19:31:45 -05:00
committed by GitHub
5 changed files with 194 additions and 0 deletions

View File

@@ -158,6 +158,9 @@ bool process_record_quantum(keyrecord_t *record) {
#ifndef DISABLE_CHORDING
process_chording(keycode, record) &&
#endif
#ifdef COMBO_ENABLE
process_combo(keycode, record) &&
#endif
#ifdef UNICODE_ENABLE
process_unicode(keycode, record) &&
#endif
@@ -536,6 +539,11 @@ void matrix_scan_quantum() {
#ifdef TAP_DANCE_ENABLE
matrix_scan_tap_dance();
#endif
#ifdef COMBO_ENABLE
matrix_scan_combo();
#endif
matrix_scan_kb();
}