paperslip 0.2.0

Quickly open a note file for your projects.
Documentation
use clap::{Arg, ArgAction, Command};

pub fn get_cli() -> Command {
    Command::new(env!("CARGO_PKG_NAME"))
        .author(env!("CARGO_PKG_AUTHORS"))
        .about(env!("CARGO_PKG_DESCRIPTION"))
        .arg(
            Arg::new("cwd")
                .short('c')
                .long("force-working-directory")
                .action(ArgAction::SetTrue)
                .help("always use the working directory, even inside a git repository"),
        )
        .arg(
            Arg::new("directory")
                .short('d')
                .long("directory")
                .help("manually provide the directory for the project"),
        )
}