IntelliJ hace un formato extraño con código Javascript y estoy tratando de descubrir cómo hacer que deje de formatear de esta manera. Cada vez que encadena funciones jQuery juntas, sangra el código creado automáticamente como este:
$('#something').focus(function() {
/* Do some stuff */
}).blur(function() {
/* this is where the cursor and closing braces end up */
})
Quiero que se vea así:
$('#something').focus(function() {
/* Do some stuff */
}).blur(function() {
/* cursor and closing braces indented normally */
});
¿Cómo cambio esto?