mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 09:20:06 +08:00
fix(jc2): fix jc2 classpath
This commit is contained in:
parent
6f96cce5e5
commit
49e0e52d51
@ -50,9 +50,12 @@ function! s:BuildClassPath(force)
|
|||||||
endif
|
endif
|
||||||
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)
|
call s:Log("libs found: ". g:JavaComplete_LibsPath)
|
||||||
|
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:ReadClassPathFile(classpathFile)
|
function! s:ReadClassPathFile(classpathFile)
|
||||||
|
Loading…
Reference in New Issue
Block a user