Hi, is there any support in TextMate for PHP's Alternate Syntax?

e.g. Regular Syntax:
<?php
if (1 == 1) {
    //Output
}
else {
    //Output
}
?>

e.g. Alternate Syntax:
<?php
if (1 == 1):
    //Output
else:
    //Output
endif;
?>

At the moment, I can't find a way to get code-folding working with the alternate syntax, and I would also like to be able to set TextMate's TAB auto-complete to use the alternate syntax.


Tim Mackey