paper 0.4.0

A terminal-based editor with goals to maximize simplicity and efficiency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Creates and runs the application using the arguments provided from the command.
use {
    fehler::throws,
    paper::{Arguments, Failure, Paper},
    // Implements from_args().
    structopt::StructOpt,
};

#[throws(Failure)]
fn main() {
    Paper::new(Arguments::from_args())?.run()?;
}