Question

I would like to know is there any shortcuts or commands to switch buffer (delete current and reopen next buffer) in current window because sometimes I feel I opened too many buffers? And currently I use bufexplorer and fuzzyfinder.

Was it helpful?

Solution

Try this:

function DelBufferAndNext()
    let s:old_bufnr = bufnr('%')
    bnext
    exec s:old_bufnr . 'bd'
    unlet s:old_bufnr
endfunction
command -nargs=0 BD call DelBufferAndNext()
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top