I have been using Eclipse and CDT for some months but one month ago I set EGit for git integration. Since this moment I lost autocompleting, error highlighting... Now my Eclipse is like a simple text editor =(.
I have readed in Internet and it seems to be usual... but all info is too old =(.
Anyone has EGit with all funcionality? How can I fix it?
Thank you so much =)
EDIT: The info I saw http://www.eclipse.org/forums/index.php/t/366374/
EDIT2: The Konstantin Komissarchik solution works for me: take a .project file from a copy of your project and copy to the actual .project the differences. In my case these was
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.core.ccnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
Thank you so much!