mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-04 14:44:16 -04:00
11 lines
No EOL
202 B
C
11 lines
No EOL
202 B
C
#include "tapping.h"
|
|
|
|
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
|
|
switch (keycode) {
|
|
case NAV:
|
|
return TAPPING_TERM - 40;
|
|
|
|
default:
|
|
return TAPPING_TERM;
|
|
}
|
|
} |