Risposte:
Non esistono comandi nativi per questo, ma puoi crearne uno abbastanza facilmente usando lo script Vim. Ecco un esempio di base che ti consente di chiudere le schede a destra della scheda corrente e le schede a sinistra:
function! TabCloseRight(bang)
let cur=tabpagenr()
while cur < tabpagenr('$')
exe 'tabclose' . a:bang . ' ' . (cur + 1)
endwhile
endfunction
function! TabCloseLeft(bang)
while tabpagenr() > 1
exe 'tabclose' . a:bang . ' 1'
endwhile
endfunction
command! -bang Tabcloseright call TabCloseRight('<bang>')
command! -bang Tabcloseleft call TabCloseLeft('<bang>')