[][src]Crate edit

edit lets you open and edit something in a text editor, regardless of platform. (Think git commit.)

It works on Windows, Mac, and Linux, and knows about lots of different text editors to fall back upon in case standard environment variables such as VISUAL and EDITOR aren't set.

This example is not tested
let template = "Fill in the blank: Hello, _____!";
let edited = edit::edit(template)?;
println!("after editing: '{}'", edited);
// after editing: 'Fill in the blank: Hello, world!'

Structs

Builder

Create a new temporary file or directory with custom parameters.

Functions

edit

Open the contents of a string or buffer in the default editor.

edit_bytes

Open the contents of a string or buffer in the default editor and return them as raw bytes.

edit_bytes_with_builder

Open the contents of a string or buffer in the default editor using a temporary file with a custom path or filename and return them as raw bytes.

edit_file

Open an existing file (or create a new one, depending on the editor's behavior) in the default editor and wait for the editor to exit.

edit_with_builder

Open the contents of a string or buffer in the default editor using a temporary file with a custom path or filename.

get_editor

Find the system default editor, if there is one.