From f610be14313ae41c63eb0057741935aaafd73ced Mon Sep 17 00:00:00 2001 From: Sergey Vlasov Date: Mon, 7 Mar 2016 16:27:36 +0200 Subject: [PATCH] Avoid 'Press Enter' message on session write --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 2fc1ba8..4d9a751 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -281,7 +281,7 @@ function! startify#session_write(spath) if exists('g:startify_session_remove_lines') \ || exists('g:startify_session_savevars') \ || exists('g:startify_session_savecmds') - execute 'split' a:spath + silent execute 'split' a:spath " remove lines from the session file if exists('g:startify_session_remove_lines')