Преглед изворни кода

Nvim: make :SClose close terminal buffers as well

Fixes https://github.com/mhinz/vim-startify/issues/382
Marco Hinz пре 6 година
родитељ
комит
9abd2c7684
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      autoload/startify.vim

+ 1 - 1
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