Reverting back to tap holds

- per documentation I felt the gains were not worth having to press
shift to get those alt keycodes.
- on symbol layer split side, there were alot of same finger bigrams
This commit is contained in:
Victor 2024-05-07 23:51:38 -05:00
parent aace26eec5
commit aaa2269240
Failed to generate hash of commit
5 changed files with 62 additions and 63 deletions

View file

@ -92,6 +92,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
*/
//https://docs.qmk.fm/#/mod_tap?id=changing-both-tasp-and-hold
//https://getreuer.info/posts/keyboards/triggers/index.html#tap-vs.-long-press
//https://www.jonashietala.se/series/t-34/ he focuses on a keymap for programming/VIM
@ -103,7 +104,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case TR_EQL:
case TR_BSLS:
case TR_SLSH:
/* case TR_COMM:
case TR_COMM:
case TR_DOT:
case TR_PERC:
case TR_EXLM:
@ -111,7 +112,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case TR_MINS:
case TR_GRV:
case TR_SCLN:
case TR_QUOT: */
case TR_QUOT:
return process_tap_hold_key(record, keycode);
}