()
| 184 | } |
| 185 | |
| 186 | function killToLineStart(): Cursor { |
| 187 | const { cursor: newCursor, killed } = cursor.deleteToLineStart() |
| 188 | pushToKillRing(killed, 'prepend') |
| 189 | return newCursor |
| 190 | } |
| 191 | |
| 192 | function killWordBefore(): Cursor { |
| 193 | const { cursor: newCursor, killed } = cursor.deleteWordBefore() |
nothing calls this directly
no test coverage detected