mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 07:04:17 -04:00
- 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
13 lines
No EOL
259 B
C
13 lines
No EOL
259 B
C
#include "tapping.h"
|
|
|
|
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
|
|
switch (keycode) {
|
|
|
|
case NAV_0:
|
|
return TAPPING_TERM - 60;
|
|
|
|
default:
|
|
//uprintf("tapping term: %d \n", TAPPING_TERM);
|
|
return TAPPING_TERM;
|
|
}
|
|
} |