(keys: string[], alreadyRemapped: boolean = true)
| 416 | } |
| 417 | |
| 418 | async handleMultipleKeyEvents(keys: string[], alreadyRemapped: boolean = true): Promise<void> { |
| 419 | for (const key of keys) { |
| 420 | await (alreadyRemapped ? this.handleKeyEventLangmapped(key) : this.handleKeyEvent(key)); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | public async handleKeyEvent(keyRaw: string): Promise<void> { |
| 425 | const key = |
nothing calls this directly
no test coverage detected