julia-emacs
julia-emacs copied to clipboard
Indentation of map do statement
When writing a map-do statement, indentation is correct:
map(1:3) do x
x
end
However, if writing this in a function call yields
f(
map(1:3) do x
x
end
)
where the statements inside the do-block is on the same level as map
. Shouldn't it be like the following?
f(
map(1:3) do x
x
end
)
I think this is a dup of #11, but will keep it open to see if fixing that closes it.