Hey,
I found a small bug in the most recent Haskell Bundle. The Load in GHCi command needs 1 line changed from:
do script "clear; cd $(esc "${TM_DIRECTORY}"); ${THASKELL} $ {TM_FILEPATH}"
to
do script "clear; cd $(esc "${TM_DIRECTORY}"); ${THASKELL} '$ {TM_FILEPATH}'"
Otherwise the command fails if you are in a directory that has spaces in its path.
Armon Dadgar