purescript-0.15.15: src/Language/PureScript/Interactive/Directive.hs
-- |
-- Directives for PSCI.
--
module Language.PureScript.Interactive.Directive where
import Prelude
import Data.Maybe (fromJust)
import Data.List (isPrefixOf)
import Data.Tuple (swap)
import Language.PureScript.Interactive.Types (Directive(..))
-- |
-- A mapping of directives to the different strings that can be used to invoke
-- them.
--
directiveStrings :: [(Directive, [String])]
directiveStrings =
[ (Help , ["?", "help"])
, (Quit , ["quit"])
, (Reload , ["reload"])
, (Clear , ["clear"])
, (Browse , ["browse"])
, (Type , ["type"])
, (Kind , ["kind"])
, (Show , ["show"])
, (Paste , ["paste"])
, (Complete , ["complete"])
, (Print , ["print"])
]
-- |
-- Like directiveStrings, but the other way around.
--
directiveStrings' :: [(String, Directive)]
directiveStrings' = concatMap go directiveStrings
where
go (dir, strs) = map (, dir) strs
-- |
-- Returns all possible string representations of a directive.
--
stringsFor :: Directive -> [String]
stringsFor d = fromJust (lookup d directiveStrings)
-- |
-- Returns the default string representation of a directive.
--
stringFor :: Directive -> String
stringFor = head . stringsFor
-- |
-- Returns the list of directives which could be expanded from the string
-- argument, together with the string alias that matched.
--
directivesFor' :: String -> [(Directive, String)]
directivesFor' str = go directiveStrings'
where
go = map swap . filter ((str `isPrefixOf`) . fst)
directivesFor :: String -> [Directive]
directivesFor = map fst . directivesFor'
directiveStringsFor :: String -> [String]
directiveStringsFor = map snd . directivesFor'
-- |
-- The help menu.
--
help :: [(Directive, String, String)]
help =
[ (Help, "", "Show this help menu")
, (Quit, "", "Quit PSCi")
, (Reload, "", "Reload all imported modules while discarding bindings")
, (Clear, "", "Discard all imported modules and declared bindings")
, (Browse, "<module>", "See all functions in <module>")
, (Type, "<expr>", "Show the type of <expr>")
, (Kind, "<type>", "Show the kind of <type>")
, (Show, "import", "Show all imported modules")
, (Show, "loaded", "Show all loaded modules")
, (Show, "print", "Show the repl's current printing function")
, (Paste, "paste", "Enter multiple lines, terminated by ^D")
, (Complete, "<prefix>", "Show completions for <prefix> as if pressing tab")
, (Print, "<fn>", "Set the repl's printing function to <fn> (which must be fully qualified)")
]