Drew Vogel
Drew Vogel
FWIW I was able to build using openjdk-11 on debian. I happened to have `javah` on my `PATH` from an openjdk-8 install. This was an accident -- didn't realize I...
I've managed to make the project compile with openjdk-11 on debian in this branch: https://github.com/dvogel/java-gnome/tree/jdk-11. I don't use java a lot so I'm less familiar with the other build tools...
As one of the foremost projects for vim colorschemes, I'd love to get your feedback on [a patch I've submitted to vim](https://github.com/vim/vim/pull/8502) for making color names easier to deal with....
The motivating example is from the Codecademy lesson where we tell people to search the text.json endpoint by date but the text.json documentation lacks a list of valid sort values.
> I am getting following error during starting server at ubuntu: > > /home/ubuntu/jls/java-language-server/dist/launch_linux.sh: 13: /home/ubuntu/jls/java-language-server/dist/linux/bin/java: Exec format error @amitbkumar it seems you're running this on a machine that does...
@Mythra this project packages it's own JDK with a limited set of modules. See `scripts/link_linux.sh` for more details. The language server is intended to be run using that java runtime....
[Here's a repo with an extremely simple repro case](https://github.com/dvogel/jls-lombok-repro) if anyone is interested in digging into this issue. With the current java-language-server configured w/ vim:  Once...
Turning on annotation processing in the compilation stage (by omitting `-proc:none` from the compiler options) confronts a conflict I'm unsure how to resolve. The [`JavaCompilerService#compile`](https://github.com/georgewfraser/java-language-server/blob/master/src/main/java/org/javacs/JavaCompilerService.java#L348) method accommodates multiple sources files....
I'm pretty sure this is an issue with the way this language server is packaged. From your description, you ran the [scripts/link_linux.sh](https://github.com/georgewfraser/java-language-server/blob/master/scripts/link_linux.sh#L14) script as expected. That produces a slimmed down...
This is a case where the formatter is being stricter than the [documented style rules](https://google.github.io/styleguide/javaguide.html#s4.8.5-annotations). Essentially changing _may_ to _must_ in this exception: > Exception: A single parameterless annotation may...