Merge pull request #513 from BoostCookie/betterCompletions

Better completions
This commit is contained in:
Jack Grigg 2024-08-28 05:44:15 -07:00 committed by GitHub
commit 51760e34ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 3 deletions

View file

@ -1,4 +1,7 @@
use clap::{builder::Styles, ArgAction, Parser};
use clap::{
builder::{Styles, ValueHint},
ArgAction, Parser,
};
use crate::fl;
@ -22,6 +25,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 +39,7 @@ pub(crate) struct AgeOptions {
#[arg(short, long)]
#[arg(value_name = fl!("output"))]
#[arg(help = fl!("keygen-help-flag-output"))]
#[arg(value_hint = ValueHint::DirPath)]
pub(crate) output: Option<String>,
#[arg(short = 'y')]

View file

@ -1,4 +1,7 @@
use clap::{builder::Styles, ArgAction, Parser};
use clap::{
builder::{Styles, ValueHint},
ArgAction, Parser,
};
use crate::fl;
@ -24,11 +27,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 +56,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>,
}

View file

@ -1,6 +1,9 @@
use std::path::Path;
use clap::{builder::Styles, ArgAction, Parser};
use clap::{
builder::{Styles, ValueHint},
ArgAction, Parser,
};
use crate::fl;
@ -99,6 +102,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 +141,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 +158,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>,
}