Closed akrmn closed 4 years ago
The idea here is to extend --allow-eval to allow comments like
--allow-eval
{- $> data Foo = Bar | Baz deriving (Generic, Eq, Ord, Show) <$ -}
to be picked up as commands by ghcid. The effect should be the same as typing
:{ data Foo = Bar | Baz deriving (Generic, Eq, Ord, Show) :}
in a ghci session.
Thanks, looks good. I've released 0.8.7 with this patch.
The idea here is to extend
--allow-eval
to allow comments liketo be picked up as commands by ghcid. The effect should be the same as typing
in a ghci session.