RShift + LShift = Capslock
This commit is contained in:
parent
bf31f516e3
commit
fdd06d3fca
1 changed files with 8 additions and 0 deletions
|
@ -744,6 +744,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
|
||||
switch (keycode) {
|
||||
// handle greek layer shift
|
||||
// handle both shift = capslock
|
||||
case KC_LSFT:
|
||||
case KC_RSFT:
|
||||
;
|
||||
|
@ -758,6 +759,13 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
layer_off(_GREEKU);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (record->event.pressed) {
|
||||
if (lshift ^ rshift) { // if only one shift was pressed
|
||||
register_code(KC_CAPS);
|
||||
unregister_code(KC_CAPS);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue