alman 0.1.2

A command-line tool and TUI for managing shell aliases with intelligent suggestions
1
2
3
4
5
use crate::database::database_structs::{Database,DeletedCommands};

pub fn delete_suggestion(alias: &str, db: &mut Database,deleted_commands: &mut DeletedCommands) {
    db.remove_command(&alias.to_string(), deleted_commands);
}