This version can be pinned in stack with:simple-prompt-0.2.1@sha256:5632b1f915d7da864226db98aef83d848fdd6c2b84fc942c274e3fb2b6257b2f,2031
Module documentation for 0.2.1
simple-prompt
A simple commandline text prompt library for user input.
The SimplePrompt
module provides:
prompt
: returns a string
promptNonEmpty
prompts for non-empty string
promptInitial
with pre-filled initial input
promptPassword
prompts for password
promptChar
prompt for a character
promptEnter
waits for Enter key
yesNo
expects y/n answer
yesNoDefault
[y/N] or [Y/n]
It uses haskeline to read the input.
The SimplePrompt.Internal
module provides lower-level access to
functional haskeline InputT monad transformer-based prompt functions:
runPrompt
, getPrompt*
untilInput
, mapInput
, clearedInput
, nonEmptyInput
.
Revision history for simple-prompt
0.2.1 (2023-08-09)
- do not trim spaces for yesNo and yesNoDefault
- Internal: timedInput renamed to clearedInput
0.2.0 (2023-05-28)
- new API using haskeline and MonadIO
- prompt ignores buffered stdin lines if it returns in milliseconds
- promptEnter replaces prompt_
- new functions: promptEnter, promptInitial, promptNonEmpty, promptPassword
- yesNo and yesNoDefault replace yesno
- internal haskeline functions in SimplePrompt.Internal: including
getPrompt*, runPrompt, untilInput, mapInput, nonEmptyInput, timedInput
0.1.0 (2023-04-02)
- initial release with prompt, prompt_, yesno functions