Merge pull request #28185 from KLee1248/key_remapping

Re-maps KEY_BRACELEFT/RIGHT for OSX users
This commit is contained in:
Rémi Verschelde 2019-04-29 17:44:33 +02:00 committed by GitHub
commit f5cc29f9f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -965,10 +965,10 @@ static const _KeyCodeMap _keycodes[55] = {
{ 'i', KEY_I },
{ 'o', KEY_O },
{ 'p', KEY_P },
{ '[', KEY_BRACERIGHT },
{ ']', KEY_BRACELEFT },
{ '{', KEY_BRACERIGHT },
{ '}', KEY_BRACELEFT },
{ '[', KEY_BRACELEFT },
{ ']', KEY_BRACERIGHT },
{ '{', KEY_BRACELEFT },
{ '}', KEY_BRACERIGHT },
{ 'a', KEY_A },
{ 's', KEY_S },
{ 'd', KEY_D },