Okay so I have already gone through this.
So I know you can edit multiple files in VIM if you open them up in the following way:
vim file1 file2
and you can change files using :n and :N.
But what if I wanted open up a new file using :edit and still use :n and :N.
So lets say we open a file in VIM using :
vim file1
and I am working on this file and I have to open up another file now called file2
Now :n and :N no longer work.
Why is that ?
I want to be able to use :n and :N after opening the file. Any way I can do that ?
Seems easy but I can't figure it out.