try get_hold_on_other_key_press instead of achordion

This commit is contained in:
Christoph Cullmann 2023-06-23 13:45:12 +02:00
parent c5a1f32c34
commit b2e5a3f645
No known key found for this signature in database
2 changed files with 14 additions and 16 deletions

View file

@ -42,9 +42,8 @@
// Enable rapid switch from tap to hold, disables double tap hold auto-repeat.
#define QUICK_TAP_TERM 0
// try to be more permissive with holds, allows to trigger modifiers faster
// achordion will avoid the worst
#define PERMISSIVE_HOLD
// we want that the thumb buttons are more reactive
#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY
// caps word is great for defines
#define BOTH_SHIFTS_TURNS_ON_CAPS_WORD

View file

@ -76,17 +76,16 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
// better handling of home row modifiers
// see https://getreuer.info/posts/keyboards/achordion/index.html
#include "achordion.h"
#include "achordion.c"
bool process_record_user(uint16_t keycode, keyrecord_t* record) {
if (!process_achordion(keycode, record)) { return false; }
return true;
}
void matrix_scan_user(void) {
achordion_task();
// Configure hold on other key press per key
bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
// thumb buttons should be reactive
case MO(_SYM):
case LT(_NUM, KC_SPC):
case LT(_NAV, KC_BSPC):
case MO(_FN):
return true;
default:
return false;
}
}