Tagged Questions
2
votes
4answers
511 views
Have I missed the :mv command in Vim?
From time to time I want to rename a file while editing it. For example from .html to .xhtml or so.
To do that in Vim, I must do
:saveas new_file
:!rm old_file
Is there a built-in command, that ...