I installed eclim and started to run the mute eclipse server as I encoded Vim
Now I went to vim and typed this,
:PingEclim
He displays it,
eclim 2.4.1 eclipse 4.4.0
Then I did a check,
:EclimValidate
and he gives the right exit,
Result: OK, required settings are valid.
But then when I try to use its autocomplete function, let's say this
System.<ctl + x><ctl + u>
Does absolutely nothing. Code execution is not executed.
I need help why it doesnβt work,
My classpath file for java project is
<?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src/java"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> </classpath>
I'm just used to eclim, so the java class code is
package org.test; public class TestMain { public static final void main(String[] args) { System.
This is a project tree,
. |-- bin | `-- org | `-- test | `-- TestMain.class `-- src `-- java `-- org `-- test |-- TestMain.java `-- TestMain.java~
source share