diff options
author | Ben Sima <ben@bsima.me> | 2020-04-03 15:45:29 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-03 15:45:29 -0700 |
commit | 2b17d6fc7d5a6cc8220a60b41d13e14e4f007d3d (patch) | |
tree | e4377036e2cc18e4e9d11c2cd32196334833883d /.ghci | |
parent | f8b7d6c4eb9915515f3fecc2843eaab7e48df94d (diff) |
Get ghc with hoogle working (yay!)
Diffstat (limited to '.ghci')
-rw-r--r-- | .ghci | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,3 +4,5 @@ :set -Wall -- ':iq Module M' -> 'import qualified Module as M' :def iq (\arg -> let [x, y] = Prelude.words arg in return $ "import qualified " ++ x ++ " as " ++ y) +:def hoogle \s -> return $ ":! hoogle search --count=15 \"" ++ s ++ "\"" +:def hdoc \s -> return $ ":! hoogle search --info \"" ++ s ++ "\"" |