JuliaFormatter.jl icon indicating copy to clipboard operation
JuliaFormatter.jl copied to clipboard

Index into matrix from function call

Open atbug opened this issue 1 year ago • 0 comments

I (and probably most people) would prefer

eigvecs(
    a_matrix_with_a_very_very_very_very_very_very_very_very_very_very_very_very_very_very_very_very_long_name
)[:, 1:n]

over

eigvecs(
    a_matrix_with_a_very_very_very_very_very_very_very_very_very_very_very_very_very_very_very_very_long_name
)[
    :,
    1:n
]

Is there anyway to enforce the first formatting?

atbug avatar Jan 05 '24 05:01 atbug