From 9abd2c76845de00eab207576b69332cf0e16d35c Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 Jul 2019 15:22:41 +0200 Subject: [PATCH] Nvim: make :SClose close terminal buffers as well Fixes https://github.com/mhinz/vim-startify/issues/382 --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index b5c3c8d..fa65268 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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