add value hints to rage-keygen completions

This commit is contained in:
Stefan Gehr 2024-08-09 11:13:21 +02:00
parent 4ff5e01ae9
commit daf0829142
No known key found for this signature in database

View file

@ -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')]