mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-07 08:04:16 -04:00
- 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
24 lines
No EOL
796 B
C
24 lines
No EOL
796 B
C
#include "keyoverride.h"
|
|
|
|
/*
|
|
Key Override
|
|
Here we will override some shifted versions of keys
|
|
https://docs.qmk.fm/#/feature_key_overrides?id=simple-example
|
|
|
|
Intentionally did not convert all the override/autoshit tap holds to this format
|
|
- Here I could type faster and be able to hold to repeat the keycodes however
|
|
- I had tons of same finger bigrams doing trying to get ~ and :
|
|
- I didn't feel the need to be able to repeat those symbols
|
|
*/
|
|
|
|
|
|
const key_override_t delete_override = ko_make_basic(MOD_MASK_SHIFT, KC_BSPC, KC_DEL);
|
|
const key_override_t media_next_override = ko_make_basic(MOD_MASK_SHIFT, KC_MNXT, KC_MPRV);
|
|
|
|
const key_override_t **key_overrides = (const key_override_t *[]){
|
|
|
|
&delete_override,
|
|
&media_next_override,
|
|
NULL // Null terminate the array of overrides!
|
|
|
|
}; |