Eclipse JSF 编辑器配置
当我在 Eclipse (Indigo) 中格式化 JSF 标记时,我发现相当短的代码行被分成了更多行。
让我用一个例子来解释这个问题,看看下面的标记:
bgcolor="<h:outputText
value="#{formBean.colorPreferences.background}"/>"
text="<h:outputText
value="#{formBean.colorPreferences.foreground}"/>
上面的标记已分成 4 行(格式化后),但是,我更喜欢格式化的标记如下:
bgcolor="<h:outputText value="#{formBean.colorPreferences.background}"/>"
text="<h:outputText value="#{formBean.colorPreferences.foreground}"/>
有没有办法配置 Eclipse 编辑器根据我的喜好?
When I format my JSF markup in Eclipse (Indigo), I observed that fairly short lines of codes are broken into more lines.
Let me explain this issue using an example, just look at the following markup:
bgcolor="<h:outputText
value="#{formBean.colorPreferences.background}"/>"
text="<h:outputText
value="#{formBean.colorPreferences.foreground}"/>
The above markup has been broken into 4 lines (after formatting) but, I prefer the formatted markup to be as follows:
bgcolor="<h:outputText value="#{formBean.colorPreferences.background}"/>"
text="<h:outputText value="#{formBean.colorPreferences.foreground}"/>
Is there any way to configure the Eclipse editor according to my preference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您只需将您感兴趣的文件类型的线宽更改为您想要的任何值:
并将“线宽”设置为您想要的任何值。
Yes, you just need to change the line width for the file type you're interested in to whatever you want:
And set Line width to whatever you'd like.