Using | for cursor:
1.
let thingy :: M.Map String String
thingy = |asdf
- press enter, to line break
- end up with this
let thingy :: M.Map String String
thingy =
as|df
but expected this
let thingy :: M.Map String String
thingy =
|asdf
I'm suspecting that you're using 4 space indentation, and I'm using 2 space indentation?
Using | for cursor:
1.
but expected this
I'm suspecting that you're using 4 space indentation, and I'm using 2 space indentation?