如何在粘贴时禁用 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;
}
关于如何禁用此功能的任何想法? 此致。
I'm using Eclipse Indigo 3.7.0 with PDT for PHP develpment.
When I copy/paste some code, Eclipse automatically format it.
For example, copying this :
if ($distance > 50 && $distance <= 100) {$local_score = 8;}
if ($distance > 100 && $distance <= 200) {$local_score = 6;}
Is pasted in this :
if ($distance > 50 && $distance <= 100) {
$local_score = 8;
}
if ($distance > 100 && $distance <= 200) {
$local_score = 6;
}
Any idea on how to disable this ?
Best Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实在是太糟糕了...
试试这个。
使用文本编辑器打开workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.php.ui.prefs。
添加“smartPaste=true”。
(请注意,我不知道副作用)
It's really bad...
Try this.
Open workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.php.ui.prefs by your text editor.
Add "smartPaste=true".
(note that I'm not aware of side effect)