php – 如何在粘贴时禁用Eclipse PDT自动格式代码

前端之家收集整理的这篇文章主要介绍了php – 如何在粘贴时禁用Eclipse PDT自动格式代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 Eclipse Indigo 3.7.0和PDT进行 PHP开发.
当我复制/粘贴一些代码时,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;
}

有关如何禁用此功能的任何想法?
最好的祝福.

这真的很糟糕……
试试这个.
通过文本编辑器打开工作区/ .Metadata / .plugins / org.eclipse.core.runtime / .settings / org.eclipse.PHP.ui.prefs.
添加“smartPaste = true”.

(注意我不知道副作用)

原文链接:https://www.f2er.com/php/133744.html

猜你在找的PHP相关文章