I am looking for a function helping indenting imports. I noticed following pattern.
Origin file:
import A.B.C (x, y, z)
Result file:
import qualified A.B.C (x, y, z)
import Z.X.Y (a, b, c)
After typing import I need to insert arbitrary number of spaces to align Z.X.Y with A.B.C and parenthesis expressions with line above. Doing this manually is tedious.
I could spend a day to write such function, but I bet it must be already implemented by somebody.