diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-01-07 12:05:44 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-01-11 09:30:06 +0000 |
commit | fb68ba06c2ed231f53ab56d3b2fad93fafd4c2e6 (patch) | |
tree | 57364c749122a586c28d8d7c1122635a166f33f0 /ghc | |
parent | 55715c132e00d49ac174481df300cabc1881deee (diff) | |
download | haskell-wip/seti-improvements.tar.gz |
Enable :seti in a multi component replwip/seti-improvements
Part of #20889
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index a51d30232c..cf58baa0a6 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -233,8 +233,8 @@ ghciCommands = map mkCmd [ ("run", keepGoing runRun, completeFilename), ("script", keepGoing' scriptCmd, completeFilename), ("set", keepGoing setCmd, completeSetOptions), - ("seti", keepGoing setiCmd, completeSeti), - ("show", keepGoingMulti' showCmd, completeShowOptions), + ("seti", keepGoingMulti setiCmd, completeSeti), + ("show", keepGoingMulti' showCmd, completeShowOptions), ("showi", keepGoing showiCmd, completeShowiOptions), ("sprint", keepGoing sprintCmd, completeExpression), ("step", keepGoing stepCmd, completeIdentifier), |