From d663f4db7a572f9a56c39ae17801a5a7eae81d20 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 13 Mar 2021 19:58:33 +0100 Subject: [PATCH] Avoid Press-ENTER prompt on system() Fixes https://github.com/mhinz/vim-startify/issues/460 --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 9f1934b..411e0de 100644 --- a/autoload/startify.vim +++ b/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