我正在使用
Eclipse Indigo 3.7.0和PDT进行
PHP开发.
当我复制/粘贴一些代码时,Eclipse会自动对其进行格式化.
原文链接:https://www.f2er.com/php/133744.html当我复制/粘贴一些代码时,Eclipse会自动对其进行格式化.
例如,复制此:
if ($distance > 50 && $distance <= 100) {$local_score = 8;} if ($distance > 100 && $distance <= 200) {$local_score = 6;}
粘贴在这个:
if ($distance > 50 && $distance <= 100) { $local_score = 8; } if ($distance > 100 && $distance <= 200) { $local_score = 6; }
有关如何禁用此功能的任何想法?
最好的祝福.