mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 15:14:17 -04:00
- Fixed bug that releasing double tap and bracket holds put another set of brackets or double taps - Added delay for NUM_0 Layer Tap
16 lines
No EOL
262 B
C
16 lines
No EOL
262 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;
|
|
|
|
}
|
|
|
|
} |