tags:

views:

176

answers:

3

How can I pare down my buffer list to only include buffers that are currently open in a window/tab?

When I've been running Vim for a long time, the list of buffers revealed by the :ls command is too large to work with. Ideally, I would like to delete all of the buffers which are not currently visible in a tab or window by running a custom command such as :Only. Can anybody suggest how to achieve this?

It looks like the :bdelete command can accept a list of buffer numbers, but I'm not sure how to translate the output from :ls to a format that can be consumed by the :bdelete command. Any help would be appreciated.

Clarification

Lets say that in my Vim session I have opened 4 files. The :ls command outputs:

:ls
1  a   "abc.c"
2  h   "123.c"
3  h   "xyz.c"
4  a   "abc.h"

Buffer 1 is in the current tab, and and buffer 4 is in a separate tab, but buffers 2 and 3 are both hidden. I would like to run the command :Only, and it would wipe buffers 2 and 3, so the :ls command would output:

:ls
1  a   "abc.c"
4  a   "abc.h"

This example doesn't make the proposed :Only command look very useful, but if you have a list of 40 buffers it would be very welcome.

+3  A: 

Are you looking for:

:echo map(filter(range(0, bufnr('$')), 'bufwinnr(v:val)>=0'), 'bufname(v:val)')

or more precisely:

exe 'bw '.join(filter(range(0, bufnr('$')), 'bufwinnr(v:val)<0'), ' ')

?


EDIT: The previous answer did not take multiple tabs into account.

It seems I used a complex approach. The list of opened, and displayed, buffers can be obtained thanks to tabpagebuflist() with:

let tabs = range(1, tabpagenr())
echo lh#list#unique_sort(eval(join(map(tabs, 'tabpagebuflist(v:val)'), '+')))

(lh#list#unique_sort() comes from lh-vim-lib, it defines the sort+unique function that vim does not provide)

In order to have the non opened buffers, it becomes a little bit more tricky. Either we use a loop of each tab to obtain the buffers non displayed, or we make a diff between the previous result and the bufexisting buffers:

let tabs = range(1, tabpagenr())
let windowed = lh#list#unique_sort(eval(join(map(tabs, 'tabpagebuflist(v:val)'), '+')))
let existing = filter(range(0,bufnr('$')), 'bufexists(v:val)')
let non_windowed = filter(copy(existing), 'match(windowed, "^".v:val."$")<0')  
echo non_windowed
Luc Hermitte
Thanks, that's a great start, but it has a fatal flaw: [bufwinnr only deals with the current tab page](http://vimdoc.sourceforge.net/htmldoc/eval.html#bufwinnr\(\)). If I have more than 1 tab open, the window(s) in the active tab will be preserved, but the buffers in the other tabs will be nuked.
nelstrom
OK, here is the patch
Luc Hermitte
A: 

If you have say 4 buffers open:

:ls
1    abc.c
2    123.c
3    xyz.c
4    abc.h

and you want to "close" buffer 3 "xyz.c":

:bd3

results after deleting buffer 3:

:ls
1    abc.c
2    123.c
4    abc.h
hacintosh
That's not quite what I'm looking for, but thanks for taking the time to answer. I've posted a clarification.
nelstrom
+1  A: 

I've adapted Laurence Gonslaves solution.

command! -nargs=* Only call CloseHiddenBuffers()
function! CloseHiddenBuffers()
  " figure out which buffers are visible in any tab
  let visible = {}
  for t in range(1, tabpagenr('$'))
    for b in tabpagebuflist(t)
      let visible[b] = 1
    endfor
  endfor
  " close any buffer that are loaded and not visible
  let l:tally = 0
  for b in range(1, bufnr('$'))
    if bufloaded(b) && !has_key(visible, b)
      let l:tally += 1
      exe 'bw ' . b
    endif
  endfor
  echon "Deleted " . l:tally . " buffers"
endfun

I changed it to use bwipeout instead of bdelete, and added the message to show how many buffers have been removed.

nelstrom