I installed eclim and started running the eclipse headless server, as I was coding with Vim
Now i went to vim, and typed this,
:PingEclim
It displays this,
eclim 2.4.1
eclipse 4.4.0
Then i did a validation too,
:EclimValidate
and it give the right output,
Result: OK, required settings are valid.
But then when i try using its autocompletion feature, by say this
System.<ctl + x><ctl + u>
It does absolutely nothing. No code completion occurs.
I need help, as to why it is not working,
my classpath file for java project is this,
<?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 was just getting used to eclim so the java class code is this
package org.test;
public class TestMain
{
public static final void main(String[] args) {
System. // I am just not able to get any autocompletion after that .
}
}
My project tree is this,
.
|-- bin
| `-- org
| `-- test
| `-- TestMain.class
`-- src
`-- java
`-- org
`-- test
|-- TestMain.java
`-- TestMain.java~