LTerm_editText edition
type action = | Zed of Zed_edit.actionA zed action.
*)| Start_macroStart a new macro.
*)| Stop_macroEnds the current macro.
*)| Cancel_macroCancel the current macro.
*)| Play_macroPlay the last recorded macro.
*)| Insert_macro_counterInsert the current value of the macro counter.
*)| Set_macro_counterSets the value of the macro counter.
*)| Add_macro_counterAdds a value to the macro counter.
*)| Custom of unit -> unitval bindings : action list Zed_input.Make(LTerm_key).t refBindings. These bindings are used by LTerm_read_line and by edition widgets.
val bind : LTerm_key.t list -> action list -> unitbind seq actions associates actions to the given sequence.
val unbind : LTerm_key.t list -> unitunbind seq unbinds seq.
val doc_of_action : action -> stringdoc_of_action action returns a short description of the action.
val action_of_name : string -> actionaction_of_name str converts the given action name into an action. Action name are the same as variants name but lowercased and with '_' replaced by '-'. It raises Not_found if the name does not correspond to an action. It also recognizes zed actions.
val name_of_action : action -> stringname_of_action act returns the name of the given action.
val clipboard : Zed_edit.clipboardThe global clipboard.
val macro : action Zed_macro.tThe global macro recorder.
class edit : ?clipboard:Zed_edit.clipboard -> ?macro:action Zed_macro.t -> ?size:
LTerm_geom.size -> unit -> object ... endClass of edition widgets. If no clipboard is provided, then the global one is used.