Feature/add ant support (#2539)

Use ant files to load Java settings too.
This commit is contained in:
Andrew Lee
2019-06-03 12:30:18 -07:00
committed by w0rp
parent a76f056bd9
commit c6a5cbb3c7
8 changed files with 116 additions and 0 deletions

View File

@@ -16,5 +16,11 @@ function! ale#java#FindProjectRoot(buffer) abort
return fnamemodify(l:maven_pom_file, ':h')
endif
let l:ant_root = ale#ant#FindProjectRoot(a:buffer)
if !empty(l:ant_root)
return l:ant_root
endif
return ''
endfunction