Make potential warning less obtrusive
This commit is contained in:
parent
438abff72b
commit
720299cbf5
|
@ -759,12 +759,10 @@ endfunction
|
||||||
" Function: s:create_last_session_link {{{1
|
" Function: s:create_last_session_link {{{1
|
||||||
function! s:create_last_session_link(spath)
|
function! s:create_last_session_link(spath)
|
||||||
if !has('win32') && a:spath !~# '__LAST__$'
|
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__')
|
\ .' && ln -sf '. shellescape(fnamemodify(a:spath, ':t')) .' __LAST__')
|
||||||
if v:shell_error
|
if v:shell_error
|
||||||
echohl WarningMsg
|
|
||||||
echomsg "startify: Can't create 'last used session' symlink."
|
echomsg "startify: Can't create 'last used session' symlink."
|
||||||
echohl NONE
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
Loading…
Reference in a new issue