()
| 382 | } |
| 383 | |
| 384 | private killEntireLine() { |
| 385 | const n = this.cursorPos - 1; |
| 386 | this.writeEmitter.fire(ACTIONS.killLine(n)); |
| 387 | this.cursorPos = 1; |
| 388 | this.curLine = ''; |
| 389 | } |
| 390 | |
| 391 | private killLineFromCursor() { |
| 392 | const n = this.curLine.length - this.cursorPos + 1; |
no test coverage detected