summaryrefslogtreecommitdiff
path: root/.ghci
blob: 5268317ccec7e90f65ffa5305cfc984ce74ff7c2 (plain)
1
2
3
4
5
6
7
8
-- for use with ghci-ng
-- :set +c

-- set the prompt
:set prompt "ghci> "

-- after install haskell-docs, can now type :doc function to get docs on a function
:def doc \input -> return (":!haskell-docs " ++ input)