I just started using Eclipse PHP.
I finally figured out how to enable code auto-update.
My problem is that when I use require or include, these variables are not displayed in these files.
Example
code1.php
<? $test = 'hi'; ?>
code2.php
<? require('code1.php'); ?>
When I edit code2.php, the $ test variable is not showing in autocomplete (aka code assist)
source
share