Fix g:startify_change_to_dir corner cases

References https://github.com/mhinz/vim-startify/issues/283
This commit is contained in:
Marco Hinz 2017-05-07 20:05:38 +02:00
parent 8abaf8ed9f
commit 1e251fb749
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -808,7 +808,16 @@ function! s:check_user_options(path) abort
elseif get(g:, 'startify_change_to_vcs_root')
call s:cd_to_vcs_root(a:path)
elseif get(g:, 'startify_change_to_dir', 1)
execute 'lcd' isdirectory(a:path) ? a:path : fnamemodify(a:path, ':h')
if isdirectory(a:path)
execute 'lcd' a:path
else
let dir = fnamemodify(a:path, ':h')
if isdirectory(dir)
execute 'lcd' dir
else
" Do nothing. E.g. a:path == `scp://foo/bar`
endif
endif
endif
endfunction