All this stuff at once

This commit is contained in:
Robert O'Farrell 2025-02-13 21:56:52 +00:00
parent 35edec2998
commit 845289b763
14 changed files with 536 additions and 0 deletions

14
rpw.c Normal file
View file

@ -0,0 +1,14 @@
#ifdef PERMISSIVE_HOLD_PER_KEY
// true: Immediately select the hold action when another key is tapped.
// false: Do not select the hold action when another key is tapped.
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case SFT_D:
return true;
case SFT_K:
return true;
default:
return false;
}
}
#endif