fzf-make 0.74.0

A command line tool that executes commands using fuzzy finder with preview window for make, pnpm, yarn, just, and task.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct Config {
    focus_history: bool,
}

impl Config {
    pub fn new(focus_history: bool) -> Self {
        Self { focus_history }
    }

    pub fn default() -> Self {
        Self { focus_history: false }
    }

    pub fn get_focus_history(&self) -> bool {
        self.focus_history
    }
}