mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
add value hints to rage-keygen completions
This commit is contained in:
parent
4ff5e01ae9
commit
daf0829142
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
use clap::{builder::Styles, ArgAction, Parser};
|
||||
use clap::{builder::{Styles, ValueHint}, ArgAction, Parser};
|
||||
|
||||
use crate::fl;
|
||||
|
||||
|
@ -22,6 +22,7 @@ pub(crate) struct AgeOptions {
|
|||
#[arg(help_heading = fl!("args-header"))]
|
||||
#[arg(value_name = fl!("input"))]
|
||||
#[arg(help = fl!("help-arg-input"))]
|
||||
#[arg(value_hint = ValueHint::FilePath)]
|
||||
pub(crate) input: Option<String>,
|
||||
|
||||
#[arg(action = ArgAction::Help, short, long)]
|
||||
|
@ -35,6 +36,7 @@ pub(crate) struct AgeOptions {
|
|||
#[arg(short, long)]
|
||||
#[arg(value_name = fl!("output"))]
|
||||
#[arg(help = fl!("keygen-help-flag-output"))]
|
||||
#[arg(value_hint = ValueHint::AnyPath)]
|
||||
pub(crate) output: Option<String>,
|
||||
|
||||
#[arg(short = 'y')]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue