We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58622cc commit 546dd9cCopy full SHA for 546dd9c
lib/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayoutService.ts
@@ -406,6 +406,9 @@ export class BrowserKeyboardMapperFactoryBase {
406
// }
407
408
// return null;
409
+ }).catch(() => {
410
+ // NOTE@coder: It looks like the intention was to catch this error but
411
+ // a try/catch won't do it when using promises without `await`.
412
});
413
} catch {
414
// getLayoutMap can throw if invoked from a nested browsing context
0 commit comments