Closed
Description
Currently undo
seems to undo all the changes per an "Insert session"
So, this
insert_mode
type a lot of text
normal_mode
undo
deletes "type a lot of text"
This is too coarse, especially when typing a lot of text in one go.
Is there a way to increase the undo granularity to delete, say, by typed word? So it would behave more like this:
1st undo
deletes "text"
2nd undo
deletes "of "
3rd undo
deletes "lot "
...
(can be a separate command or an additional argument like :undo 1w
or something)