The haskeline tag has no wiki summary.
8
votes
1answer
64 views
Updating outputted text in haskeline
Haskeline provides the functions outputStr and outputStrLn, which output to stdout, but is there a way to update text that's already been outputted? I'm thinking of, for example, when an installer ...
5
votes
1answer
158 views
calling network IO from within haskeline
I have an existing program which takes command line arguments (username, password, date) and then uses the Network.HTTP.Conduit library to post an xml message to a server. I then parse the results, do ...
0
votes
1answer
805 views
cabal-install-0.10.2 failed during the building phase
I was trying to install haskeline, it's my first time installing using cabal, and here is what I got. What should I do?
. sudo cabal install haskeline
Password:
Config file /Users/arie/.cabal/config ...
14
votes
1answer
534 views
Haskell (haskeline) word completion
Haskeline makes it very easy to get filename tab-completion functionality:
module Main where
import System.Console.Haskeline
import System.Environment
mySettings :: Settings IO
mySettings = ...
1
vote
0answers
98 views
“readline” (or “haskeline”) for Curry?
What's the most practical way to write a program in Curry programming language that would have a console UI with decent line editing?
Actually, I need to pass a string as a suggestion for the user's ...
4
votes
2answers
321 views
Haskell Best Practise: Early termination in Haskeline
I am using the Haskeline package and I want to get three strings in a row from the command line before I do anything and I have come up with what seems to be a neat solution to me. But I am sure that ...
9
votes
1answer
149 views
How to make ghci support ^p to go up?
I use Ctrl p a lot instead of up arrow to go up on Terminal. How to make ghci support Ctrl p to go up?
I use ghci from ghc98 from port. Mac OS X 10.5.8.
