Skip to content

Commit ab5c267

Browse files
committed
Rely on text wrapping for help message
Signed-off-by: Nick Gerace <nickagerace@gmail.com>
1 parent 5c6c194 commit ab5c267

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

src/cli.rs

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,15 @@ use crate::display::DisplayHarness;
1212
const HELP: &str = "\
1313
More information: https://github.com/nickgerace/gfold
1414
15-
Description:
16-
This application helps you keep track of multiple Git repositories via CLI.
17-
By default, it displays relevant information for all repos in the current
18-
working directory.
15+
Description: this application helps you keep track of multiple Git repositories via CLI. By default, it displays relevant information for all repos in the current working directory.
1916
20-
Config File Usage:
21-
While CLI options are prioritized, default options will fallback to the
22-
config file if it exists. Here are the config file lookup locations:
17+
Config File Usage: while CLI options are prioritized, default options will fallback to the config file if it exists. Here are the config file lookup locations:
2318
2419
$XDG_CONFIG_HOME/gfold.toml
2520
$XDG_CONFIG_HOME/gfold/config.toml
2621
$HOME/.config/gfold.toml (or {{FOLDERID_Profile}}\\.config\\gfold.toml on Windows)
2722
28-
Troubleshooting:
29-
Investigate unexpected behavior by prepending execution with
30-
\"RUST_BACKTRACE=1\"and \"RUST_LOG=debug\". You can adjust those variable's
31-
values to aid investigation.";
23+
Troubleshooting: investigate unexpected behavior by prepending execution with \"RUST_BACKTRACE=1\"and \"RUST_LOG=debug\". You can adjust those variable's values to aid investigation.";
3224

3325
#[derive(Parser)]
3426
#[command(version, about = HELP, long_about = None)]

0 commit comments

Comments
 (0)