Open digital-carver opened 3 years ago
Currently, function chaining gets no indent:
myvariable = readline(infile) |> collect |> a -> reshape(a, (9, 9)) |> permutedims
Something like what's below would be preferable, as with function arguments and the other examples mentioned in the docs.
I think the issue is with every infix operator, whereby breaking the line after the operator, simply doesn't indent the line that follows. Not sure if it's the proper style, but it is what I'm used to as well.
Currently, function chaining gets no indent:
Something like what's below would be preferable, as with function arguments and the other examples mentioned in the docs.