package linenoise
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Source file lNoise.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58open Result type completions external add_completion : completions -> string -> unit = "ml_add_completion" external linenoise : string -> string option = "ml_linenoise" external history_add_ : string -> int = "ml_history_add" external history_set_ : max_length:int -> int = "ml_history_set_maxlen" external history_save_ : filename:string -> int = "ml_history_save" external history_load_ : filename:string -> int = "ml_history_load" external catch_break : bool -> unit = "ml_catch_break" external setup_bridges : unit -> unit = "ml_setup_bridges" type hint_color = Red | Green | Yellow | Blue | Magenta | Cyan | White let completion_cb = ref (fun _ _ -> ()) let hints_cb = ref (fun _ -> None) let set_completion_callback (f:string->completions->unit) : unit = completion_cb := f; Callback.register "lnoise_completion_cb" f let set_hints_callback (f:string -> (string*hint_color*bool) option) : unit = hints_cb := f; Callback.register "lnoise_hints_cb" f (* initialization: register [Sys.Break] and enable catch-break *) let () = setup_bridges(); set_completion_callback !completion_cb; set_hints_callback !hints_cb; Callback.register_exception "sys_break" Sys.Break; catch_break true let history_add h = if history_add_ h = 0 then Error "Couldn't add to history" else Ok () let history_set ~max_length = if history_set_ ~max_length = 0 then Error "Couldn't set the max length of history" else Ok () let history_save ~filename = if history_save_ ~filename = 0 then Ok () else Error "Couldn't save" let history_load ~filename = if history_load_ ~filename = 0 then Ok () else Error "Couldn't load the file" external clear_screen : unit -> unit = "ml_clearscreen" external set_multiline : bool -> unit = "ml_set_multiline" external print_keycodes : unit -> unit = "ml_printkeycodes"