BSD-3-Clause licensed and maintained by Jens Petersen
This version can be pinned in stack with:simple-prompt-0.2.3@sha256:361a3949ce7480107127a2548c5fc8b4ace2fe505aef67ecc5d39df4c2879a0c,2137

Module documentation for 0.2.3

Used by 4 packages in nightly-2024-07-26(full list with versions):

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 prompts for a character
  • promptKeyPress waits for a key press
  • 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.

Changes

Revision history for simple-prompt

0.2.3 (2024-06-13)

  • getGenericPrompt: adapt prompt suffix for final newline or colon
  • clearedInput no longer prints short duration for any buffered input

0.2.2 (2023-10-27)

  • add promptKeyPress

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