IntelliJ对Javascript代码进行了一些奇怪的格式化,而我正在尝试弄清楚如何使其停止格式化。每当我将jQuery函数链接在一起时,它就会缩进自动创建的代码,例如:
$('#something').focus(function() {
/* Do some stuff */
}).blur(function() {
/* this is where the cursor and closing braces end up */
})
我希望它看起来像这样:
$('#something').focus(function() {
/* Do some stuff */
}).blur(function() {
/* cursor and closing braces indented normally */
});
我该如何更改?
此处的修复程序对我不起作用,因此我联系了捷脑,他们开了个问题。请在这里投票:youtrack.jetbrains.com/issue/WEB-15066
—
JonnyRaa'2