Changing to dir and VCS root is not mutually exclusive

If these two options are set..

  g:startify_change_to_vcs_root (0 by default)
  g:startify_change_to_dir      (1 by default)

..try changing to the VCS root first and, if that fails, to the directory of the
current file afterwards.

Fixes https://github.com/mhinz/vim-startify/issues/364
This commit is contained in:
Marco Hinz 2019-04-06 16:11:13 +02:00
parent e4d35cc913
commit c758d2a79a
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -874,9 +874,14 @@ function! s:check_user_options(path) abort
execute 'silent bwipeout' a:path
call startify#session_delete_buffers()
execute 'source' session
elseif get(g:, 'startify_change_to_vcs_root')
call s:cd_to_vcs_root(a:path)
elseif get(g:, 'startify_change_to_dir', 1)
return
endif
if get(g:, 'startify_change_to_vcs_root') && s:cd_to_vcs_root(a:path)
return
endif
if get(g:, 'startify_change_to_dir', 1)
if isdirectory(a:path)
execute 'lcd' a:path
else
@ -897,9 +902,10 @@ function! s:cd_to_vcs_root(path) abort
let root = finddir(vcs, dir .';')
if !empty(root)
execute 'cd '. fnameescape(fnamemodify(root, ':h'))
return
return 1
endif
endfor
return 0
endfunction
" Function: s:close {{{1