VIM for PHP 自动格式化
我希望能够采用以下代码
if ($something) { do something }
并使其
if ($somthing) { do something }
贯穿整个文件,而无需真正查看每个语句并更正它。我不是正则表达式专家,因此任何帮助将不胜感激:)
I want to be able to take the following code
if ($something) { do something }
and make it
if ($somthing) { do something }
through out a whole file without really going to each statement and correcting it. I am not a regex guru so any help would be appreciated :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PEAR 的 PHP_Beautifier 重新格式化您的代码。
Use PEAR's PHP_Beautifier to reformat your code.
您可以:
搜索包含
if
但不以{
结尾的行:<前><代码>/if [^{]*$
将此行与下一行连接起来:
<前><代码>J
您可以将此序列映射到某些内容:
以便每次按 F2 都会更改下一个 if 实例 (100F2 将更改 100 个实例,依此类推)。
You can:
Search for a line that contains
if
but doesn't end in{
:Join this line with the next one:
You can map this sequence to something:
so that every F2 press will change the next if instance (100F2 will change 100 instances and so on).