()
| 420 | } |
| 421 | |
| 422 | private moveLeft() { |
| 423 | if (this.cursorPos > 1) { |
| 424 | this.writeEmitter.fire(ACTIONS.cursorBack(1)); |
| 425 | this.cursorPos--; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | private moveRight() { |
| 430 | if (this.cursorPos <= this.curLine.length) { |
no test coverage detected