stylish-haskell icon indicating copy to clipboard operation
stylish-haskell copied to clipboard

Spaces are added to imports of operators which start with `#`

Open neongreen opened this issue 7 years ago • 0 comments

The following line

import Foo ((#|), (#%), (|#), (%#))

is formatted by stylish-haskell as follows:

import           Foo (( #% ), ( #| ), (%#), (|#))

This probably has something to do with -XMagicHash, even though -XMagicHash isn't enabled anymore.

neongreen avatar Apr 15 '17 20:04 neongreen