@codingame/monaco-vscode-keybindings-service-override 4.1.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/keybindings.js +6 -6
  2. package/package.json +9 -9
  3. package/vscode/src/vs/platform/keyboardLayout/common/keyboardConfig.js +50 -0
  4. package/vscode/src/vs/platform/keyboardLayout/common/keyboardMapper.js +24 -0
  5. package/vscode/src/vs/workbench/contrib/commands/common/commands.contribution.js +146 -0
  6. package/vscode/src/vs/workbench/contrib/keybindings/browser/keybindings.contribution.js +29 -0
  7. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingsEditorContribution.js +250 -0
  8. package/vscode/src/vs/workbench/contrib/preferences/common/smartSnippetInserter.js +126 -0
  9. package/vscode/src/vs/workbench/services/actions/common/menusExtensionPoint.js +1597 -0
  10. package/vscode/src/vs/workbench/services/commands/common/commandService.js +79 -0
  11. package/vscode/src/vs/workbench/services/keybinding/browser/keybindingService.js +947 -0
  12. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayoutService.js +502 -0
  13. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/_.contribution.js +14 -0
  14. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/cz.win.js +163 -0
  15. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/de-swiss.win.js +163 -0
  16. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/de.darwin.js +126 -0
  17. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/de.linux.js +181 -0
  18. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/de.win.js +163 -0
  19. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/dk.win.js +163 -0
  20. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/dvorak.darwin.js +126 -0
  21. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-belgian.win.js +163 -0
  22. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-ext.darwin.js +126 -0
  23. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-in.win.js +163 -0
  24. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-intl.darwin.js +126 -0
  25. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-intl.win.js +163 -0
  26. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-uk.darwin.js +126 -0
  27. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en-uk.win.js +163 -0
  28. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en.darwin.js +134 -0
  29. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en.linux.js +183 -0
  30. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/en.win.js +168 -0
  31. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/es-latin.win.js +163 -0
  32. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/es.darwin.js +126 -0
  33. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/es.linux.js +181 -0
  34. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/es.win.js +163 -0
  35. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/fr.darwin.js +126 -0
  36. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/fr.linux.js +181 -0
  37. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/fr.win.js +163 -0
  38. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/hu.win.js +163 -0
  39. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/it.darwin.js +126 -0
  40. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/it.win.js +163 -0
  41. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/jp-roman.darwin.js +126 -0
  42. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/jp.darwin.js +126 -0
  43. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/ko.darwin.js +126 -0
  44. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/layout.contribution.darwin.js +17 -0
  45. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/layout.contribution.linux.js +6 -0
  46. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/layout.contribution.win.js +23 -0
  47. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/no.win.js +163 -0
  48. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/pl.darwin.js +126 -0
  49. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/pl.win.js +163 -0
  50. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/pt-br.win.js +163 -0
  51. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/pt.darwin.js +126 -0
  52. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/pt.win.js +163 -0
  53. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/ru.darwin.js +126 -0
  54. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/ru.linux.js +181 -0
  55. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/ru.win.js +163 -0
  56. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/sv.win.js +165 -0
  57. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/thai.win.js +163 -0
  58. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/tr.win.js +163 -0
  59. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayouts/zh-hans.darwin.js +126 -0
  60. package/vscode/src/vs/workbench/services/keybinding/common/keybindingIO.js +74 -0
  61. package/vscode/src/vs/workbench/services/keybinding/common/keymapInfo.js +110 -0
  62. package/vscode/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.js +888 -0
  63. package/vscode/src/vs/workbench/services/keybinding/common/windowsKeyboardMapper.js +352 -0
