fzf-make 0.15.0

A command line tool that executes make target using fuzzy finder with preview window.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod controller;
mod models;
mod usecase;

use crate::controller::controller_main;
use std::panic;

fn main() {
    match panic::catch_unwind(|| {
        controller_main::run();
    }) {
        Ok(_) => {}
        Err(e) => {
            eprintln!("Error: {:?}", e);
            std::process::exit(1);
        }
    }
}