()
| 427 | } |
| 428 | |
| 429 | private moveRight() { |
| 430 | if (this.cursorPos <= this.curLine.length) { |
| 431 | this.writeEmitter.fire(ACTIONS.cursorForward(1)); |
| 432 | this.cursorPos++; |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | private killPrevChar() { |
| 437 | if (this.cursorPos > 1) { |
no test coverage detected