SublimeHaskell icon indicating copy to clipboard operation
SublimeHaskell copied to clipboard

hsdev: Coloring errors

Open doubleloop opened this issue 11 years ago • 1 comments

Right now I foun 3 small errors:


-- problem1 is not colored as function wherever @ is used
problem1 t@(x,y) = x 

-- let is not colored when in one line"
problem2 = do
   let x = 1
   print x

-- below comment is not colored
data Problem3 = P {
      fun1 :: Int,
      -- fun2 :: Int,
      fun3 :: Int,
   }   

also I think when should be colored (as until is)

doubleloop avatar Feb 03 '15 19:02 doubleloop

Thanks!

mvoidex avatar Feb 03 '15 20:02 mvoidex