mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-04 14:44:16 -04:00
- Updated documentation and standardize identation formatting - Added numpad key overrides to get function keys - got rid of function layer
15 lines
No EOL
208 B
C
15 lines
No EOL
208 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:
|
|
return TAPPING_TERM;
|
|
|
|
}
|
|
|
|
} |