Aptana 3格式的phtml文件

时间:2011-08-18 07:09:02

标签: aptana php

我已经使用了aptana一段时间了,我有一个小问题,因为它让我发疯。如果首选项选项中没有选项(Windows-> Preferences-> Aptana studio-> Formmatter),则可以重新编码formmat规则。

我想重新编码.phtml文件的格式规则,以获得简单的<?php ... ?>标记规则。每次使用autoformat .phtml文件时,“tag”?>都会添加一行。我不想要那个新行,我希望它与初始标记保持同一行。

如果我在.phtml文件中写这样的东西:

<?php if ($this->x > 10) : ?>
   <p> It is not greater than 10 </p>
<?php else : ?>
   <p> It is greater than 10 </p>
<?php endif : ?>

并做autoformat,autoformat返回:

<?php if ($this->x > 10) : 
?>
<p> It is not greater than 10 </p>
<?php else : 
?>
<p> It is greater than 10 </p>
<?php endif : 
?>

我希望你能理解我的问题。任何人如何重新编码格式规则或向我显示我可以说的选项,不要在?>标记中添加新行。

提前致谢。

Pd积。 如果我有一些语法错误,请原谅,因为我必须用英语写一段时间。

1 个答案:

答案 0 :(得分:3)

目前的格式化程序功能尚不可能。但是,我在http://jira.appcelerator.org/browse/APSTUD-3340创建了一个问题,非常欢迎您将自己添加为观察者,因此您会收到通知。

主要问题是当前格式化程序按分区工作,而不是整个查看整个内容。

干杯