diff options
author | matcool <26722564+matcool@users.noreply.github.com> | 2022-10-01 21:24:00 -0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-02 21:28:55 +0200 |
commit | eae9cb2b02ae1edd4aa79d44ae10c97ca78a7c5f (patch) | |
tree | 9666dfdf222511036d0578a8c7d0e5d53bebcf93 | |
parent | cb9b004ff8e185970b37bff4a52311dcea6ffddf (diff) | |
download | serenity-eae9cb2b02ae1edd4aa79d44ae10c97ca78a7c5f.zip |
Keymaps: Improve pt-br keymap
Adds /?° key (scancode 115).
Shift + 6 now maps to ¨ instead of space.
AltGr + (1-6) now map to ¹²³£¢¬.
AltGr + = now maps to §.
AltGr + [ now maps to ª.
AltGr + ] now maps to º.
AltGr + q now maps to /.
AltGr + w now maps to ?.
AltGr + e now maps to °.
AltGr + c now maps to ₢.
-rw-r--r-- | Base/res/keymaps/pt-br.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Base/res/keymaps/pt-br.json b/Base/res/keymaps/pt-br.json index 2d056d4d04..958acab254 100644 --- a/Base/res/keymaps/pt-br.json +++ b/Base/res/keymaps/pt-br.json @@ -1,5 +1,5 @@ { - "map": [ "", "\u001B", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "\b", "\t", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "´", "[", "\n", "", "a", "s", "d", "f", "g", "h", "j", "k", "l", "ç", "~", "'", "", "]", "z", "x", "c", "v", "b", "n", "m", ",", ".", ";", "/", "*", "", " ", "", "", "", "", "", "", "", "", "", "", "", "", "", "7", "8", "9", "-", "4", "5", "6", "+", "1", "2", "3", "0", ",", "", "", "\\", "", "", ""], - "shift_map": [ "", "\u001B", "!", "@", "#", "$", "%", " ", "&", "*", "(", ")", "_", "+", "\b", "\t", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", "`", "{", "\n", "", "A", "S", "D", "F", "G", "H", "J", "K", "L", "Ç", "^", "\"", "", "}", "Z", "X", "C", "V", "B", "N", "M", "<", ">", ":", "?", "*", "", " ", "", "", "", "", "", "", "", "", "", "", "", "", "", "7", "8", "9", "-", "4", "5", "6", "+", "1", "2", "3", "0", ",", "", "", "|", "", "", ""], - "alt_map": [ "", "\u001B", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "\b", "\t", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "'", "[", "\n", "", "a", "s", "d", "f", "g", "h", "j", "k", "l", "ç", "~", "]", "", "\\", "z", "x", "c", "v", "b", "n", "m", ",", ".", ";", "/", "*", "", " ", "", "", "", "", "", "", "", "", "", "", "", "", "", "7", "8", "9", "-", "4", "5", "6", "+", "1", "2", "3", "0", ",", "", "", "\\", "", "", ""] + "map": [ "", "\u001B", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "\b", "\t", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "´", "[", "\n", "", "a", "s", "d", "f", "g", "h", "j", "k", "l", "ç", "~", "'", "", "]", "z", "x", "c", "v", "b", "n", "m", ",", ".", ";", "/", "*", "", " ", "", "", "", "", "", "", "", "", "", "", "", "", "", "7", "8", "9", "-", "4", "5", "6", "+", "1", "2", "3", "0", ",", "", "", "\\", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "/", "", "", "", "", "", "", "", "", "", "", "", ""], + "shift_map": [ "", "\u001B", "!", "@", "#", "$", "%", "¨", "&", "*", "(", ")", "_", "+", "\b", "\t", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", "`", "{", "\n", "", "A", "S", "D", "F", "G", "H", "J", "K", "L", "Ç", "^", "\"", "", "}", "Z", "X", "C", "V", "B", "N", "M", "<", ">", ":", "?", "*", "", " ", "", "", "", "", "", "", "", "", "", "", "", "", "", "7", "8", "9", "-", "4", "5", "6", "+", "1", "2", "3", "0", ",", "", "", "|", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "?", "", "", "", "", "", "", "", "", "", "", "", ""], + "alt_map": [ "", "\u001B", "¹", "²", "³", "£", "¢", "¬", "7", "8", "9", "0", "-", "§", "\b", "\t", "/", "?", "°", "r", "t", "y", "u", "i", "o", "p", "'", "ª", "\n", "", "a", "s", "d", "f", "g", "h", "j", "k", "l", "ç", "~", "'", "", "º", "z", "x", "₢", "v", "b", "n", "m", ",", ".", ";", "°", "*", "", " ", "", "", "", "", "", "", "", "", "", "", "", "", "", "7", "8", "9", "-", "4", "5", "6", "+", "1", "2", "3", "0", ",", "", "", "\\", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "°", "", "", "", "", "", "", "", "", "", "", "", ""] } |