-
Notifications
You must be signed in to change notification settings - Fork 16
Description
I notice that whenever I flip through backup versions the text cursor/caret always moves to the end of the file buffer.
-
If that revision of the file happens to not end with a newline, then the position is not at column 0 so it is difficult to read the timestamp (filename) since it shifts around a lot because the length of the last line changes. However even putting it at the beginning will not solve this issue completely (it will help it somewhat though) because the last line number may also change. So perhaps this can be addressed by printing a tab character at the beginning of the status line. I don't know if the status line handles tabs like that.
-
It would be convenient if the cursor is placed near the location of the changes which occurred in the file on that particular revision. It would consume time to have to scroll back to where you think the changes are, especially in a long file. This will likely require computing an incremental diff though. But that is also useful and can be made into a possible viewing format! see my other issue.