@@ -0,0 +1,17 @@
1
+ import './en.darwin.js';
2
+ import './zh-hans.darwin.js';
3
+ import './en-uk.darwin.js';
4
+ import './es.darwin.js';
5
+ import './jp-roman.darwin.js';
6
+ import './de.darwin.js';
7
+ import './en-intl.darwin.js';
8
+ import './en-ext.darwin.js';
9
+ import './fr.darwin.js';
10
+ import './jp.darwin.js';
11
+ import './pl.darwin.js';
12
+ import './it.darwin.js';
13
+ import './ru.darwin.js';
14
+ import './pt.darwin.js';
15
+ import './ko.darwin.js';
16
+ import './dvorak.darwin.js';
17
+ export { KeyboardLayoutContribution } from './_.contribution.js';
@@ -0,0 +1,6 @@
1
+ import './en.linux.js';
2
+ import './es.linux.js';
3
+ import './de.linux.js';
4
+ import './fr.linux.js';
5
+ import './ru.linux.js';
6
+ export { KeyboardLayoutContribution } from './_.contribution.js';
@@ -0,0 +1,23 @@
1
+ import './en.win.js';
2
+ import './es-latin.win.js';
3
+ import './en-in.win.js';
4
+ import './de.win.js';
5
+ import './en-uk.win.js';
6
+ import './fr.win.js';
7
+ import './pt-br.win.js';
8
+ import './es.win.js';
9
+ import './en-intl.win.js';
10
+ import './ru.win.js';
11
+ import './pl.win.js';
12
+ import './it.win.js';
13
+ import './sv.win.js';
14
+ import './tr.win.js';
15
+ import './pt.win.js';
16
+ import './dk.win.js';
17
+ import './no.win.js';
18
+ import './thai.win.js';
19
+ import './hu.win.js';
20
+ import './de-swiss.win.js';
21
+ import './en-belgian.win.js';
22
+ import './cz.win.js';
23
+ export { KeyboardLayoutContribution } from './_.contribution.js';
@@ -0,0 +1,163 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { name: '00000414', id: '', text: 'Norwegian' },
5
+ secondaryLayouts: [],
6
+ mapping: {
7
+ Sleep: [],
8
+ WakeUp: [],
9
+ KeyA: ['a', 'A', '', '', 0, 'VK_A'],
10
+ KeyB: ['b', 'B', '', '', 0, 'VK_B'],
11
+ KeyC: ['c', 'C', '', '', 0, 'VK_C'],
12
+ KeyD: ['d', 'D', '', '', 0, 'VK_D'],
13
+ KeyE: ['e', 'E', '€', '', 0, 'VK_E'],
14
+ KeyF: ['f', 'F', '', '', 0, 'VK_F'],
15
+ KeyG: ['g', 'G', '', '', 0, 'VK_G'],
16
+ KeyH: ['h', 'H', '', '', 0, 'VK_H'],
17
+ KeyI: ['i', 'I', '', '', 0, 'VK_I'],
18
+ KeyJ: ['j', 'J', '', '', 0, 'VK_J'],
19
+ KeyK: ['k', 'K', '', '', 0, 'VK_K'],
20
+ KeyL: ['l', 'L', '', '', 0, 'VK_L'],
21
+ KeyM: ['m', 'M', 'µ', '', 0, 'VK_M'],
22
+ KeyN: ['n', 'N', '', '', 0, 'VK_N'],
23
+ KeyO: ['o', 'O', '', '', 0, 'VK_O'],
24
+ KeyP: ['p', 'P', '', '', 0, 'VK_P'],
25
+ KeyQ: ['q', 'Q', '', '', 0, 'VK_Q'],
26
+ KeyR: ['r', 'R', '', '', 0, 'VK_R'],
27
+ KeyS: ['s', 'S', '', '', 0, 'VK_S'],
28
+ KeyT: ['t', 'T', '', '', 0, 'VK_T'],
29
+ KeyU: ['u', 'U', '', '', 0, 'VK_U'],
30
+ KeyV: ['v', 'V', '', '', 0, 'VK_V'],
31
+ KeyW: ['w', 'W', '', '', 0, 'VK_W'],
32
+ KeyX: ['x', 'X', '', '', 0, 'VK_X'],
33
+ KeyY: ['y', 'Y', '', '', 0, 'VK_Y'],
34
+ KeyZ: ['z', 'Z', '', '', 0, 'VK_Z'],
35
+ Digit1: ['1', '!', '', '', 0, 'VK_1'],
36
+ Digit2: ['2', '"', '@', '', 0, 'VK_2'],
37
+ Digit3: ['3', '#', '£', '', 0, 'VK_3'],
38
+ Digit4: ['4', '¤', '$', '', 0, 'VK_4'],
39
+ Digit5: ['5', '%', '€', '', 0, 'VK_5'],
40
+ Digit6: ['6', '&', '', '', 0, 'VK_6'],
41
+ Digit7: ['7', '/', '{', '', 0, 'VK_7'],
42
+ Digit8: ['8', '(', '[', '', 0, 'VK_8'],
43
+ Digit9: ['9', ')', ']', '', 0, 'VK_9'],
44
+ Digit0: ['0', '=', '}', '', 0, 'VK_0'],
45
+ Enter: [],
46
+ Escape: [],
47
+ Backspace: [],
48
+ Tab: [],
49
+ Space: [' ', ' ', '', '', 0, 'VK_SPACE'],
50
+ Minus: ['+', '?', '', '', 0, 'VK_OEM_PLUS'],
51
+ Equal: ['\\', '`', '´', '', 0, 'VK_OEM_4'],
52
+ BracketLeft: ['å', 'Å', '', '', 0, 'VK_OEM_6'],
53
+ BracketRight: ['¨', '^', '~', '', 0, 'VK_OEM_1'],
54
+ Backslash: ['\'', '*', '', '', 0, 'VK_OEM_2'],
55
+ Semicolon: ['ø', 'Ø', '', '', 0, 'VK_OEM_3'],
56
+ Quote: ['æ', 'Æ', '', '', 0, 'VK_OEM_7'],
57
+ Backquote: ['|', '§', '', '', 0, 'VK_OEM_5'],
58
+ Comma: [',', ';', '', '', 0, 'VK_OEM_COMMA'],
59
+ Period: ['.', ':', '', '', 0, 'VK_OEM_PERIOD'],
60
+ Slash: ['-', '_', '', '', 0, 'VK_OEM_MINUS'],
61
+ CapsLock: [],
62
+ F1: [],
63
+ F2: [],
64
+ F3: [],
65
+ F4: [],
66
+ F5: [],
67
+ F6: [],
68
+ F7: [],
69
+ F8: [],
70
+ F9: [],
71
+ F10: [],
72
+ F11: [],
73
+ F12: [],
74
+ PrintScreen: [],
75
+ ScrollLock: [],
76
+ Pause: [],
77
+ Insert: [],
78
+ Home: [],
79
+ PageUp: [],
80
+ Delete: [],
81
+ End: [],
82
+ PageDown: [],
83
+ ArrowRight: [],
84
+ ArrowLeft: [],
85
+ ArrowDown: [],
86
+ ArrowUp: [],
87
+ NumLock: [],
88
+ NumpadDivide: ['/', '/', '', '', 0, 'VK_DIVIDE'],
89
+ NumpadMultiply: ['*', '*', '', '', 0, 'VK_MULTIPLY'],
90
+ NumpadSubtract: ['-', '-', '', '', 0, 'VK_SUBTRACT'],
91
+ NumpadAdd: ['+', '+', '', '', 0, 'VK_ADD'],
92
+ NumpadEnter: [],
93
+ Numpad1: [],
94
+ Numpad2: [],
95
+ Numpad3: [],
96
+ Numpad4: [],
97
+ Numpad5: [],
98
+ Numpad6: [],
99
+ Numpad7: [],
100
+ Numpad8: [],
101
+ Numpad9: [],
102
+ Numpad0: [],
103
+ NumpadDecimal: [],
104
+ IntlBackslash: ['<', '>', '', '', 0, 'VK_OEM_102'],
105
+ ContextMenu: [],
106
+ Power: [],
107
+ NumpadEqual: [],
108
+ F13: [],
109
+ F14: [],
110
+ F15: [],
111
+ F16: [],
112
+ F17: [],
113
+ F18: [],
114
+ F19: [],
115
+ F20: [],
116
+ F21: [],
117
+ F22: [],
118
+ F23: [],
119
+ F24: [],
120
+ Help: [],
121
+ Undo: [],
122
+ Cut: [],
123
+ Copy: [],
124
+ Paste: [],
125
+ AudioVolumeMute: [],
126
+ AudioVolumeUp: [],
127
+ AudioVolumeDown: [],
128
+ NumpadComma: [],
129
+ IntlRo: [],
130
+ KanaMode: [],
131
+ IntlYen: [],
132
+ Convert: [],
133
+ NonConvert: [],
134
+ Lang1: [],
135
+ Lang2: [],
136
+ Lang3: [],
137
+ Lang4: [],
138
+ ControlLeft: [],
139
+ ShiftLeft: [],
140
+ AltLeft: [],
141
+ MetaLeft: [],
142
+ ControlRight: [],
143
+ ShiftRight: [],
144
+ AltRight: [],
145
+ MetaRight: [],
146
+ MediaTrackNext: [],
147
+ MediaTrackPrevious: [],
148
+ MediaStop: [],
149
+ Eject: [],
150
+ MediaPlayPause: [],
151
+ MediaSelect: [],
152
+ LaunchMail: [],
153
+ LaunchApp2: [],
154
+ LaunchApp1: [],
155
+ BrowserSearch: [],
156
+ BrowserHome: [],
157
+ BrowserBack: [],
158
+ BrowserForward: [],
159
+ BrowserStop: [],
160
+ BrowserRefresh: [],
161
+ BrowserFavorites: []
162
+ }
163
+ });
@@ -0,0 +1,126 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { id: 'com.apple.keylayout.PolishPro', lang: 'pl', localizedName: 'Polish - Pro' },
5
+ secondaryLayouts: [],
6
+ mapping: {
7
+ KeyA: ['a', 'A', 'ą', 'Ą', 0],
8
+ KeyB: ['b', 'B', 'ļ', 'ű', 0],
9
+ KeyC: ['c', 'C', 'ć', 'Ć', 0],
10
+ KeyD: ['d', 'D', '∂', 'Ž', 0],
11
+ KeyE: ['e', 'E', 'ę', 'Ę', 0],
12
+ KeyF: ['f', 'F', 'ń', 'ž', 0],
13
+ KeyG: ['g', 'G', '©', 'Ū', 0],
14
+ KeyH: ['h', 'H', 'ķ', 'Ó', 0],
15
+ KeyI: ['i', 'I', '^', 'ť', 4],
16
+ KeyJ: ['j', 'J', '∆', 'Ô', 0],
17
+ KeyK: ['k', 'K', 'Ż', 'ū', 0],
18
+ KeyL: ['l', 'L', 'ł', 'Ł', 0],
19
+ KeyM: ['m', 'M', 'Ķ', 'ų', 0],
20
+ KeyN: ['n', 'N', 'ń', 'Ń', 0],
21
+ KeyO: ['o', 'O', 'ó', 'Ó', 0],
22
+ KeyP: ['p', 'P', 'Ļ', 'ł', 0],
23
+ KeyQ: ['q', 'Q', 'Ō', 'ő', 0],
24
+ KeyR: ['r', 'R', '®', '£', 0],
25
+ KeyS: ['s', 'S', 'ś', 'Ś', 0],
26
+ KeyT: ['t', 'T', '†', 'ś', 0],
27
+ KeyU: ['u', 'U', '¨', 'Ť', 4],
28
+ KeyV: ['v', 'V', '√', '◊', 0],
29
+ KeyW: ['w', 'W', '∑', '„', 0],
30
+ KeyX: ['x', 'X', 'ź', 'Ź', 0],
31
+ KeyY: ['y', 'Y', 'ī', 'Á', 0],
32
+ KeyZ: ['z', 'Z', 'ż', 'Ż', 0],
33
+ Digit1: ['1', '!', 'Ń', 'ŕ', 0],
34
+ Digit2: ['2', '@', '™', 'Ř', 0],
35
+ Digit3: ['3', '#', '€', '‹', 0],
36
+ Digit4: ['4', '$', 'ß', '›', 0],
37
+ Digit5: ['5', '%', 'į', 'ř', 0],
38
+ Digit6: ['6', '^', '§', 'Ŗ', 0],
39
+ Digit7: ['7', '&', '¶', 'ŗ', 0],
40
+ Digit8: ['8', '*', '•', '°', 0],
41
+ Digit9: ['9', '(', 'Ľ', 'Š', 0],
42
+ Digit0: ['0', ')', 'ľ', '‚', 0],
43
+ Enter: [],
44
+ Escape: [],
45
+ Backspace: [],
46
+ Tab: [],
47
+ Space: [' ', ' ', ' ', ' ', 0],
48
+ Minus: ['-', '_', '–', '—', 0],
49
+ Equal: ['=', '+', '≠', 'Ī', 0],
50
+ BracketLeft: ['[', '{', '„', '”', 0],
51
+ BracketRight: [']', '}', '‚', '’', 0],
52
+ Backslash: ['\\', '|', '«', '»', 0],
53
+ Semicolon: [';', ':', '…', 'Ú', 0],
54
+ Quote: ['\'', '"', 'ĺ', 'ģ', 0],
55
+ Backquote: ['`', '~', '`', 'Ŕ', 4],
56
+ Comma: [',', '<', '≤', 'Ý', 0],
57
+ Period: ['.', '>', '≥', 'ý', 0],
58
+ Slash: ['/', '?', '÷', 'ņ', 0],
59
+ CapsLock: [],
60
+ F1: [],
61
+ F2: [],
62
+ F3: [],
63
+ F4: [],
64
+ F5: [],
65
+ F6: [],
66
+ F7: [],
67
+ F8: [],
68
+ F9: [],
69
+ F10: [],
70
+ F11: [],
71
+ F12: [],
72
+ Insert: [],
73
+ Home: [],
74
+ PageUp: [],
75
+ Delete: [],
76
+ End: [],
77
+ PageDown: [],
78
+ ArrowRight: [],
79
+ ArrowLeft: [],
80
+ ArrowDown: [],
81
+ ArrowUp: [],
82
+ NumLock: [],
83
+ NumpadDivide: ['/', '/', '/', '/', 0],
84
+ NumpadMultiply: ['*', '*', '*', '*', 0],
85
+ NumpadSubtract: ['-', '-', '-', '-', 0],
86
+ NumpadAdd: ['+', '+', '+', '+', 0],
87
+ NumpadEnter: [],
88
+ Numpad1: ['1', '1', '1', '1', 0],
89
+ Numpad2: ['2', '2', '2', '2', 0],
90
+ Numpad3: ['3', '3', '3', '3', 0],
91
+ Numpad4: ['4', '4', '4', '4', 0],
92
+ Numpad5: ['5', '5', '5', '5', 0],
93
+ Numpad6: ['6', '6', '6', '6', 0],
94
+ Numpad7: ['7', '7', '7', '7', 0],
95
+ Numpad8: ['8', '8', '8', '8', 0],
96
+ Numpad9: ['9', '9', '9', '9', 0],
97
+ Numpad0: ['0', '0', '0', '0', 0],
98
+ NumpadDecimal: ['.', '.', '.', '.', 0],
99
+ IntlBackslash: ['§', '£', '¬', '¬', 0],
100
+ ContextMenu: [],
101
+ NumpadEqual: ['=', '=', '=', '=', 0],
102
+ F13: [],
103
+ F14: [],
104
+ F15: [],
105
+ F16: [],
106
+ F17: [],
107
+ F18: [],
108
+ F19: [],
109
+ F20: [],
110
+ AudioVolumeMute: [],
111
+ AudioVolumeUp: ['', '=', '', '=', 0],
112
+ AudioVolumeDown: [],
113
+ NumpadComma: [],
114
+ IntlRo: [],
115
+ KanaMode: [],
116
+ IntlYen: [],
117
+ ControlLeft: [],
118
+ ShiftLeft: [],
119
+ AltLeft: [],
120
+ MetaLeft: [],
121
+ ControlRight: [],
122
+ ShiftRight: [],
123
+ AltRight: [],
124
+ MetaRight: []
125
+ }
126
+ });
@@ -0,0 +1,163 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { name: '00000415', id: '', text: 'Polish (Programmers)' },
5
+ secondaryLayouts: [],
6
+ mapping: {
7
+ Sleep: [],
8
+ WakeUp: [],
9
+ KeyA: ['a', 'A', 'ą', 'Ą', 0, 'VK_A'],
10
+ KeyB: ['b', 'B', '', '', 0, 'VK_B'],
11
+ KeyC: ['c', 'C', 'ć', 'Ć', 0, 'VK_C'],
12
+ KeyD: ['d', 'D', '', '', 0, 'VK_D'],
13
+ KeyE: ['e', 'E', 'ę', 'Ę', 0, 'VK_E'],
14
+ KeyF: ['f', 'F', '', '', 0, 'VK_F'],
15
+ KeyG: ['g', 'G', '', '', 0, 'VK_G'],
16
+ KeyH: ['h', 'H', '', '', 0, 'VK_H'],
17
+ KeyI: ['i', 'I', '', '', 0, 'VK_I'],
18
+ KeyJ: ['j', 'J', '', '', 0, 'VK_J'],
19
+ KeyK: ['k', 'K', '', '', 0, 'VK_K'],
20
+ KeyL: ['l', 'L', 'ł', 'Ł', 0, 'VK_L'],
21
+ KeyM: ['m', 'M', '', '', 0, 'VK_M'],
22
+ KeyN: ['n', 'N', 'ń', 'Ń', 0, 'VK_N'],
23
+ KeyO: ['o', 'O', 'ó', 'Ó', 0, 'VK_O'],
24
+ KeyP: ['p', 'P', '', '', 0, 'VK_P'],
25
+ KeyQ: ['q', 'Q', '', '', 0, 'VK_Q'],
26
+ KeyR: ['r', 'R', '', '', 0, 'VK_R'],
27
+ KeyS: ['s', 'S', 'ś', 'Ś', 0, 'VK_S'],
28
+ KeyT: ['t', 'T', '', '', 0, 'VK_T'],
29
+ KeyU: ['u', 'U', '€', '', 0, 'VK_U'],
30
+ KeyV: ['v', 'V', '', '', 0, 'VK_V'],
31
+ KeyW: ['w', 'W', '', '', 0, 'VK_W'],
32
+ KeyX: ['x', 'X', 'ź', 'Ź', 0, 'VK_X'],
33
+ KeyY: ['y', 'Y', '', '', 0, 'VK_Y'],
34
+ KeyZ: ['z', 'Z', 'ż', 'Ż', 0, 'VK_Z'],
35
+ Digit1: ['1', '!', '', '', 0, 'VK_1'],
36
+ Digit2: ['2', '@', '', '', 0, 'VK_2'],
37
+ Digit3: ['3', '#', '', '', 0, 'VK_3'],
38
+ Digit4: ['4', '$', '', '', 0, 'VK_4'],
39
+ Digit5: ['5', '%', '', '', 0, 'VK_5'],
40
+ Digit6: ['6', '^', '', '', 0, 'VK_6'],
41
+ Digit7: ['7', '&', '', '', 0, 'VK_7'],
42
+ Digit8: ['8', '*', '', '', 0, 'VK_8'],
43
+ Digit9: ['9', '(', '', '', 0, 'VK_9'],
44
+ Digit0: ['0', ')', '', '', 0, 'VK_0'],
45
+ Enter: [],
46
+ Escape: [],
47
+ Backspace: [],
48
+ Tab: [],
49
+ Space: [' ', ' ', '', '', 0, 'VK_SPACE'],
50
+ Minus: ['-', '_', '', '', 0, 'VK_OEM_MINUS'],
51
+ Equal: ['=', '+', '', '', 0, 'VK_OEM_PLUS'],
52
+ BracketLeft: ['[', '{', '', '', 0, 'VK_OEM_4'],
53
+ BracketRight: [']', '}', '', '', 0, 'VK_OEM_6'],
54
+ Backslash: ['\\', '|', '', '', 0, 'VK_OEM_5'],
55
+ Semicolon: [';', ':', '', '', 0, 'VK_OEM_1'],
56
+ Quote: ['\'', '"', '', '', 0, 'VK_OEM_7'],
57
+ Backquote: ['`', '~', '', '', 0, 'VK_OEM_3'],
58
+ Comma: [',', '<', '', '', 0, 'VK_OEM_COMMA'],
59
+ Period: ['.', '>', '', '', 0, 'VK_OEM_PERIOD'],
60
+ Slash: ['/', '?', '', '', 0, 'VK_OEM_2'],
61
+ CapsLock: [],
62
+ F1: [],
63
+ F2: [],
64
+ F3: [],
65
+ F4: [],
66
+ F5: [],
67
+ F6: [],
68
+ F7: [],
69
+ F8: [],
70
+ F9: [],
71
+ F10: [],
72
+ F11: [],
73
+ F12: [],
74
+ PrintScreen: [],
75
+ ScrollLock: [],
76
+ Pause: [],
77
+ Insert: [],
78
+ Home: [],
79
+ PageUp: [],
80
+ Delete: [],
81
+ End: [],
82
+ PageDown: [],
83
+ ArrowRight: [],
84
+ ArrowLeft: [],
85
+ ArrowDown: [],
86
+ ArrowUp: [],
87
+ NumLock: [],
88
+ NumpadDivide: ['/', '/', '', '', 0, 'VK_DIVIDE'],
89
+ NumpadMultiply: ['*', '*', '', '', 0, 'VK_MULTIPLY'],
90
+ NumpadSubtract: ['-', '-', '', '', 0, 'VK_SUBTRACT'],
91
+ NumpadAdd: ['+', '+', '', '', 0, 'VK_ADD'],
92
+ NumpadEnter: [],
93
+ Numpad1: [],
94
+ Numpad2: [],
95
+ Numpad3: [],
96
+ Numpad4: [],
97
+ Numpad5: [],
98
+ Numpad6: [],
99
+ Numpad7: [],
100
+ Numpad8: [],
101
+ Numpad9: [],
102
+ Numpad0: [],
103
+ NumpadDecimal: [],
104
+ IntlBackslash: ['\\', '|', '', '', 0, 'VK_OEM_102'],
105
+ ContextMenu: [],
106
+ Power: [],
107
+ NumpadEqual: [],
108
+ F13: [],
109
+ F14: [],
110
+ F15: [],
111
+ F16: [],
112
+ F17: [],
113
+ F18: [],
114
+ F19: [],
115
+ F20: [],
116
+ F21: [],
117
+ F22: [],
118
+ F23: [],
119
+ F24: [],
120
+ Help: [],
121
+ Undo: [],
122
+ Cut: [],
123
+ Copy: [],
124
+ Paste: [],
125
+ AudioVolumeMute: [],
126
+ AudioVolumeUp: [],
127
+ AudioVolumeDown: [],
128
+ NumpadComma: [],
129
+ IntlRo: [],
130
+ KanaMode: [],
131
+ IntlYen: [],
132
+ Convert: [],
133
+ NonConvert: [],
134
+ Lang1: [],
135
+ Lang2: [],
136
+ Lang3: [],
137
+ Lang4: [],
138
+ ControlLeft: [],
139
+ ShiftLeft: [],
140
+ AltLeft: [],
141
+ MetaLeft: [],
142
+ ControlRight: [],
143
+ ShiftRight: [],
144
+ AltRight: [],
145
+ MetaRight: [],
146
+ MediaTrackNext: [],
147
+ MediaTrackPrevious: [],
148
+ MediaStop: [],
149
+ Eject: [],
150
+ MediaPlayPause: [],
151
+ MediaSelect: [],
152
+ LaunchMail: [],
153
+ LaunchApp2: [],
154
+ LaunchApp1: [],
155
+ BrowserSearch: [],
156
+ BrowserHome: [],
157
+ BrowserBack: [],
158
+ BrowserForward: [],
159
+ BrowserStop: [],
160
+ BrowserRefresh: [],
161
+ BrowserFavorites: []
162
+ }
163
+ });
@@ -0,0 +1,163 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { name: '00000416', id: '', text: 'Portuguese (Brazilian ABNT)' },
5
+ secondaryLayouts: [],
6
+ mapping: {
7
+ Sleep: [],
8
+ WakeUp: [],
9
+ KeyA: ['a', 'A', '', '', 0, 'VK_A'],
10
+ KeyB: ['b', 'B', '', '', 0, 'VK_B'],
11
+ KeyC: ['c', 'C', '₢', '', 0, 'VK_C'],
12
+ KeyD: ['d', 'D', '', '', 0, 'VK_D'],
13
+ KeyE: ['e', 'E', '°', '', 0, 'VK_E'],
14
+ KeyF: ['f', 'F', '', '', 0, 'VK_F'],
15
+ KeyG: ['g', 'G', '', '', 0, 'VK_G'],
16
+ KeyH: ['h', 'H', '', '', 0, 'VK_H'],
17
+ KeyI: ['i', 'I', '', '', 0, 'VK_I'],
18
+ KeyJ: ['j', 'J', '', '', 0, 'VK_J'],
19
+ KeyK: ['k', 'K', '', '', 0, 'VK_K'],
20
+ KeyL: ['l', 'L', '', '', 0, 'VK_L'],
21
+ KeyM: ['m', 'M', '', '', 0, 'VK_M'],
22
+ KeyN: ['n', 'N', '', '', 0, 'VK_N'],
23
+ KeyO: ['o', 'O', '', '', 0, 'VK_O'],
24
+ KeyP: ['p', 'P', '', '', 0, 'VK_P'],
25
+ KeyQ: ['q', 'Q', '/', '', 0, 'VK_Q'],
26
+ KeyR: ['r', 'R', '', '', 0, 'VK_R'],
27
+ KeyS: ['s', 'S', '', '', 0, 'VK_S'],
28
+ KeyT: ['t', 'T', '', '', 0, 'VK_T'],
29
+ KeyU: ['u', 'U', '', '', 0, 'VK_U'],
30
+ KeyV: ['v', 'V', '', '', 0, 'VK_V'],
31
+ KeyW: ['w', 'W', '?', '', 0, 'VK_W'],
32
+ KeyX: ['x', 'X', '', '', 0, 'VK_X'],
33
+ KeyY: ['y', 'Y', '', '', 0, 'VK_Y'],
34
+ KeyZ: ['z', 'Z', '', '', 0, 'VK_Z'],
35
+ Digit1: ['1', '!', '¹', '', 0, 'VK_1'],
36
+ Digit2: ['2', '@', '²', '', 0, 'VK_2'],
37
+ Digit3: ['3', '#', '³', '', 0, 'VK_3'],
38
+ Digit4: ['4', '$', '£', '', 0, 'VK_4'],
39
+ Digit5: ['5', '%', '¢', '', 0, 'VK_5'],
40
+ Digit6: ['6', '¨', '¬', '', 0, 'VK_6'],
41
+ Digit7: ['7', '&', '', '', 0, 'VK_7'],
42
+ Digit8: ['8', '*', '', '', 0, 'VK_8'],
43
+ Digit9: ['9', '(', '', '', 0, 'VK_9'],
44
+ Digit0: ['0', ')', '', '', 0, 'VK_0'],
45
+ Enter: [],
46
+ Escape: [],
47
+ Backspace: [],
48
+ Tab: [],
49
+ Space: [' ', ' ', '', '', 0, 'VK_SPACE'],
50
+ Minus: ['-', '_', '', '', 0, 'VK_OEM_MINUS'],
51
+ Equal: ['=', '+', '§', '', 0, 'VK_OEM_PLUS'],
52
+ BracketLeft: ['´', '`', '', '', 0, 'VK_OEM_4'],
53
+ BracketRight: ['[', '{', 'ª', '', 0, 'VK_OEM_6'],
54
+ Backslash: [']', '}', 'º', '', 0, 'VK_OEM_5'],
55
+ Semicolon: ['ç', 'Ç', '', '', 0, 'VK_OEM_1'],
56
+ Quote: ['~', '^', '', '', 0, 'VK_OEM_7'],
57
+ Backquote: ['\'', '"', '', '', 0, 'VK_OEM_3'],
58
+ Comma: [',', '<', '', '', 0, 'VK_OEM_COMMA'],
59
+ Period: ['.', '>', '', '', 0, 'VK_OEM_PERIOD'],
60
+ Slash: [';', ':', '', '', 0, 'VK_OEM_2'],
61
+ CapsLock: [],
62
+ F1: [],
63
+ F2: [],
64
+ F3: [],
65
+ F4: [],
66
+ F5: [],
67
+ F6: [],
68
+ F7: [],
69
+ F8: [],
70
+ F9: [],
71
+ F10: [],
72
+ F11: [],
73
+ F12: [],
74
+ PrintScreen: [],
75
+ ScrollLock: [],
76
+ Pause: [],
77
+ Insert: [],
78
+ Home: [],
79
+ PageUp: [],
80
+ Delete: [],
81
+ End: [],
82
+ PageDown: [],
83
+ ArrowRight: [],
84
+ ArrowLeft: [],
85
+ ArrowDown: [],
86
+ ArrowUp: [],
87
+ NumLock: [],
88
+ NumpadDivide: ['/', '/', '', '', 0, 'VK_DIVIDE'],
89
+ NumpadMultiply: ['*', '*', '', '', 0, 'VK_MULTIPLY'],
90
+ NumpadSubtract: ['-', '-', '', '', 0, 'VK_SUBTRACT'],
91
+ NumpadAdd: ['+', '+', '', '', 0, 'VK_ADD'],
92
+ NumpadEnter: [],
93
+ Numpad1: [],
94
+ Numpad2: [],
95
+ Numpad3: [],
96
+ Numpad4: [],
97
+ Numpad5: [],
98
+ Numpad6: [],
99
+ Numpad7: [],
100
+ Numpad8: [],
101
+ Numpad9: [],
102
+ Numpad0: [],
103
+ NumpadDecimal: [],
104
+ IntlBackslash: ['\\', '|', '', '', 0, 'VK_OEM_102'],
105
+ ContextMenu: [],
106
+ Power: [],
107
+ NumpadEqual: [],
108
+ F13: [],
109
+ F14: [],
110
+ F15: [],
111
+ F16: [],
112
+ F17: [],
113
+ F18: [],
114
+ F19: [],
115
+ F20: [],
116
+ F21: [],
117
+ F22: [],
118
+ F23: [],
119
+ F24: [],
120
+ Help: [],
121
+ Undo: [],
122
+ Cut: [],
123
+ Copy: [],
124
+ Paste: [],
125
+ AudioVolumeMute: [],
126
+ AudioVolumeUp: [],
127
+ AudioVolumeDown: [],
128
+ NumpadComma: ['.', '.', '', '', 0, 'VK_ABNT_C2'],
129
+ IntlRo: ['/', '?', '°', '', 0, 'VK_ABNT_C1'],
130
+ KanaMode: [],
131
+ IntlYen: [],
132
+ Convert: [],
133
+ NonConvert: [],
134
+ Lang1: [],
135
+ Lang2: [],
136
+ Lang3: [],
137
+ Lang4: [],
138
+ ControlLeft: [],
139
+ ShiftLeft: [],
140
+ AltLeft: [],
141
+ MetaLeft: [],
142
+ ControlRight: [],
143
+ ShiftRight: [],
144
+ AltRight: [],
145
+ MetaRight: [],
146
+ MediaTrackNext: [],
147
+ MediaTrackPrevious: [],
148
+ MediaStop: [],
149
+ Eject: [],
150
+ MediaPlayPause: [],
151
+ MediaSelect: [],
152
+ LaunchMail: [],
153
+ LaunchApp2: [],
154
+ LaunchApp1: [],
155
+ BrowserSearch: [],
156
+ BrowserHome: [],
157
+ BrowserBack: [],
158
+ BrowserForward: [],
159
+ BrowserStop: [],
160
+ BrowserRefresh: [],
161
+ BrowserFavorites: []
162
+ }
163
+ });