This is driving me nuts. Similar SO questions don't contain the answer, though, so here it goes again in slightly different form:
Is there a way to:
Make vim show
0x0a
at the end of file as a blank line?Supposing #1 can't be done, how do I delete the eol? There is no line, so there is nothing to delete.
For example:
vim -b myfile
(currently no eol)- Add blank line at the end of file,
:w
:q
vim -b myfile
- the blank line is gone, buthexdump
shows0x0a
is still there. This is inconsistent behaviour.