With Eclipse, in a PHP project with SVN, how to "tell" Eclipse to find autocompletion choice only in the current trunk or branch?
Using Eclipse on a PHP Project, I recently created a 开发者_开发百科tag on my SVN. Since that day, let's say I'm working on a class in my trunk, when I ctrl+space in my code, Eclipse is getting really really slow (sometimes even freeze), and if I'm lucky, it will give me 2 responses for autocompletion : One referencing some method/class from the tag, one referencing method/class from the trunk. But right now, only the reference from the trunk would be useful for me.
Is there a way to limit where Eclipse parse the code to give back autocompletion suggestion?
Thank you
This sounds like you have both versions of the project open in the workspace. Close one of them and it should work as expected.
I'd be really surprised if Eclipse would checkout a different version of your code from SVN for autocompletion.
精彩评论