Use :lcd when changing to VCS root

This commit is contained in:
Marco Hinz 2019-04-06 16:51:48 +02:00
parent c758d2a79a
commit 26f2ffcdf4
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -901,7 +901,7 @@ function! s:cd_to_vcs_root(path) abort
for vcs in [ '.git', '.hg', '.bzr', '.svn' ]
let root = finddir(vcs, dir .';')
if !empty(root)
execute 'cd '. fnameescape(fnamemodify(root, ':h'))
execute 'lcd' fnameescape(fnamemodify(root, ':h'))
return 1
endif
endfor