summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-07-05 12:27:25 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2022-07-05 12:28:56 +0100
commit456e477225908b300dbc5359d64b7a601ac82e5a (patch)
treeebd956235018b354d16113d2af92827ef21ecd5d
parent2b0e0862ff57125963b3bb023642d1c86b7aeca2 (diff)
downloadhaskell-wip/more-multi.tar.gz
Enable :edit command in ghci multi-mode.wip/more-multi
This works after the last change to isLoaded. Ticket #20888
-rw-r--r--ghc/GHCi/UI.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs
index 82f2109ec2..3de05f707d 100644
--- a/ghc/GHCi/UI.hs
+++ b/ghc/GHCi/UI.hs
@@ -212,7 +212,7 @@ ghciCommands = map mkCmd [
("delete", keepGoing deleteCmd, noCompletion),
("disable", keepGoing disableCmd, noCompletion),
("doc", keepGoing' docCmd, completeIdentifier),
- ("edit", keepGoing' editFile, completeFilename),
+ ("edit", keepGoingMulti' editFile, completeFilename),
("enable", keepGoing enableCmd, noCompletion),
("etags", keepGoing createETagsFileCmd, completeFilename),
("force", keepGoing forceCmd, completeExpression),