From 428d7f5a35bcde0d5ad0b72c8f5d5361c97af75e Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 Jul 2013 14:53:00 +0200 Subject: [PATCH] Prevent empty buffers References #30. --- autoload/startify.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 4ea66f7..0962f13 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -355,6 +355,7 @@ endfunction function! s:open_buffers(cword) abort if exists('s:marked') && !empty(s:marked) enew + setlocal nobuflisted for i in range(len(s:marked)) for val in values(s:marked) if val[0] == i