package lambda-term

  1. Overview
  2. Docs
Terminal manipulation library for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

lambda-term-3.2.0.tar.gz
md5=68a44ac4a5c643cf48ea927c073b4428
sha512=46cd46f47c9f34c0a5e096b96e6eec59667b645bf5201140e498e6d4eb9baba8204a2b30b73c4b2f8140e5cf1972a56e3aa485b27bc5ace25b2c368f713ad7c4

doc/lambda-term/LTerm_read_line_base/index.html

Module LTerm_read_line_baseSource

Sourceval pervasives_compare : 'a -> 'a -> int
Sourceexception Interrupt
Sourcetype action =
  1. | Edit of LTerm_edit.action
  2. | Interrupt_or_delete_next_char
  3. | Complete
  4. | Complete_bar_next
  5. | Complete_bar_prev
  6. | Complete_bar_first
  7. | Complete_bar_last
  8. | Complete_bar
  9. | History_prev
  10. | History_next
  11. | History_search_prev
  12. | History_search_next
  13. | Accept
  14. | Clear_screen
  15. | Break
  16. | Suspend
  17. | Edit_with_external_editor
Sourceval doc_of_action : action -> string
Sourceval actions : (action * string) list
Sourceval actions_to_names : (action * string) array
Sourceval names_to_actions : (action * string) array
Sourceval action_of_name : string -> action
Sourceval name_of_action : action -> string
Sourcetype 'a loop_result =
  1. | Result of 'a
  2. | ContinueLoop of LTerm_key.t list
Sourcetype 'a loop_status =
  1. | Ev of LTerm_event.t
  2. | Loop_result of 'a
  3. | Interrupted of exn