How can I effectively work with the leksah haskell IDE? For a start, I am very thankful for all the work that the leksah people put in. It's great!
However, I have trouble working effectively in leksah.
mymain :: IO ()
mymain = do
myData <- getMyData
...
...
How can I show the type of some variable in a do-expression, like myData
? When I right click on it and then go to type, the error message gets <interactive>:1:1: Not in scope: 'myData'
. Also after I do something with ghci in leksah, build (CtrlB) no longer compiles my project but suddenly does something else.
How can I effectively use leksah in general and especially concerning ghci in leksah (like display a type of something that is not toplevel but nested)? What are the top 5 things you would suggest?