mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-10 14:31:52 +08:00
refactor(javac): ale_java_javac_sourcepath variable defaults to String
This commit is contained in:
@@ -6,7 +6,7 @@ let s:classpath_sep = has('unix') ? ':' : ';'
|
|||||||
call ale#Set('java_javac_executable', 'javac')
|
call ale#Set('java_javac_executable', 'javac')
|
||||||
call ale#Set('java_javac_options', '')
|
call ale#Set('java_javac_options', '')
|
||||||
call ale#Set('java_javac_classpath', '')
|
call ale#Set('java_javac_classpath', '')
|
||||||
call ale#Set('java_javac_sourcepath', [])
|
call ale#Set('java_javac_sourcepath', '')
|
||||||
|
|
||||||
function! ale_linters#java#javac#RunWithImportPaths(buffer) abort
|
function! ale_linters#java#javac#RunWithImportPaths(buffer) abort
|
||||||
let l:command = ''
|
let l:command = ''
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ g:ale_java_javac_options *g:ale_java_javac_options*
|
|||||||
g:ale_java_javac_sourcepath *g:ale_java_javac_sourcepath*
|
g:ale_java_javac_sourcepath *g:ale_java_javac_sourcepath*
|
||||||
*b:ale_java_javac_sourcepath*
|
*b:ale_java_javac_sourcepath*
|
||||||
Type: |String| or |List|
|
Type: |String| or |List|
|
||||||
Default: `[]`
|
Default: `''`
|
||||||
|
|
||||||
This variable can set multiple source code paths, the source code path is a
|
This variable can set multiple source code paths, the source code path is a
|
||||||
relative path (relative to the project root directory).
|
relative path (relative to the project root directory).
|
||||||
|
|||||||
Reference in New Issue
Block a user