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