Merge branch 'master' into vim-tweaks

This commit is contained in:
Kyle West
2012-01-25 16:11:37 -05:00
3 changed files with 8 additions and 1 deletions

View File

@@ -2,7 +2,9 @@
" (if there are multiple windows into the same buffer)
" or kill the buffer entirely if it's the last window looking into that buffer
function! CloseWindowOrKillBuffer()
if(bufwinnr('%')) > 1
let number_of_windows_to_this_buffer = len(filter(range(1, winnr('$')), "winbufnr(v:val) == bufnr('%')"))
if number_of_windows_to_this_buffer > 1
wincmd c
else
bdelete