From 9732427469c6933cbedeb7e662c70a2aaf4e63d2 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 31 Oct 2016 22:53:10 +0100 Subject: [PATCH] Don't silence system() References #243. --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 3685576..54baca3 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -863,7 +863,7 @@ function! s:create_last_session_link(spath) let cmd = printf('ln -sf %s %s', \ shellescape(fnamemodify(a:spath, ':t')), \ shellescape(s:session_dir .'/__LAST__')) - silent! call system(cmd) + call system(cmd) if v:shell_error echomsg "startify: Can't create 'last used session' symlink." endif