diff options
author | Kavon Farvardin <kavon@farvard.in> | 2018-09-23 15:29:37 -0500 |
---|---|---|
committer | Kavon Farvardin <kavon@farvard.in> | 2018-09-23 15:29:37 -0500 |
commit | 84c2ad99582391005b5e873198b15e9e9eb4f78d (patch) | |
tree | caa8c2f2ec7e97fbb4977263c6817c9af5025cf4 /utils/mkUserGuidePart/Options/Interactive.hs | |
parent | 8ddb47cfcf5776e9a3c55fd37947c8a95e00fa12 (diff) | |
parent | e68b439fe5de61b9a2ca51af472185c62ccb8b46 (diff) | |
download | haskell-wip/T13904.tar.gz |
update to current master againwip/T13904
Diffstat (limited to 'utils/mkUserGuidePart/Options/Interactive.hs')
-rw-r--r-- | utils/mkUserGuidePart/Options/Interactive.hs | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/utils/mkUserGuidePart/Options/Interactive.hs b/utils/mkUserGuidePart/Options/Interactive.hs deleted file mode 100644 index 0137fc8c86..0000000000 --- a/utils/mkUserGuidePart/Options/Interactive.hs +++ /dev/null @@ -1,65 +0,0 @@ -module Options.Interactive where - -import Types - -interactiveOptions :: [Flag] -interactiveOptions = - [ flag { flagName = "-ignore-dot-ghci" - , flagDescription = "Disable reading of ``.ghci`` files" - , flagType = DynamicFlag - } - , flag { flagName = "-ghci-script" - , flagDescription = "Read additional ``.ghci`` files" - , flagType = DynamicFlag - } - , flag { flagName = "-fbreak-on-error" - , flagDescription = - ":ref:`Break on uncaught exceptions and errors " ++ - "<ghci-debugger-exceptions>`" - , flagType = DynamicFlag - , flagReverse = "-fno-break-on-error" - } - , flag { flagName = "-fbreak-on-exception" - , flagDescription = - ":ref:`Break on any exception thrown <ghci-debugger-exceptions>`" - , flagType = DynamicFlag - , flagReverse = "-fno-break-on-exception" - } - , flag { flagName = "-fghci-hist-size=⟨n⟩" - , flagDescription = - "Set the number of entries GHCi keeps for ``:history``." ++ - " See :ref:`ghci-debugger`." - , flagType = DynamicFlag - , flagReverse = "" - } - , flag { flagName = "-fprint-evld-with-show" - , flagDescription = - "Enable usage of ``Show`` instances in ``:print``. "++ - "See :ref:`breakpoints`." - , flagType = DynamicFlag - , flagReverse = "-fno-print-evld-with-show" - } - , flag { flagName = "-fprint-bind-result" - , flagDescription = - ":ref:`Turn on printing of binding results in GHCi <ghci-stmts>`" - , flagType = DynamicFlag - , flagReverse = "-fno-print-bind-result" - } - , flag { flagName = "-fno-print-bind-contents" - , flagDescription = - ":ref:`Turn off printing of binding contents in GHCi <breakpoints>`" - , flagType = DynamicFlag - } - , flag { flagName = "-fno-implicit-import-qualified" - , flagDescription = - ":ref:`Turn off implicit qualified import of everything in GHCi " ++ - "<ghci-import-qualified>`" - , flagType = DynamicFlag - } - , flag { flagName = "-interactive-print ⟨expr⟩" - , flagDescription = - ":ref:`Select the function to use for printing evaluated " ++ - "expressions in GHCi <ghci-interactive-print>`" - , flagType = DynamicFlag - } - ] |