package lambda-term

  1. Overview
  2. Docs
Terminal manipulation library for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

3.4.1.tar.gz
sha512=db56672833bf8c85d64f1b6e6b22bc8d98a4bd1abc00499f5baa5db18f1fe39d3e9c27d60a3ba3227215706055bccc7f160b4e46553c707bf6e14a5b2c419b48

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