From 720299cbf5519e67d48ee457f35a68b0fc1a00b5 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 11 Dec 2015 12:29:44 +0100 Subject: [PATCH] Make potential warning less obtrusive --- autoload/startify.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 6d220fe..7705304 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -759,12 +759,10 @@ endfunction " Function: s:create_last_session_link {{{1 function! s:create_last_session_link(spath) if !has('win32') && a:spath !~# '__LAST__$' - call system('cd '. shellescape(s:session_dir) + silent! call system('cd '. shellescape(s:session_dir) \ .' && ln -sf '. shellescape(fnamemodify(a:spath, ':t')) .' __LAST__') if v:shell_error - echohl WarningMsg echomsg "startify: Can't create 'last used session' symlink." - echohl NONE endif endif endfunction