fine tune a bit
This commit is contained in:
parent
b5b7228839
commit
3ddca14985
|
@ -33,7 +33,7 @@
|
|||
// details see https://precondition.github.io/home-row-mods
|
||||
|
||||
// the default of 200
|
||||
#define TAPPING_TERM 200
|
||||
#define TAPPING_TERM 175
|
||||
|
||||
// Enable rapid switch from tap to hold, disables double tap hold auto-repeat.
|
||||
#define QUICK_TAP_TERM 0
|
||||
|
|
|
@ -77,19 +77,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||
|
||||
};
|
||||
|
||||
// try to be more permissive with holds for layer switch keys
|
||||
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case LT(_NUM, KC_SPC):
|
||||
case LT(_NAV, KC_E):
|
||||
// Immediately select the hold action when another key is tapped.
|
||||
return true;
|
||||
default:
|
||||
// Do not select the hold action when another key is tapped.
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// improve home row modifiers via achordion
|
||||
//
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
// details see https://precondition.github.io/home-row-mods
|
||||
|
||||
// the default of 200
|
||||
#define TAPPING_TERM 200
|
||||
#define TAPPING_TERM 175
|
||||
|
||||
// Enable rapid switch from tap to hold, disables double tap hold auto-repeat.
|
||||
#define QUICK_TAP_TERM 0
|
||||
|
|
|
@ -92,19 +92,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||
|
||||
};
|
||||
|
||||
// try to be more permissive with holds for layer switch keys
|
||||
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case LT(_NUM, KC_SPC):
|
||||
case LT(_NAV, KC_E):
|
||||
// Immediately select the hold action when another key is tapped.
|
||||
return true;
|
||||
default:
|
||||
// Do not select the hold action when another key is tapped.
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/* plwnck rev6 RGB layout:
|
||||
* ----------------------------------
|
||||
* | 6 5 4 3 |
|
||||
|
|
Loading…
Reference in a new issue