58

I would like to open a file that already exists while already in Vim.

What is the command to do this?

Adam
  • 2,738

2 Answers2

82

vim [your file]

If this isn't working for you, make sure you have it installed with:

sudo apt-get install vim

If you're already IN vim do

:edit [your file]

Additionally, to move back to the previous file after you finish editing the new file you can use

:e#

This will return you to the previous file

Mitch
  • 4,807
29

You can also use tabs and split views:

:tabe /path/to/file

Effect: enter image description here

:vs /path/to/file

(or :sp for a horizontal split)
Effect: enter image description here

Use :tabn, :tabp to navigate between tabs, and CtrlW with the arrow keys to navigate between splits.

muru
  • 207,228