Fixing space backspace

- mods were getting stuck when i was pressing the shift backspace
- changed number layer so numbers and dates are easier to type
This commit is contained in:
Victor 2024-05-06 19:05:01 -05:00
parent 507e60877e
commit 9ccc311d2a
Failed to generate hash of commit
3 changed files with 8 additions and 10 deletions

View file

@ -53,7 +53,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
del_mods(MOD_MASK_SHIFT);
register_code(KC_DEL);
delkey_registered = true;
set_mods((current_mod | current_osm));
set_mods(current_mod);
set_oneshot_mods(current_osm);
return false;
}