1
0
Fork 0

[Keymap] Simplify unicode input mode change and CTRL and GUI swapping (#14874)

This commit is contained in:
Reibl János Dániel 2021-10-23 08:30:43 +02:00 committed by GitHub
parent bfddc7dfa1
commit a167a95bd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 6 deletions

View file

@ -175,6 +175,12 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
return false;
break;
case CG_NORM:
set_unicode_input_mode(UC_MAC);
break;
case CG_SWAP:
set_unicode_input_mode(UC_LNX);
break;
}
return true;
};