瀏覽代碼

Avoid Press-ENTER prompt on system()

Fixes https://github.com/mhinz/vim-startify/issues/460
Marco Hinz 4 年之前
父節點
當前提交
d663f4db7a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      autoload/startify.vim

+ 1 - 1
autoload/startify.vim

@@ -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