Nvim: make :SClose close terminal buffers as well

Fixes https://github.com/mhinz/vim-startify/issues/382
This commit is contained in:
Marco Hinz 2019-07-29 15:22:41 +02:00
parent a27df8325c
commit 9abd2c7684
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -345,7 +345,7 @@ endfunction
" Function: #session_delete_buffers {{{1
function! startify#session_delete_buffers()
if get(g:, 'startify_session_delete_buffers', 1)
silent! %bdelete
silent! %bdelete!
endif
endfunction