screen-editor / se

se is a screen oriented version of the classic UNIX text editor ed.
Other
39 stars 3 forks source link

GH-4 Treat insert `i` into an empty buffer like append `0a`. #21

Closed SirWumpus closed 1 year ago

SirWumpus commented 1 year ago

When the buffer is empty, i or 0i will behave like 0a. Once the buffer is non-empty 0i will cause a range error, use 1i. This is more like how ed(1) behaves.