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.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It's not possible (yet) with the current formatter capabilities. However, I've created an issue for that at http://jira.appcelerator.org/browse/APSTUD-3340 and you are more than welcome to add yourself as a watcher, so you will get notified.

That main problem is that the current formatter works partition-by-partition, and not by looking at the entire content as a whole.

Cheers

link|improve this answer
Sorry for the late post. Thanks for your answer, and be sure i will watch the issue. – Tolke Aug 24 '11 at 6:41
No problem :) This one might be a little tricky to implement, but I hope we'll come up with a good solution. – sgibly Aug 24 '11 at 20:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.