()
| 190 | } |
| 191 | |
| 192 | function killWordBefore(): Cursor { |
| 193 | const { cursor: newCursor, killed } = cursor.deleteWordBefore() |
| 194 | pushToKillRing(killed, 'prepend') |
| 195 | return newCursor |
| 196 | } |
| 197 | |
| 198 | function yank(): Cursor { |
| 199 | const text = getLastKill() |
nothing calls this directly
no test coverage detected