From 295fe7a09a881448eea1aa71d26f53dcda3c499b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 11 Dec 2015 15:51:08 +0100 Subject: [PATCH] Avoid '&&' in system() I assumed that every shell would support '&&'. Apparently this is not the case for Fish: it uses 'and'... Anyway, the simple solution is to avoid cd'ing in the proper directory first and just using absolute paths for ln instead. References #165. --- autoload/startify.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 7705304..945fc8f 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -759,8 +759,10 @@ endfunction " Function: s:create_last_session_link {{{1 function! s:create_last_session_link(spath) if !has('win32') && a:spath !~# '__LAST__$' - silent! call system('cd '. shellescape(s:session_dir) - \ .' && ln -sf '. shellescape(fnamemodify(a:spath, ':t')) .' __LAST__') + let cmd = printf('ln -sf %s %s', + \ shellescape(a:spath), + \ shellescape(fnamemodify(a:spath, ':h') .'/__LAST__')) + silent! call system(cmd) if v:shell_error echomsg "startify: Can't create 'last used session' symlink." endif