I've been using Dreamweaver for quite some time now. Though I hate the fact that it hogs a good chunk of my resources, no other editor can compete with it's features (that I've used anyway). One feature that I would like this thing to have is recognition of custom made php functions.
Like if you have a page such as these:
index.php
Code: Select all
<?php
include "./inc.php";
$var = 1;
echo customfunction($var);
?>Code: Select all
<?php
function customfunction($var)
{
$var = $var + 1;
return $var;
}
?>Is there a setting that will enable this some where in this prog? I've searched around with no luck.