slower for slow fingers

This commit is contained in:
Christoph Cullmann 2024-11-04 10:52:37 +01:00
parent 6c6ceda471
commit 8c146c31a6
No known key found for this signature in database

View file

@ -91,6 +91,19 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// many settings taken from https://github.com/getreuer/qmk-keymap
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t* record) {
switch (keycode) {
// slower for slow fingers
case CC_N:
case CC_S:
case CC_E:
case CC_I:
return TAPPING_TERM + 15;
default:
return TAPPING_TERM;
}
}
#include "features/achordion.h"
bool process_record_user(uint16_t keycode, keyrecord_t* record) {