diff options
| author | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2021-12-12 01:29:47 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 22:29:47 +0000 |
| commit | 079d8037ab59ea13dcff1811c1e32884e7a01ae8 (patch) | |
| tree | c0adfeb7b53bd87a55bf9fc3d8c6404c9e3f2871 /src/command/history.rs | |
| parent | Fish importing (#234) (diff) | |
| download | atuin-079d8037ab59ea13dcff1811c1e32884e7a01ae8.zip | |
Enable help messages for command line arguments (#239)
Diffstat (limited to 'src/command/history.rs')
| -rw-r--r-- | src/command/history.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/history.rs b/src/command/history.rs index 4606b304..a74b210b 100644 --- a/src/command/history.rs +++ b/src/command/history.rs @@ -43,7 +43,7 @@ pub enum Cmd { #[structopt(long, short)] human: bool, - #[structopt(long, about = "Show only the text of the command")] + #[structopt(long, help = "Show only the text of the command")] cmd_only: bool, }, @@ -55,7 +55,7 @@ pub enum Cmd { #[structopt(long, short)] human: bool, - #[structopt(long, about = "Show only the text of the command")] + #[structopt(long, help = "Show only the text of the command")] cmd_only: bool, }, } |
