Add ferris keyboard

This commit is contained in:
2025-07-13 13:17:31 +02:00
parent 77bcfc9773
commit 73cecb9fec
3 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,13 @@
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case LT(1,KC_SPC):
case LT(2,KC_ENT):
case RALT_T(KC_ESC):
case LT(1,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;
}
}