vimcats 1.1.0

LuaCATS parser and vimdoc transformer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod cli;

use std::process::exit;

use cli::Cli;

fn main() {
    match Cli::new() {
        Ok(c) => c.run(),
        Err(e) => {
            eprintln!("{e}");
            exit(1)
        }
    }
}