swapdex 0.49.0

Switch between multiple Claude Code, Codex, Gemini, and Antigravity login accounts, locally and safely.
Documentation
//! Small helpers. `redact_path` replaces the home dir with `~` so no error or
//! status line leaks a username.

pub fn redact_path(s: &str) -> String {
    if let Some(home) = dirs::home_dir() {
        let home = home.to_string_lossy();
        if !home.is_empty() {
            return s.replace(home.as_ref(), "~");
        }
    }
    s.to_string()
}

/// ANSI colour is used only on a TTY and never when NO_COLOR is set
/// (https://no-color.org).
pub fn color_enabled() -> bool {
    use std::io::IsTerminal;
    std::io::stdout().is_terminal() && std::env::var_os("NO_COLOR").is_none()
}