packages feed

intero 0.1.0 → 0.1.1

raw patch · 3 files changed

+3/−3 lines, 3 files

Files

intero.cabal view
@@ -1,7 +1,7 @@ name:   intero version:-  0.1.0+  0.1.1 synopsis:   Complete interactive development program for Haskell license:
src/GhciFind.hs view
@@ -218,7 +218,7 @@        Just name ->          case M.lookup name infos of            Nothing ->-             return (Left ("Couldn't guess the module nameIs this module loaded?"))+             return (Left ("Couldn't guess the module name. Is this module loaded?"))            Just info ->              do let !mty =                       resolveType (modinfoSpans info)
src/InteractiveUI.hs view
@@ -182,7 +182,6 @@   -- Hugs users are accustomed to :e, so make sure it doesn't overlap   ("?",         keepGoing help,                 noCompletion),   ("add",       keepGoingPaths addModule,       completeFilename),-  ("intro",     keepGoing intro,                noCompletion),   ("abandon",   keepGoing abandonCmd,           noCompletion),   ("break",     keepGoing breakCmd,             completeIdentifier),   ("back",      keepGoing backCmd,              noCompletion),@@ -207,6 +206,7 @@   ("info",      keepGoing' (info False),        completeIdentifier),   ("info!",     keepGoing' (info True),         completeIdentifier),   ("issafe",    keepGoing' isSafeCmd,           completeModule),+  ("intro",     keepGoing intro,                noCompletion),   ("kind",      keepGoing' (kindOfType False),  completeIdentifier),   ("kind!",     keepGoing' (kindOfType True),   completeIdentifier),   ("load",      keepGoingPaths loadModule_,     completeHomeModuleOrFile),