For example, if I have some JavaScript code like this:
var widget = library()
.chainCall1()
.chainCall2()
.chainCall3();
If I use the = command to auto indent it, it comes out looking this this:
var widget = library()
.chainCall1()
.chainCall2()
.chainCall3();
Which isn't what I want. I want it to indent the chain calls like it originally was. How can I fix this?
.chainCall2(), it indents thevarline to match.chainCall1()=o_0= – Izkata Feb 05 '15 at 00:26