How should I go about renaming my current file in vim.

For example:

  • I am editing person.html_erb_spec.rb
  • I would like it renamed to person.haml_spec.rb
  • I would like to continue editing person.haml_spec.rb

How would I go about doing this, elegantly?

link|improve this question

feedback

8 Answers

up vote 23 down vote accepted

There's a little plugin that let's you do this.

link|improve this answer
This works perfectly, even with rails.vim – Sam Saffron Jul 30 '09 at 9:25
code:Rename %:p:h/_new_file_name.html.erb will save it in the same directory as the file being renamed. – Mike May 5 '11 at 19:34
:Rename <newfilename> will move a file from its location to the CWD, so make sure you set the CWD first or prefix the new filename with the proper subdirectory. – Thomas Hunter May 14 '11 at 20:11
2  
This updated version of Rename.vim handles CWD correctly - always saves file in the directory of original one. – sickill Sep 4 '11 at 17:56
1  
@sickill Here's an even better version IMO that tries to be smart, if the new file name contains a "/" it uses the full path, otherwise it assumes the current directory github.com/DelvarWorld/configs/blob/master/bundle/Rename/plugin/… – Andy Ray Dec 5 '11 at 20:13
feedback

The command is called :saveas, but unfortunately it will not delete your old file, you'll have to do that manually. see :help saveas for more info.

EDIT:

Most vim installations have an integrated file explorer, which you can use for such operations. Try :Explore in command mode (I would actually map that to a function key, it's very handy). You can rename files with R or delete them with D, for example. But pressing <F1> in the explorer will give you a better overview.

link|improve this answer
Thx, Explore gets the job done, it is however a little awkward – Sam Saffron Jul 30 '09 at 9:19
2  
Explorer trick is great, thanks. – Alan Peabody Mar 25 '11 at 20:56
1  
:Explore works great! I'm getting rid of NERD-tree in favor of this! – bzx Jul 18 '11 at 9:17
1  
I don’t think that it is awkward compared to other editors where you normally can’t move a file. Instead you have to go the file manager of your choice, rename the file, and go back to your editor. If you’re lucky you have to quit and restart your editor if it didn’t got the filename change notification. – Rafael Sep 7 '11 at 17:43
4  
You might also like :Sex (shorthand for split explore :-) ) – Peter Jankuliak Dec 7 '11 at 3:03
show 1 more comment
feedback
  • Write the file while editing - :w newname - to create a copy.
  • Start editing the new copy - :e#.
  • (Optionally) remove the old copy - :!rm oldname.

On Windows, the optional 3rd step changes a little:

  • (Optionally) remove old Windows copy - :!del oldname.
link|improve this answer
I use this approach all the time, however, the downside is that you lose your undo tree - so you can't undo anything before the :e – rampion Jul 30 '09 at 13:07
2  
Nice. Apparently Ctrl-6 does the same as :e# – glenn jackman Jul 31 '09 at 14:37
you can also open the directory, move the cursor to the file and press "D" to delete a file. – Peder Aug 3 '11 at 8:32
1  
The more straightforward way imho is 1) rename the current buffer :f newname 2) save it :w 3) (optionally) !rm oldname. The advantage is that your undo history is preserved. – kynan Sep 20 '11 at 14:12
This approach doesn't work with windows :). So I prefer no OS dependented solution. – nXqd Oct 11 '11 at 3:36
feedback
sav person.haml_spec.rb | call delete(expand('#'))
link|improve this answer
nice! didn't know about call delete(expand('#')) – dorkitude Aug 18 '11 at 23:40
feedback

I don't know if this is the "easiest" method, but assuming you've already saved your file (:w) I would invoke the shell (:sh) and do a simple cp foo foo.bak To go back to editor use Ctrl-D/Exit. Useful list of vi editor commands on this link

link|improve this answer
This will copy the file, not rename it. – innaM Jul 30 '09 at 9:04
Ah - I misread "I would like to continue editing person.haml_spec.rb" My bad! – DBMarcos99 Jul 30 '09 at 9:07
I suppose you could :! cp foo foo.new and then :e foo.new ? – DBMarcos99 Jul 30 '09 at 9:11
feedback

You can also use :f followed by :w

link|improve this answer
feedback

How about this:

:!mv oldfilename newfilename | e newfilename

Worked for me!

link|improve this answer
Hmmm, I should clarify that it worked on MacVim yesterday but I was sshed into a server and tried it today and the 2nd command didn't seem to be treated as a colon command... – murftown Dec 19 '11 at 17:32
Actually now it isn't working on MacVim either. Back to the drawing board! :) – murftown Dec 19 '11 at 18:34
feedback

I'd recommend :Rename from tpope's euncuh for this.

Also includes a bunch of other handy commands.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.