1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 00:00:04 +08:00

fix(jc2): fix jc2 classpath

This commit is contained in:
wsdjeg 2022-11-02 11:56:07 +08:00
parent 6f96cce5e5
commit 49e0e52d51

View File

@ -50,9 +50,12 @@ function! s:BuildClassPath(force)
endif
endif
let g:JavaComplete_LibsPath .= s:FindClassPath(a:force)
let found_classpath = s:FindClassPath(a:force)
if found_classpath != '.' || g:JavaComplete_LibsPath != '.'
let g:JavaComplete_LibsPath .= found_classpath
endif
call s:Log("libs found: ". g:JavaComplete_LibsPath)
endfunction
function! s:ReadClassPathFile(classpathFile)