@codingame/monaco-vscode-keybindings-service-override 2.0.2 → 2.0.3-improve-modularity.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-keybindings-service-override",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3-improve-modularity.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@2.0.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@2.0.3-improve-modularity.1",
|
|
22
22
|
"vscode-marked": "npm:marked@=3.0.2",
|
|
23
|
-
"@codingame/monaco-vscode-files-service-override": "2.0.
|
|
23
|
+
"@codingame/monaco-vscode-files-service-override": "2.0.3-improve-modularity.1"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -290,7 +290,7 @@ class BrowserKeyboardMapperFactoryBase extends Disposable {
|
|
|
290
290
|
async _getBrowserKeyMapping(keyboardEvent) {
|
|
291
291
|
if (navigator.keyboard) {
|
|
292
292
|
try {
|
|
293
|
-
return navigator.keyboard.getLayoutMap().then((e) => {
|
|
293
|
+
return await navigator.keyboard.getLayoutMap().then((e) => {
|
|
294
294
|
const ret = {};
|
|
295
295
|
for (const key of e) {
|
|
296
296
|
ret[key[0]] = {
|