浏览代码

Don't silence system()

References #243.
Marco Hinz 9 年之前
父节点
当前提交
9732427469
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      autoload/startify.vim

+ 1 - 1
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