cbabc8dbe6
* Replace Tapping Force Hold feature with Quick Tap Term * Replace keyboard level TAPPING_FORCE_HOLD with QUICK_TAP_TERM 0 * Deprecate force hold in info_config.json * Before and after quick tap term unit tests * Quick tap unit tests iteration * Keymap config.h correction * Remove TAPPING_FORCE_HOLD_PER_KEY macros that were missed * Add two more test cases for quick tap * Replace TAPPING_FORCE_HOLD with QUICK_TAP_TERM in configs #2 * Replace TAPPING_FORCE_HOLD_PER_KEY with QUICK_TAP_TERM_PER_KEY in configs #2 * Add function declaration for get_quick_tap_term Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
25 lines
824 B
C
25 lines
824 B
C
// dustypomerleau, Minidox config
|
|
|
|
#pragma once
|
|
|
|
#define EE_HANDS
|
|
#define IGNORE_MOD_TAP_INTERRUPT
|
|
#define ONESHOT_TIMEOUT 1000
|
|
#define TAPPING_TERM 200
|
|
|
|
// optional configuration:
|
|
|
|
// #define CONVERT_TO_PROTON_C
|
|
// #define ONESHOT_TAP_TOGGLE 2 // not compatible with QUICK_TAP_TERM 0
|
|
// #define PERMISSIVE_HOLD
|
|
// #define QUICK_TAP_TERM 0 // allows rapid mod use after tap event, but sacrifices double-tap to repeat
|
|
|
|
// #define MOUSEKEY_DELAY 0 // delay before cursor movement (high feels sluggish, low makes fine movement difficult)
|
|
// #define MOUSEKEY_INTERVAL 20 // time between movement reports - low settings feel like high mouse speed
|
|
// #define MOUSEKEY_MAX_SPEED 10
|
|
// #define MOUSEKEY_TIME_TO_MAX 60
|
|
// #define MOUSEKEY_WHEEL_DELAY 0
|
|
// #define MOUSEKEY_WHEEL_MAX_SPEED 8
|
|
// #define MOUSEKEY_WHEEL_TIME_TO_MAX 4
|
|
|