summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2019-06-10 19:15:15 +0100
committerGitHub <noreply@github.com>2019-06-10 19:15:15 +0100
commit1ba1a9ef0e0d6ea9331498dd84196de3e494e4a0 (patch)
tree4fb7772a77576033b40dd04f04dc7b40483e3bab /doc
parentfea666bd27a0e2eb41868f30ae23121c72f4fe65 (diff)
parente84c9b300b521134ed3d37b8d59beff8b83ae61e (diff)
downloadale-1ba1a9ef0e0d6ea9331498dd84196de3e494e4a0.zip
Merge pull request #2558 from hsanson/fix-javalsp-command-callback
Fix javalsp command callback.
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-java.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/ale-java.txt b/doc/ale-java.txt
index 65d2299b..a563f1fb 100644
--- a/doc/ale-java.txt
+++ b/doc/ale-java.txt
@@ -117,16 +117,19 @@ or
This generates a dist/mac or dist/windows directory that contains the
language server. To let ALE use this language server you need to set the
-g:ale_java_javalsp_executable variable to the absolute path of the java
+g:ale_java_javalsp_executable variable to the absolute path of the launcher
executable in this directory.
g:ale_java_javalsp_executable *g:ale_java_javalsp_executable*
*b:ale_java_javalsp_executable*
Type: |String|
- Default: `'java'`
-
-This variable can be changed to use a different executable for java.
+ Default: `'launcher'`
+This variable must be set to the absolute path of the language server launcher
+executable. For example:
+>
+ let g:ale_java_javalsp_executable=/java-language-server/dist/mac/bin/launcher
+<
===============================================================================
eclipselsp *ale-java-eclipselsp*