summaryrefslogtreecommitdiff
path: root/ale_linters/java
diff options
context:
space:
mode:
authorHoracio Sanson <horacio@allm.net>2018-12-05 21:27:02 +0900
committerHoracio Sanson <horacio@allm.net>2018-12-05 21:53:39 +0900
commit3346b200bf6c3cb06359f3f0100d97559e707ddb (patch)
tree909591c0c36cc15138b01bb8cc6fd6c89e0735bf /ale_linters/java
parent92668b6beb9462f46b9e5d0126a33ee46dcb49cf (diff)
downloadale-3346b200bf6c3cb06359f3f0100d97559e707ddb.zip
Fix javalsp command.
The command used to invoke the LSP process was being escaped wrong. Also added a new option to set a different java executable and fixed the documentation.
Diffstat (limited to 'ale_linters/java')
-rw-r--r--ale_linters/java/javalsp.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/ale_linters/java/javalsp.vim b/ale_linters/java/javalsp.vim
index 5d1a0c63..1436a52c 100644
--- a/ale_linters/java/javalsp.vim
+++ b/ale_linters/java/javalsp.vim
@@ -2,15 +2,17 @@
" Description: Support for the Java language server https://github.com/georgewfraser/vscode-javac
call ale#Set('java_javalsp_jar', 'javacs.jar')
+call ale#Set('java_javalsp_executable', 'java')
function! ale_linters#java#javalsp#Executable(buffer) abort
- return 'java'
+ return ale#Var(a:buffer, 'java_javalsp_executable')
endfunction
function! ale_linters#java#javalsp#Command(buffer) abort
let l:jar = ale#Var(a:buffer, 'java_javalsp_jar')
+ let l:executable = ale_linters#java#javalsp#Executable(a:buffer)
- return ale#Escape('java -cp ' . l:jar . ' -Xverify:none org.javacs.Main')
+ return ale#Escape(l:executable) . ' -cp ' . l:jar . ' -Xverify:none org.javacs.Main'
endfunction
call ale#linter#Define('java', {