atom-alignment icon indicating copy to clipboard operation
atom-alignment copied to clipboard

Multi-char operators are split by spaces

Open baggepinnen opened this issue 7 years ago • 0 comments

        Axz .= Ax .- z
        u       .+= Axz

should align as

        Axz  .= Ax .- z
        u   .+= Axz

but aligns as

        Axz . = Ax .- z
        u .+  = Axz

The important thing here is the breaking of the oerators .= and .+= My "align by" settings are .+=, . -=, .*=, ./=, +=, -=, *=, /=, =, # and "alignment space chars" is empty

lanuage-julia if that is important. atom-alignment 0.13.0

baggepinnen avatar Aug 10 '17 05:08 baggepinnen