broot 1.56.0

File browser and launcher
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::tree::TreeLineType;

pub trait IconPlugin {
    fn get_icon(
        &self,
        tree_line_type: &TreeLineType,
        name: &str,
        double_ext: Option<&str>,
        ext: Option<&str>,
    ) -> char;
}