(keyRaw: string)
| 422 | } |
| 423 | |
| 424 | public async handleKeyEvent(keyRaw: string): Promise<void> { |
| 425 | const key = |
| 426 | isLiteralMode(this.currentMode) || this.vimState.isReplayingMacro ? keyRaw : remapKey(keyRaw); |
| 427 | return this.handleKeyEventLangmapped(key); |
| 428 | } |
| 429 | |
| 430 | private async handleKeyEventLangmapped(key: string): Promise<void> { |
| 431 | if (this.remapState.forceStopRecursiveRemapping) { |
no test coverage detected