()
| 180 | } |
| 181 | |
| 182 | function killToLineEnd(): Cursor { |
| 183 | const { cursor: newCursor, killed } = cursor.deleteToLineEnd() |
| 184 | pushToKillRing(killed, 'append') |
| 185 | return newCursor |
| 186 | } |
| 187 | |
| 188 | function killToLineStart(): Cursor { |
| 189 | const { cursor: newCursor, killed } = cursor.deleteToLineStart() |
nothing calls this directly
no test coverage detected