From ae062f2b6fdc61d28eccf27400b2c104cd803f23 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 Jul 2013 12:41:27 +0200 Subject: [PATCH] Unlet s:marked after execution This lead to nasty bugs because Startify would take the wrong branch to open the new buffers. References #30. --- autoload/startify.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 5f05834..4ea66f7 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -380,6 +380,10 @@ function! s:open_buffers(cword) abort else execute 'normal' a:cword endif + if exists('s:marked') + unlet s:marked + unlet s:nmarked + endif endfunction " Function: s:close {{{1