I've been using the trial for a week now and it seems great. However, few things puzzles me though.
1) I have a xml file that that contains 99% html (own template-system). Can i change the highlighter somewhere, now the html + js is only black text and it doesnt look very good (= readable).
 	
	
 
<?xml version="1.0" encoding="UTF8"?>
 
<templates>
 
    <template name="TEMPLATE">
 
    <![CDATA[
 
    <a href="#">asdfas</a>
 
    ]]>
 
    </template>
 
</templates>
 
 | 	
 
2) Can i fix the autocompleter to use parent class methods? 
 	
	
 
class parent 
 
{
 
   public function __construct()
 
   {
 
      global $Someclass;
 
      $this->Someclass = &$Someclass;
 
   }
 
}
 
 
class child extends parent 
 
{
 
    public function __construct()
 
   {
 
       parent::__construct();
 
       $this->Someclass->????
 
   }
 
}
 
 | 	
 
Had some other questions also but forgot them already 
