From f41732a39272830bf8ef6ade8df4c43ad6a908c1 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 1 Jul 2016 01:48:25 +0200 Subject: [PATCH] Bookmarks: consider delete_buffers option on session autoload References https://github.com/mhinz/vim-startify/issues/231 --- autoload/startify.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 0df6c52..f21c735 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -777,6 +777,7 @@ function! s:check_user_options(path) abort if get(g:, 'startify_session_autoload') && filereadable(session) execute 'silent bwipeout' a:path + call startify#session_delete_buffers() execute 'source' session elseif get(g:, 'startify_change_to_vcs_root') call s:cd_to_vcs_root(a:path)