mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-13 02:05:40 +08:00
Ignore home directory when find dir (#3923)
This commit is contained in:
parent
ce73df6fc5
commit
4db31814e2
@ -257,8 +257,6 @@ function! s:find_root_directory() abort
|
||||
endif
|
||||
let path_type = getftype(find_path)
|
||||
if ( path_type ==# 'dir' || path_type ==# 'file' )
|
||||
\ && find_path !=# expand('~/.SpaceVim.d/')
|
||||
\ && find_path !=# expand('~/.Rprofile')
|
||||
\ && !s:is_ignored_dir(find_path)
|
||||
let find_path = s:FILE.unify_path(find_path, ':p')
|
||||
if path_type ==# 'dir'
|
||||
@ -266,9 +264,11 @@ function! s:find_root_directory() abort
|
||||
else
|
||||
let dir = s:FILE.unify_path(find_path, ':h')
|
||||
endif
|
||||
if dir !=# s:FILE.unify_path(expand('$HOME'))
|
||||
call s:LOGGER.info(' (' . pattern . '):' . dir)
|
||||
call add(dirs, dir)
|
||||
endif
|
||||
endif
|
||||
endfor
|
||||
return s:sort_dirs(deepcopy(dirs))
|
||||
endfunction
|
||||
|
Loading…
x
Reference in New Issue
Block a user