chore(atreus): cleanup the toolchain

This commit is contained in:
2025-07-13 12:26:19 +02:00
parent 76b07511ef
commit 77bcfc9773
2 changed files with 0 additions and 1 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;
}
}