Vim: How do you open another [No Name] buffer like the one on startup?
You may also want to look into :sp filename
I use split pane all of the time - it's pretty great. In combination with screen you've got a lot of niceties there.
In normal mode, type :new<CR>
.
There are many ways to open a new buffer with no name, the simplest of which is :new
.
:new
will create a split window with an unnamed buffer.
:enew
will open one in the current window.
:vnew
will open one in a vertically split window.
:tabnew
will open one in a new tab.