broot 1.56.0

File browser and launcher
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// find the list of optional features which are enabled
pub fn list() -> Vec<(&'static str, &'static str)> {
    #[allow(unused_mut)]
    let mut features: Vec<(&'static str, &'static str)> = Vec::new();

    #[cfg(not(any(target_family = "windows", target_os = "android")))]
    features.push(("permissions", "allow showing file mode, owner and group"));

    #[cfg(feature = "clipboard")]
    features.push((
        "clipboard",
        ":copy_path (copying the current path), and :input_paste (pasting into the input)",
    ));

    features
}