broot 0.7.4

Fuzzy Search + tree + cd
/// displays the "input" at the bottom of the screen
/// (reading is managed in the app module)
use std::io::{self, Write};

use crate::commands::Command;
use crate::screens::Screen;

pub trait Input {
    fn write_input(&mut self, cmd: &Command) -> io::Result<()>;
}

impl Input for Screen {
    fn write_input(&mut self, cmd: &Command) -> io::Result<()> {
        write!(
            self.stdout,
            "{}{}{}{}{}{} {}",
            termion::cursor::Goto(1, self.h),
            self.skin.input.fg,
            self.skin.input.bg,
            termion::clear::CurrentLine,
            cmd.raw,
            termion::style::Invert,
            termion::style::NoInvert,
        )?;
        self.stdout.flush()?;
        Ok(())
    }
}