summaryrefslogtreecommitdiff
path: root/ghc/InteractiveUI.hs
Commit message (Expand)AuthorAgeFilesLines
* Prefer builtin commands to macros in GHCi command resolution (#3858)Max Bolingbroke2011-04-021-1/+4
* Improve GHCi line numbers in errorsIan Lynagh2011-02-271-6/+9
* :script file scripts in GHCi #1363Vivian McPhail2011-02-261-7/+52
* Remove redundant importIan Lynagh2011-01-081-1/+0
* Improve error message of :set in ghci (ticket #4190).Michal Terepeta2010-11-301-1/+3
* fix up multi-line GHCi patch (#4316)Simon Marlow2011-01-051-5/+5
* multiline commands in GHCi #4316Vivian McPhail2010-11-051-10/+73
* Replace uses of the old try function with the new oneIan Lynagh2010-12-181-7/+7
* Replace uses of the old catch function with the new oneIan Lynagh2010-12-181-2/+2
* Create ~/.ghc/ if it doesn't already exist; fixes trac #4522Ian Lynagh2010-12-181-5/+7
* Remove more dead code now we require GHC >= 6.12Ian Lynagh2010-12-151-9/+2
* fix warningsSimon Marlow2010-12-091-1/+4
* :unset settings supportBoris Lykah2010-11-231-20/+35
* Close .ghci files after reading them; fixes trac #4487Ian Lynagh2010-12-051-1/+3
* Fix bug #3165 (:history throws irrefutable pattern failed)pepeiborra@gmail.com2010-11-151-2/+2
* Remove no-longer-necessary withFlattenedDynflagsIan Lynagh2010-11-031-23/+11
* Use liftIO rather than ioIan Lynagh2010-11-031-81/+80
* Refactoring and tidyup of HscMain and related things (also fix #1666)Simon Marlow2010-10-271-12/+11
* Remove the need to explicitly flatten the dynflagsIan Lynagh2010-10-231-1/+1
* Replace an outputStr with putStrLn calls; fixes #4332Ian Lynagh2010-10-031-1/+2
* Don't show the loaded packages in ":show packages"; fixes #4300Ian Lynagh2010-09-301-5/+0
* use putStrLn instead of Haskeline's outputStrLnSimon Marlow2010-09-241-9/+9
* Add separate functions for querying DynFlag and ExtensionFlag optionsIan Lynagh2010-09-181-1/+1
* Fix warningsIan Lynagh2010-09-091-1/+2
* Remove context completionlykahb@gmail.com2010-09-011-1/+19
* Disambiguate a function nameIan Lynagh2010-08-281-1/+1
* Flatten flags for ghci's :showIan Lynagh2010-07-251-1/+1
* Rename "language" varibles etc to "extension", and add --supported-extensionsIan Lynagh2010-07-241-1/+1
* Separate language option handling into 2 phasesIan Lynagh2010-07-241-13/+32
* Separate the language flags from the other DynFlag'sIan Lynagh2010-07-241-3/+1
* refactor import declaration support (#2362)Simon Marlow2010-07-051-52/+50
* trac #2362 (full import syntax in ghci)amsay@amsay.net2010-06-251-35/+68
* In ghci, catch IO exceptions when calling canonicalizePathIan Lynagh2010-06-131-3/+7
* Re-add newlines to enable layout for multi-line input.Ian Lynagh2010-06-021-1/+1
* Use UserInterrupt rather than our own Interrupted exception (#4100)Simon Marlow2010-06-021-5/+12
* Refactor pretty printing of TyThings to fix Trac #4015simonpj@microsoft.com2010-05-251-3/+6
* runghc: flush stdout/stderr on an exception (#3890)Simon Marlow2010-05-051-0/+2
* Fix column numbers used when highlighting :list outputIan Lynagh2009-12-031-2/+2
* remove encoding of output using Haskeline; the IO library does it now (#3398)Simon Marlow2009-09-181-10/+6
* FIX #3434 (improve vi tags: add non-exported symbols, kinds, regex tags)Peter Hercek2009-08-171-2/+4
* alow macros to redefine builtin GHCi commands (implements #3084)Peter Hercek2009-05-121-6/+14
* Add -package-id, improve package shadowing behaviour and error messagesSimon Marlow2009-09-081-0/+1
* remove unnecessary -#include optionsSimon Marlow2009-08-021-1/+0
* Windows only: set the encoding on stdin to utf8Simon Marlow2009-07-231-0/+6
* Trim unused imports detected by new unused-import codesimonpj@microsoft.com2009-07-061-4/+3
* Support for -fwarn-unused-do-bind and -fwarn-wrong-do-bind, as per #3263Max Bolingbroke2009-07-011-17/+17
* Fix #2197 (properly this time)Simon Marlow2009-07-011-7/+4
* Fix buffering problem when GHCi is using the new IO librarySimon Marlow2009-06-231-1/+11
* Changes for the new IO library, mainly base-package modules moving aroundSimon Marlow2009-05-291-1/+12
* don't call Haskeline to read input when stdin is not a terminalSimon Marlow2009-05-281-9/+10