@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,126 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { id: 'com.apple.keylayout.Italian-Pro', lang: 'it', localizedName: 'Italian' },
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', 'œ', 'Œ', 0],
16
+ KeyJ: ['j', 'J', 'ª', '˝', 0],
17
+ KeyK: ['k', 'K', 'º', '˛', 0],
18
+ KeyL: ['l', 'L', '¬', 'ˇ', 0],
19
+ KeyM: ['m', 'M', 'µ', 'Ú', 0],
20
+ KeyN: ['n', 'N', '˜', 'Ó', 4],
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', '(', '´', '', 4],
41
+ Digit9: ['9', ')', '`', ' ', 4],
42
+ Digit0: ['0', '=', '≠', '≈', 0],
43
+ Enter: [],
44
+ Escape: [],
45
+ Backspace: [],
46
+ Tab: [],
47
+ Space: [' ', ' ', ' ', ' ', 0],
48
+ Minus: ['\'', '?', '¡', '¿', 0],
49
+ Equal: ['ì', '^', 'ˆ', '±', 4],
50
+ BracketLeft: ['è', 'é', '[', '{', 0],
51
+ BracketRight: ['+', '*', ']', '}', 0],
52
+ Backslash: ['ù', '§', '¶', '◊', 0],
53
+ Semicolon: ['ò', 'ç', '@', 'Ç', 0],
54
+ Quote: ['à', '°', '#', '∞', 0],
55
+ Backquote: ['<', '>', '≤', '≥', 0],
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: '00000410', id: '', text: 'Italian' },
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_4'],
51
+ Equal: ['ì', '^', '', '', 0, 'VK_OEM_6'],
52
+ BracketLeft: ['è', 'é', '[', '{', 0, 'VK_OEM_1'],
53
+ BracketRight: ['+', '*', ']', '}', 0, 'VK_OEM_PLUS'],
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.google.inputmethod.Japanese.Roman', lang: 'en', localizedName: 'Alphanumeric (Google)' },
5
+ secondaryLayouts: [],
6
+ mapping: {
7
+ KeyA: ['a', 'A', '¯', '̄', 4],
8
+ KeyB: ['b', 'B', '˘', '̆', 4],
9
+ KeyC: ['c', 'C', '¸', '̧', 4],
10
+ KeyD: ['d', 'D', 'ð', 'Ð', 0],
11
+ KeyE: ['e', 'E', '´', '́', 4],
12
+ KeyF: ['f', 'F', 'ƒ', '', 0],
13
+ KeyG: ['g', 'G', '©', '‸', 8],
14
+ KeyH: ['h', 'H', 'ˍ', '̱', 4],
15
+ KeyI: ['i', 'I', 'ʼ', '̛', 4],
16
+ KeyJ: ['j', 'J', '˝', '̋', 4],
17
+ KeyK: ['k', 'K', '˚', '̊', 4],
18
+ KeyL: ['l', 'L', '-', '̵', 4],
19
+ KeyM: ['m', 'M', '˛', '̨', 4],
20
+ KeyN: ['n', 'N', '˜', '̃', 4],
21
+ KeyO: ['o', 'O', 'ø', 'Ø', 0],
22
+ KeyP: ['p', 'P', ',', '̦', 4],
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', 'ˇ', '̌', 4],
29
+ KeyW: ['w', 'W', '˙', '̇', 4],
30
+ KeyX: ['x', 'X', '.', '̣', 4],
31
+ KeyY: ['y', 'Y', '¥', '', 0],
32
+ KeyZ: ['z', 'Z', 'ˀ', '̉', 4],
33
+ Digit1: ['1', '!', '¡', '⁄', 0],
34
+ Digit2: ['2', '@', '™', '€', 0],
35
+ Digit3: ['3', '#', '£', '‹', 0],
36
+ Digit4: ['4', '$', '¢', '›', 0],
37
+ Digit5: ['5', '%', '§', '†', 0],
38
+ Digit6: ['6', '^', 'ˆ', '̂', 4],
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: [';', ':', '…', '№', 8],
54
+ Quote: ['\'', '"', 'æ', 'Æ', 0],
55
+ Backquote: ['`', '~', '`', '̀', 4],
56
+ Comma: [',', '<', '≤', '„', 0],
57
+ Period: ['.', '>', '≥', 'ʔ', 8],
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,126 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { id: 'com.apple.inputmethod.Kotoeri.Japanese', lang: 'ja', localizedName: 'Hiragana' },
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', '´', '´', 4],
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', '˜', '˜', 4],
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', '%', '∞', 'fi', 0],
38
+ Digit6: ['6', '^', '§', 'fl', 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,126 @@
1
+ import { KeyboardLayoutContribution } from './_.contribution.js';
2
+
3
+ KeyboardLayoutContribution.INSTANCE.registerKeyboardLayout({
4
+ layout: { id: 'com.apple.inputmethod.Korean.2SetKorean', lang: 'ko', localizedName: '2-Set Korean' },
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', 0],
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', 0],
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', '!', '1', '!', 0],
34
+ Digit2: ['2', '@', '2', '@', 0],
35
+ Digit3: ['3', '#', '3', '#', 0],
36
+ Digit4: ['4', '$', '4', '$', 0],
37
+ Digit5: ['5', '%', '5', '%', 0],
38
+ Digit6: ['6', '^', '6', '^', 0],
39
+ Digit7: ['7', '&', '7', '&', 0],
40
+ Digit8: ['8', '*', '8', '*', 0],
41
+ Digit9: ['9', '(', '9', '(', 0],
42
+ Digit0: ['0', ')', '0', ')', 0],
43
+ Enter: [],
44
+ Escape: ['', '', '', '‌', 0],
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: ['₩', '~', '`', '~', 0],
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
+ });