-
The default command used to compile javavi when maven is available does not work:
```
!mvn -f "/home/ryujin/.vim/bundle/vim-javacomplete2/libs/javavi/" compile
```
I had to compile manually using:
…
-
```
public class Foo {
public Foo() {
Arrays.stream();
}
}
```
It should add `import java.util.Arrays;` I think.
mattn updated
9 years ago
-
When start completion with `` on `System.o`.
Only off_t is displayed.
![](http://go-gyazo.appspot.com/ffbe508b2c10bab9.png)
mattn updated
9 years ago
-
Either I get no suggestions or suggestions that have nothing to do with the object. For example when typing "a" one expects something like "add()" but instead I get all of these suggestions. Add was n…
ghost updated
9 years ago
-
Hello,
Thanks for the awesome work so far - I am really enjoying this plugin. I was wondering if you have considered supporting [Neovim](https://github.com/neovim/neovim)? Currently when I try and us…