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