pub fn print_success(message: &str)Expand description
Display a success message with consistent formatting.
Prints a success message with a green checkmark symbol and styled text. Used throughout the application to indicate successful completion of operations such as file processing, configuration updates, or command execution.
§Format
✓ [message]§Examples
use subx_cli::cli::ui::print_success;
print_success("Successfully processed 15 subtitle files");
print_success("Configuration saved to ~/.config/subx/config.toml");
print_success("AI matching completed with 98% confidence");§Output Examples
✓ Successfully processed 15 subtitle files
✓ Configuration saved to ~/.config/subx/config.toml
✓ AI matching completed with 98% confidence