How to tell eclipse to not format parts of a codefile (pressing Strg + Shift + F)(如何告诉 Eclipse 不格式化代码文件的一部分(按 Strg + Shift + F))
问题描述
我真的很喜欢 autofromat 功能.我让你的代码更具可读性,如果 JavaScript 会告诉你什么时候出现语法错误(缺少括号等).
I really love the autofromat feature. I makes your code more readable and in case of JavaScript tells you, when there are synatcs errors (missing brackets etc.).
但有时格式会使代码更难阅读.例如当它将长数组初始化放入一行时.在那种情况下,我不希望他格式化它,而是让它提供多行.例如
However sometimes the formatting makes the code harder to read. e.g. when it puts a long array inizalisation into a single line. In that case I don't want him to format it, but rather leave it ofer multiple lines. E.g.
define([
'jquery',
'aloha',
'aloha/plugin',
'ui/ui',
'ui/scopes',
'ui/button',
'ui/toggleButton',
'ui/port-helper-attribute-field',
'ui/text'
// 'css!youtube/css/youtube.css'
],
function(
$,
Aloha,
Plugin,
Ui,
Scopes,
Button,
ToggleButton,
AttributeField)
{
这个数组应该保持这样,不要变成这样:
this array should stay like this and don't become this:
define(['jquery', 'aloha', 'aloha/plugin', 'ui/ui', 'ui/scopes', 'ui/button', 'ui/toggleButton', 'ui/port-helper-attribute-field', 'ui/text' ], function($, Aloha, Plugin, Ui, Scopes, Button, ToggleButton, AttributeField) {
有没有特殊的标签,告诉eclipse不要格式化代码?
Is there a special tag, to tell eclipse not to format the code?
推荐答案
好的,我花了一些时间才找到正确的设置,所以我将在这里发布一个教程.
OK, it took me some time to find the right setting so I will post a toturial here.
转到窗口首选项并搜索您正在使用的格式化程序.就我而言,它位于Aptana Studia"->格式化程序"下.(取决于您的包,这会有所不同,例如 Java 格式化程序位于Java"->代码样式"->格式化程序"下).
Go to Window Preferences and Search the Formatter you are using. In my case it was under 'Aptana Studia' -> 'Formatter'. (Depending on your Package this differs, e.g. the Java Formatter is under 'Java' -> 'Code Style' -> 'Formater').
现在创建一个新的构建配置文件,因为您无法覆盖旧配置文件.
Noww create a new Build profile since you can't override the old one.
现在启用格式化程序标签.
Now enable the Formatter tags.
现在你可以使用
- @formatter:on
- @formatter:off
用于禁用代码格式化的标签.
tags to disable code formatting.
示例:这段代码:
function hello() { return 'hello';
}
//@formatter:off
/*
| _,,,---,,_
/,`.-'`' -. ;-;;,_
|,4- ) )-,_..; ( `'-'
'---''(_/--' `-'\_) fL
*/
//@formatter:on
function
world() {
return 'world';
}
会被格式化成这样
function hello() {
return 'hello';
}
//@formatter:off
/*
| _,,,---,,_
/,`.-'`' -. ;-;;,_
|,4- ) )-,_..; ( `'-'
'---''(_/--' `-'\_) fL
*/
//@formatter:on
function world() {
return 'world';
}
注意函数定义的格式是正确的,而 ascii 艺术不是
Note how the function definition is formatted correct, while the ascii art isn't
学分:
- Katja Christiansen 发表评论
- https://stackoverflow.com/a/3353765/639035:类似的答案
- Katja Christiansen for his comment
- https://stackoverflow.com/a/3353765/639035 : for a similar answer
这篇关于如何告诉 Eclipse 不格式化代码文件的一部分(按 Strg + Shift + F)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何告诉 Eclipse 不格式化代码文件的一部分(按 Strg + Shift + F)
基础教程推荐
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01