Selaa lähdekoodia

Nvim: make :SClose close terminal buffers as well

Fixes https://github.com/mhinz/vim-startify/issues/382
Marco Hinz 6 vuotta sitten
vanhempi
sitoutus
9abd2c7684
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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