Skip to content

Commit

Permalink
fix(cli): hide --vim argument (#62)
Browse files Browse the repository at this point in the history
The `--vim` argument is only meant for internal usage and should not be shown in `--help`.
  • Loading branch information
hougesen authored Dec 27, 2023
1 parent cbfab5d commit 30826e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitt-cli/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub(crate) struct RunCommandArguments {
#[arg(long, short, default_value_t = false)]
pub(crate) recursive: bool,

#[arg(long, default_value_t = false)]
#[arg(long, default_value_t = false, hide = true)]
pub(crate) vim: bool,
}

Expand Down

0 comments on commit 30826e8

Please sign in to comment.