broot 1.56.0

File browser and launcher
Documentation
1
2
3
4
5
6
7
/// A position in a tline
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct TRange {
    pub string_idx: usize,
    pub start_byte_in_string: usize,
    pub end_byte_in_string: usize,
}