lukexi / stack-ide-sublime

An Sublime Text IDE for Haskell based on stack-ide
27 stars 5 forks source link

in some cases, error pannel no longer work #28

Closed rvion closed 8 years ago

rvion commented 8 years ago

in the picture below, we can see that the bottom pannel is empty:

image

rvion commented 8 years ago

code to reproduce:

module Main where

main :: IO ()
main = do
  putStrLn "hello world"

c = print "tetst" c

b = foldl (+) 0 [0..10]

ping @tomv564 @lukexi

tomv564 commented 8 years ago

Hi Rémi - thanks for the helpful sample. I get an expected error about print's arguments, so I'm not hitting the bug this way.

Could you set "verbosity": "debug" in the SublimeStackIDE settings, load this demo project again, and paste the console log entries here?

rvion commented 8 years ago

It's now working for me too, I guess I did something wrong at that time :)

rvion commented 8 years ago

thanks for having taken the time to test it