snip-it 1.3.1

Fast terminal snippet manager with fuzzy search, TUI, variable expansion, and end-to-end encrypted cross-device sync
Documentation
//! Utility modules for snp.
//!
//! This module provides helper functions for:
//! - [`config`]: Configuration directory paths
//! - [`variables`]: Variable expansion and parsing
//! - [`toml_helpers`]: TOML escape sequence handling
//! - [`shell_keywords`]: Shell keyword expansion

pub mod atomic;
pub mod config;
pub mod shell_keywords;
pub mod tempfile_guard;
pub mod toml_helpers;
pub mod variables;

pub use variables::{
    expand_command, extract_variables_for_display, has_unmatched_angle_bracket, parse_variables,
    strip_escape_sequences,
};