Closed
Description
The haskell-sort-imports.el
is great! It re-orders imported modules according to their namespace. What would also be great is the ability to re-order the imported functions from a module E.g.
import Data.Text (pack)
import Data.Map (null,member)
would be re-ordered, both in module namespaces and with function names as:
import Data.Map (member,null)
import Data.Text (pack)