i've been using aptana for a while now, and i have a little question because it is driving me mad. It is possible to recode formmat rules if there is no option in the preferences options (Windows->Preferences->Aptana studio->Formmatter).
I want to recode format rules of .phtml files for a simple rule, <?php ... ?> tag. Everytime i autoformat .phtml files, the "tag" ?> adds a line. I do not want that new line, i want it keep at the same line as the initial tag.
if i write in a .phtml file something like this:
<?php if ($this->x > 10) : ?>
<p> It is not greater than 10 </p>
<?php else : ?>
<p> It is greater than 10 </p>
<?php endif : ?>
and do autoformat, the autoformat return this:
<?php if ($this->x > 10) :
?>
<p> It is not greater than 10 </p>
<?php else :
?>
<p> It is greater than 10 </p>
<?php endif :
?>
I hope you can understand my question. How can anybody recode a format rule or show me the option where i can say do not add a new line in ?> tag.
Thanks in advance.
P.D. Excuse if i have some grammars errors, if been a while since i have to write in english.