Open
Description
With a function call such as this:
call(arg1,
arg2)
oops()
function() {
'everything indented'
}
or
call(
arg1,
arg2)
oops()
function() {
'everything indented'
}
The auto indentation with =
adds indentation to everything coming after that call. I would expect oops
and everything after to not be indented.
Thanks