package b0

  1. Overview
  2. Docs
Software construction care

Install

Dune Dependency

Authors

Maintainers

Sources

b0-0.0.0.tbz
sha256=dadde8cfa62be9dabd805fc190b415427b4699ffe3458c153e2f3f9cc5c9b9b4
md5=f96ac96fb0182f2b97dbe9ded452544b

doc/b0.care/B0_ui/Editor/index.html

Module B0_ui.Editor

Editor interaction.

Cli arguments

val envs : Cmdliner.Term.env_info list

envs describe the VISUAL and EDITOR environment variable.

Editor

val find : ?search:B0_std.Fpath.t list -> unit -> (B0_std.Cmd.t option, string) result

find ?search ~don't finds a suitable editor. This is (in order):

  1. Ok (Some pager) if pager is a tool invocation parsed from the VISUAL environment variable that can be found via Os.Cmd.find ?search.
  2. Ok (Some pager) if pager is a tool invocation parsed from the EDITOR environment variable that can be found via Os.Cmd.find ?search.
  3. Ok (Some pager) if nano can be found via Os.Cmd.find ?search.
  4. Ok None otherwise.
val edit_files : B0_std.Cmd.t option -> B0_std.Fpath.t list -> (B0_std.Os.Cmd.status, string) result

edit-files editor fs uses editor to edit the files fs. If editor is:

  • None, an error message is returned mentioning that no editor was found.
  • Some editor invokes the command with files fs and returns the exit status of the program.
OCaml

Innovation. Community. Security.