14 lines
426 B
C
14 lines
426 B
C
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
|
|
switch (keycode) {
|
|
case LT(2,KC_SPC):
|
|
case LT(3,KC_ENT):
|
|
case RALT_T(KC_ESC):
|
|
case LT(2,KC_TAB):
|
|
// 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;
|
|
}
|
|
}
|