From 1691cc407e3f733b62a52bf4f95b6302c1a8954b Mon Sep 17 00:00:00 2001 From: Ethan Kinnear <51250849+superatomic@users.noreply.github.com> Date: Sat, 28 May 2022 22:20:39 -0500 Subject: [PATCH] Update CLI help to link to xshe.superatomic.dev --- src/cli.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 77890c4..1fa556c 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -22,19 +22,21 @@ use std::path::PathBuf; #[clap(group = ArgGroup::new("mode").multiple(false))] #[clap(global_setting(AppSettings::DeriveDisplayOrder))] #[clap(version, arg_required_else_help = true)] -#[clap(after_help = "GitHub: https://github.com/superatomic/xshe")] /// Cross-Shell Environment Variable Manager /// /// Xshe sets shell environment variables across multiple shells with a single configuration file. /// -/// For more, go to https://github.com/superatomic/xshe#readme +/// Full documentation can be found at https://xshe.superatomic.dev +/// or in the `docs/` source directory. +/// +/// Source Repository: https://github.com/superatomic/xshe pub struct Cli { /// The shell to generate a script for /// /// Outputs a runnable shell script for the specified shell. /// /// You can directly source these files in your shell. - /// Read https://github.com/superatomic/xshe#sourcing-the-xshetoml-file for info. + /// See for a detailed explanation. #[clap(arg_enum, index = 1)] pub shell: Shell,