49

I'm new in the world of ubuntu and vim editor.
My question is: how can I save a file on my localhost using vim?
When I use the command :w I save the file, but where? And how can I change the file location to /var/www/?

enzotib
  • 93,831
berga007
  • 639
  • 1
  • 5
  • 10

8 Answers8

66

You can enter :pwd to display the current working directory. This is where your file will be saved if simply enter :w filename. You can change the working directory with :cd path/to/new/directory. Or you can enter the full path to the location where you want to save the file with the write command, e.g., :w /var/www/filename.

camsolo
  • 1,071
22

The w vim command supports as parameter the filename, that can contain a path, so

:w /var/www/filename

should work, provided you have permissions to write to that directory.
You could also use tab completion to build the pathname.

The bare command :w only works if you started vim giving it a filename already.

enzotib
  • 93,831
  • 1
    Yes, when I use the :w command I had already given a name to the file... I tried to save the file into my localhost directory using the tip you gave me and it worked! Thank you very much, if one day I could help you I won't hesitate! – berga007 Aug 17 '13 at 14:25
12

Navigate to the directory you want to save the new file to, open the file you wish to edit and then use

Esc:sav newfilename or Esc:w newfilename That should work for you.

For more on tips with vim you might find this cheatsheet useful.

Edit as requested.

:sav saves the file with a new name and opens the new file in Vim.

Note: :sav won’t close the initial buffer, it will hide it. By default, hidden buffers are unloaded.

:w save the file with a new name but keeps the original open for editing.

Edit source: https://stackoverflow.com/questions/4980168/how-to-save-as-a-new-file-and-keep-working-on-the-original-one-in-vim

Elder Geek
  • 36,023
  • 25
  • 98
  • 183
8

I believe you want to try something like this. (don't forget the double slash at the end.)

:w /var/www//%:t
thedemon
  • 191
  • 1
7

Inside Vim, no matter where the file is currently saved, you can give the path to the new location where you want to save it. For example, to save the file on your Desktop:

press esc to go into normal mode, then type

:w ~/Desktop/filename

This works for any path where you have permission to write on the directory. If you want to save somewhere where you don't have write permission, you can do this:

:w !sudo tee /path/to/my/filename
Zanna
  • 70,465
3

If you created a new file with Vim, pressing the key sequence Esc-:-w-q-Enter will save the file to the current location where you launched Vim. For example, if you were at /home/$USER the file will be created under this directory. The easy way is to launch vim using:

vim myFile.txt

This will create a new file, or overwrite a file with name myFile.txt in the current location.

GTRONICK
  • 4,314
2

On your launcher the second icon is a picture of a filing cabinet. This is called Nautilus (Ubuntu's File Manager).

Select Nautilus and your home directory should open. You should see your file there.

Right click on your file and select 'copy'. Open your email, compose a new message, click on the message body. Then 'right click' and this time select 'Paste'.

These instructions work for Ubuntu 14.04 and 16.04 but I don't know if 12.04 includes Nautilus.

  • 2
    12.04 includes Nautilus. See here: http://packages.ubuntu.com/search?keywords=nautilus – wjandrea Nov 11 '16 at 06:47
  • 4
    -1 This answer has nothing to do with Vim. I think you posted a legit answer on the wrong question. – wjandrea Nov 11 '16 at 06:49
  • @wjandrea At the time I wrote this on my phone the OP had a multi-part question "or perhaps email it to myself". This answer tells OP how to handle the email portion of the question. Thanks for commenting on why you down-voted. Not everyone extends that courtesy. – WinEunuuchs2Unix Nov 11 '16 at 11:33
1

If the filepath and filename you are trying to save to has no spaces then camsolo's answer (:w /var/www/filename) will work for you. If the filepath/filename has space(s) in it then you will need to escape those space to save it there. I have noticed that all or some versions of vim will not save to a filepath when quotation marks are in the command.

This will not work: :w "/var/www/pa th/file name"

This will work: :w /var/www/pa\ th/file\ name

Zanna
  • 70,465
Rublacava
  • 131