Javascript Eclipse 对象属性的缩进问题
好吧,我的 eclipse/javascript 有问题。对象属性内部的标识是 8 个空格,这让我很生气。我希望它是 4 个空格。我需要改变什么才能解决这个问题?我希望 Eclipse 将其格式化为“b”。
var a = {
t: 'Hi'
};
var b = {
t: 'Hi'
};
提前致谢。
Ok, I have a problem with eclipse/javascript. The identation inside of an object property is 8 spaces and it pisses me off. I want it to be 4 spaces. What do I need to change in order to fix that? I want eclipse to format it like "b".
var a = {
t: 'Hi'
};
var b = {
t: 'Hi'
};
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Eclipse Indigo(用于 J2EE)
然后编辑...
Eclipse Indigo (for J2EE)
then Edit...
我有同样的问题(也适用于数组)。
唯一对我有用的是禁用智能插入模式(CTRL + Shift + Insert)来缩进第一个属性,然后如果您再次启用它,它应该可以正常工作。
I have the same problem (also for Array).
The only thing that works for me is to disable the Smart Insert Mode (CTRL + Shift + Insert) to indent the first property, then if you enable it again it should be working properly.
我想你想检查你的 Javascript 格式化程序。
转到“窗口”->“首选项”,然后在搜索框中键入“Formatter”。从那里您可以修改特定语言的代码样式。
I think you want to check your Javascript formatter.
Go to Window->Preferences and type "Formatter" in the search box. From there you can modify the code style for specific languages.