()
| 412 | } |
| 413 | |
| 414 | private moveToBeg() { |
| 415 | const n = this.cursorPos - 1; |
| 416 | if (n > 0) { |
| 417 | this.writeEmitter.fire(ACTIONS.cursorBack(n)); |
| 418 | this.cursorPos = 1; |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | private moveLeft() { |
| 423 | if (this.cursorPos > 1) { |
no test coverage detected