Module B0_ui.Editor
Editor interaction.
Cli arguments
val envs : Cmdliner.Term.env_info list
envs
describe theVISUAL
andEDITOR
environment variable.
Editor
val find : ?search:B0_std.Fpath.t list -> unit -> (B0_std.Cmd.t option, string) Stdlib.result
find ?search ~don't
finds a suitable editor. This is (in order):Ok (Some pager)
ifpager
is a tool invocation parsed from theVISUAL
environment variable that can be found viaOs.Cmd.find ?search
.Ok (Some pager)
ifpager
is a tool invocation parsed from theEDITOR
environment variable that can be found viaOs.Cmd.find ?search
.Ok (Some pager)
ifnano
can be found viaOs.Cmd.find ?search
.Ok None
otherwise.
val edit_files : B0_std.Cmd.t option -> B0_std.Fpath.t list -> (B0_std.Os.Cmd.status, string) Stdlib.result
edit-files editor fs
useseditor
to edit the filesfs
. Ifeditor
is:None
, an error message is returned mentioning that no editor was found.Some editor
invokes the command with filesfs
and returns the exit status of the program.