Add xbows/nature keyboard

This commit is contained in:
2025-07-13 12:23:39 +02:00
parent 9ecb54aea0
commit 76b07511ef
3 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,13 @@
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;
}
}