forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
412 B
Rust
27 lines
412 B
Rust
#![allow(unused)]
|
|
// mod editor;
|
|
mod component;
|
|
|
|
// use editor::Editor;
|
|
|
|
use argh::FromArgs;
|
|
use std::path::PathBuf;
|
|
|
|
use anyhow::Error;
|
|
|
|
#[derive(FromArgs)]
|
|
/// A post-modern text editor.
|
|
pub struct Args {
|
|
#[argh(positional)]
|
|
files: Vec<PathBuf>,
|
|
}
|
|
|
|
fn main() -> Result<(), Error> {
|
|
let args: Args = argh::from_env();
|
|
// let mut editor = Editor::new(args)?;
|
|
|
|
// editor.run()?;
|
|
|
|
Ok(())
|
|
}
|