Big cleanup and tune

- increased combo timer to 35
- I removed all the unnecessary defines and associated methods for
per keycode customizations like quick tap term, combo press in order, etc
This commit is contained in:
Victor 2024-05-01 23:52:19 -05:00
parent 92efb790af
commit 1fa52ae34c
Failed to generate hash of commit
4 changed files with 6 additions and 66 deletions

View file

@ -1,22 +1,5 @@
#include "tapping.h"
bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
//This is effective for all dual role keys (e.g. Mod-Taps, Layer-Taps, etc)
switch(keycode) {
default:
//Disable HOLD_ON_OTHER_KEY_PRESS aka enable IGNORE_MOD_TAP_INTERRUPT
return false;
}
}
uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
default:
return QUICK_TAP_TERM;
}
}
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {