ncoxide 0.4.0

Modal dual-pane file commander with helix-inspired interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(thiserror::Error, Debug)]
pub enum NcError {
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),

    #[error("Configuration error: {0}")]
    Config(String),

    #[error("File operation failed: {0}")]
    FileOperation(String),
}

pub type Result<T> = std::result::Result<T, NcError>;