Leksah is a Haskell IDE written in Haskell
3
votes
1answer
105 views
When I press the space bar in the Leksah source editor, nothing happens. What packages do I lack?
I'm going to retry learning Haskell again... So I apt-get installed leksah, ghc, quickcheck, and cabal-install. It didn't work right from the start, this is why I had to install cabal-install and ...
3
votes
1answer
140 views
Is it possible to have Leksah use a cabal-dev environment for it's workspace?
I'm trying to make sure I don't enter dependency hell by using cabal-dev and I'm also trying to use leksah for my IDE. However, when adding packages to the local workspace in leksah, it build and ...
4
votes
1answer
117 views
Leksah without main
Is there a way to program in Leksah without creating a main function/module, to test small functions and programns, for example? Can't I just creat a new module and use it?
Thank you
2
votes
0answers
105 views
How can I get Leksah's candy to render properly in OS X?
The Leksah IDE for Haskell has an interesting "candy" feature which renders certain operators like == as special symbols (a triple equals sign in this case). On OS X (Mountain Lion, 10.8.2, if it ...
0
votes
1answer
311 views
Can't install gtk-mac-integration
I don't understand the error because it appears to be requiring a version of the same package that I'm trying to install.
$ cabal install gtk-mac-integration
Resolving dependencies...
[1 of 2] ...
5
votes
0answers
177 views
Leksah: automatically build and/or reinstall dependencies when changed
I'm going to work on a project where I will need to work on both the dependencies and the dependent project at the same time. I have arranged it so that the dependencies lies in separate repos side by ...
0
votes
1answer
158 views
getDataFileName returns a non-existent directory
I can't get data files to be packaged up in a cabal dist. The directory that is produced with getDataFileName doesn't exist after installing the package.
Main.hs:
module Main (
main
) where
...
1
vote
1answer
151 views
importing lib in haskell after installing with cabal
Excuse the simplicity of this question, but I didn't find another question that addressed my issue. I have installed haskell and leksah, then performed "cabal install nat" to install the natural ...
0
votes
1answer
233 views
turn off warning in leksah
For a good reason, I want to temporally turn of the warnings about the missing type level signature in the leksah IDE.
I changed the flags to ghc cabal file and the warnings are absent when I run ...
11
votes
2answers
839 views
Does Leksah have hlint, hoogle integration?
Does leksah support any kind of plugins? Will it? Does it have any plugins built in, such as hlint, hoogle, pl, djinn? If not, is there an easy way to integrate these things?
22
votes
3answers
382 views
How to 'go to definition' for user defined function in Leksah?
I can do this for system functions like const by selecting it, right clicking and choosing search(metadata). The same does not work for user defined functions.
How do you do such a search?
If it is ...
3
votes
3answers
339 views
Using Leksah debugger with programs that use readLn and similar
I recently installed Leksah (0.10.0.4 on Windows 7 64 bit), which seems like an interesting IDE for Haskell. However, I am clearly overlooking something when it comes to user input to programs when ...
2
votes
1answer
260 views
Getting Leksah working on Mac OS X 10.5.8
I'm using Mac OS X 10.5.8. Another question indicated that Leksah is the IDE of choice for Haskell development.
However, Leksah (version 0.10.0.4) requires GHC 7.0.3 (problems with 6.12.2, problems ...
11
votes
3answers
825 views
How could I remove the “if … then … else …” keywords in Haskell (GHC)?
I would like to remove the if ... then ... else ... keywords, because I am embedding a language/DSL in Haskell. if, then and else convey a lot of meaning in many domains, and it would be great if I ...
4
votes
2answers
129 views
TCP works in GHCi, buffered until program exit in program compiled with Leksah
I wrote this simple prototype client to send commands to a server I'm developing. It works perfectly running in GHCi, but the compiled version buffers everything typed in until I type in "quit" and ...
7
votes
1answer
461 views
Why is the Haddock documentation not showing up on Hackage?
I've got a package on Hackage that has haddock generated documentation but it isn't showing up on the Hackage page. I'm able to upload everything successfully but the documentation doesn't show up.
I ...
1
vote
1answer
1k views
Leksah system scope module browser is empty
I have just installed leksah following the user manual. The manual says that I should do a ghc-pkg recache before starting Leksah for the first time, or I might see an empty module browser at the ...
3
votes
1answer
450 views
How to include hackage packages into Leksah
I wanted to start playing with hExpat for Xml I/O with Haskell.
However I didn't manage to find where to express to Leksah that I want to import that package into my current module.
Could you tell me ...
2
votes
1answer
261 views
organize an haskell package between several files
again a total newbie question from me about Haskell, and Leskah.
(First, a subjective compliment for Haskell lovers: at each come back for a learning session of Haskell I like it more and more. I ...
5
votes
3answers
2k views
haskell leksah hello-world
bad news this morning, I was willing to try and use Leksah (nice looking application by the way) for continuing learning haskell.
I couldnt compile the "Hello World" example I found reading the ...
4
votes
2answers
1k views
Importing Haskell modules
I'm new to Haskell. How come when I try to use Days from Data.Time I get this error:
Could not find module `Data.Time':
It is a member of the hidden package `time-1.1.4'.
Perhaps you ...
