All this stuff at once
This commit is contained in:
parent
35edec2998
commit
845289b763
14 changed files with 536 additions and 0 deletions
14
rpw.c
Normal file
14
rpw.c
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue