Avoid Press-ENTER prompt on system()

Fixes https://github.com/mhinz/vim-startify/issues/460
This commit is contained in:
Marco Hinz 2021-03-13 19:58:33 +01:00
parent 85ca0a103b
commit d663f4db7a
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -1054,7 +1054,7 @@ function! s:create_last_session_link(session_path)
let cmd = printf('ln -sf %s %s',
\ shellescape(fnamemodify(a:session_path, ':t')),
\ shellescape(s:session_dir .'/__LAST__'))
call system(cmd)
silent call system(cmd)
if v:shell_error
call s:warn("Can't create 'last used session' symlink.")
endif