mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-06 15:44:17 -04:00
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:
parent
92efb790af
commit
1fa52ae34c
4 changed files with 6 additions and 66 deletions
|
@ -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) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue