How to delete current buffer and reopen the next buffer in current window?
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.
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()
精彩评论