Avoid Press-ENTER prompt on system()
Fixes https://github.com/mhinz/vim-startify/issues/460
This commit is contained in:
parent
85ca0a103b
commit
d663f4db7a
|
@ -1054,7 +1054,7 @@ function! s:create_last_session_link(session_path)
|
||||||
let cmd = printf('ln -sf %s %s',
|
let cmd = printf('ln -sf %s %s',
|
||||||
\ shellescape(fnamemodify(a:session_path, ':t')),
|
\ shellescape(fnamemodify(a:session_path, ':t')),
|
||||||
\ shellescape(s:session_dir .'/__LAST__'))
|
\ shellescape(s:session_dir .'/__LAST__'))
|
||||||
call system(cmd)
|
silent call system(cmd)
|
||||||
if v:shell_error
|
if v:shell_error
|
||||||
call s:warn("Can't create 'last used session' symlink.")
|
call s:warn("Can't create 'last used session' symlink.")
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue