add value hints to rage completions

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

View file

@ -1,6 +1,6 @@
use std::path::Path;
use clap::{builder::Styles, ArgAction, Parser};
use clap::{builder::{Styles, ValueHint}, ArgAction, Parser};
use crate::fl;
@ -99,6 +99,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)]
@ -137,11 +138,13 @@ pub(crate) struct AgeOptions {
#[arg(short = 'R', long)]
#[arg(value_name = fl!("recipients-file"))]
#[arg(help = fl!("help-flag-recipients-file"))]
#[arg(value_hint = ValueHint::FilePath)]
pub(crate) recipients_file: Vec<String>,
#[arg(short, long)]
#[arg(value_name = fl!("identity"))]
#[arg(help = fl!("help-flag-identity"))]
#[arg(value_hint = ValueHint::FilePath)]
pub(crate) identity: Vec<String>,
#[arg(short = 'j')]
@ -152,5 +155,6 @@ pub(crate) struct AgeOptions {
#[arg(short, long)]
#[arg(value_name = fl!("output"))]
#[arg(help = fl!("help-flag-output"))]
#[arg(value_hint = ValueHint::AnyPath)]
pub(crate) output: Option<String>,
}