I know I can use :new to open a new buffer in a split window (defined by set splitbelow and set splitright).
But how can I just open a new, empty buffer without opening it in a split?
I know I can use :new to open a new buffer in a split window (defined by set splitbelow and set splitright).
But how can I just open a new, empty buffer without opening it in a split?
You can use :enew. See :h :enew:
Edit a new, unnamed buffer. This fails when changes have been made to the current buffer, unless 'hidden' is set or 'autowriteall' is set and the file can be written.
And you can use :enew! to discard unsaved changes in the current buffer.
Vim also offers :tabnew, which opens a new, unnamed buffer in a new tab allows you to easily switch between buffers (tabs) using gt and gT. This consumes the full width of the editor, albeit, technically in a different window (in a different tab).
Corrected from romainl's comment
:enewand:tabewhile you have a file that you have not saved. However I still upvote this, as it is the tab equivalent to :enew – hgiesel Jun 13 '16 at 17:23:tabnewis the tab page equivalent of:enew. – romainl Jun 13 '16 at 20:17:tabewith no argument behaves the same. – jpaugh Jun 13 '16 at 20:23