warp-directory 0.3.1

A simple command line tool to quickly change directories
Documentation
1
2
3
4
5
6
7
8
use clap::ArgMatches;

use crate::storage::remove_warp_point;

pub fn delete_warp_point(matches: &ArgMatches) {
    let name = matches.get_one::<String>("name").unwrap();
    remove_warp_point(name);
}