mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 02:47:42 +03:00
Merge pull request #513 from BoostCookie/betterCompletions
Better completions
This commit is contained in:
commit
51760e34ba
3 changed files with 21 additions and 3 deletions
|
@ -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')]
|
||||
|
|
|
@ -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>,
|
||||
}
|
||||
|
|
|
@ -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>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue