I am new to VIM. I use the :e and :w commands to edit and to write a file which are very convenient. I am not sure if there is "close" command to close the current file without leaving VIM?

I know that the :q command can be used to close a file, but if it is the last file, VIM is closed as well; Actually on Mac OS MacVIM does quit. Only the VIM window is closed and I could use Control-N to open a blank VIM again. I would like VIM to remain open with a blank screen.

link|improve this question

68% accept rate
feedback

6 Answers

up vote 128 down vote accepted

This deletes the buffer (which translates to close the file)

:bd
link|improve this answer
1  
Yours is better than mine for what the OP asked, although I tend to prefer :enew because I like having the buffer in the buffer list. :) – Rytmis Nov 1 '08 at 22:39
+1, you beat me to it! – ephemient Nov 1 '08 at 22:40
2  
When I do this, vim shows the first buffer, but I can still access the buffer – Martin Andersson Dec 2 '09 at 17:02
1  
@Martin, to completely delete the buffer, use :bw – sebnow Dec 2 '10 at 11:14
feedback

If you have multiple split windows in your vim window then :bd closes the split window of the current file... so I like to use something a little more advanced:

map fc <Esc>:call CleanClose(1)

map fq <Esc>:call CleanClose(0)


function! CleanClose(tosave)
if (a:tosave == 1)
    w!
endif
let todelbufNr = bufnr("%")
let newbufNr = bufnr("#")
if ((newbufNr != -1) && (newbufNr != todelbufNr) && buflisted(newbufNr))
    exe "b".newbufNr
else
    bnext
endif

if (bufnr("%") == todelbufNr)
    new
endif
exe "bd".todelbufNr
endfunction
link|improve this answer
3  
Now what this snippet does? – dolzenko Oct 20 '10 at 10:00
You probably want <CR> after the calls to actually execute the command. – dma Mar 10 '11 at 17:21
@dolzenko it maps 'fc' and 'fq' in normal mode to optionally save the current buffer then switch to a new buffer before deleting the original. This preserves any splits you have set up. – dma Mar 10 '11 at 17:22
This is good stuff, saves much typing of :bw. – matt Aug 11 '11 at 13:17
feedback
:[N]bd[elete][!]                        *:bd* *:bdel* *:bdelete* *E516*
:bd[elete][!] [N]
                Unload buffer [N] (default: current buffer) and delete it from
                the buffer list.  If the buffer was changed, this fails,
                unless when [!] is specified, in which case changes are lost.
                The file remains unaffected.  Any windows for this buffer are
                closed.  If buffer [N] is the current buffer, another buffer
                will be displayed instead.  This is the most recent entry in
                the jump list that points into a loaded buffer.
                Actually, the buffer isn't completely deleted, it is removed
                from the buffer list |unlisted-buffer| and option values,
                variables and mappings/abbreviations for the buffer are
                cleared.
link|improve this answer
feedback

As already mentioned, you're looking for :bd, however this doesn't completely remove the buffer, it's still accessible:

:e foo
:e bar
:buffers
  1 #h   "foo"                          line 1
  2 %a   "bar"                          line 1
Press ENTER or type command to continue
:bd 2
:buffers
  1 %a   "foo"                          line 1
Press ENTER or type command to continue
:b 2
2   bar

You may instead want :bw which completely removes it.

:bw 2
:b 2 
E86: Buffer 2 does not exist

Not knowing about :bw bugged me for quite a while.

link|improve this answer
feedback

If you've saved the last file already, then :enew is your friend (:enew! if you don't want to save the last file). Note that the original file will still be in your buffer list (the one accessible via :ls).

link|improve this answer
feedback

:bd can be mapped. I map it to F4, shift-F4 if I need to force-close because of some change I no longer want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.