add value hints to rage-mount completions

This commit is contained in:
Stefan Gehr 2024-08-09 11:13:30 +02:00
parent daf0829142
commit 26ebfbfc88
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;
@ -24,11 +24,13 @@ pub(crate) struct AgeMountOptions {
#[arg(help_heading = fl!("args-header"))]
#[arg(value_name = fl!("mnt-filename"))]
#[arg(help = fl!("help-arg-mnt-filename"))]
#[arg(value_hint = ValueHint::FilePath)]
pub(crate) filename: String,
#[arg(help_heading = fl!("args-header"))]
#[arg(value_name = fl!("mnt-mountpoint"))]
#[arg(help = fl!("help-arg-mnt-mountpoint"))]
#[arg(value_hint = ValueHint::DirPath)]
pub(crate) mountpoint: String,
#[arg(action = ArgAction::Help, short, long)]
@ -51,5 +53,6 @@ pub(crate) struct AgeMountOptions {
#[arg(short, long)]
#[arg(value_name = fl!("identity"))]
#[arg(help = fl!("help-flag-identity"))]
#[arg(value_hint = ValueHint::FilePath)]
pub(crate) identity: Vec<String>,
}