mirror of
https://github.com/str4d/rage.git
synced 2025-04-05 11:57:41 +03:00
add value hints to rage completions
This commit is contained in:
parent
d2c2e895bf
commit
4ff5e01ae9
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
use clap::{builder::Styles, ArgAction, Parser};
|
use clap::{builder::{Styles, ValueHint}, ArgAction, Parser};
|
||||||
|
|
||||||
use crate::fl;
|
use crate::fl;
|
||||||
|
|
||||||
|
@ -99,6 +99,7 @@ pub(crate) struct AgeOptions {
|
||||||
#[arg(help_heading = fl!("args-header"))]
|
#[arg(help_heading = fl!("args-header"))]
|
||||||
#[arg(value_name = fl!("input"))]
|
#[arg(value_name = fl!("input"))]
|
||||||
#[arg(help = fl!("help-arg-input"))]
|
#[arg(help = fl!("help-arg-input"))]
|
||||||
|
#[arg(value_hint = ValueHint::FilePath)]
|
||||||
pub(crate) input: Option<String>,
|
pub(crate) input: Option<String>,
|
||||||
|
|
||||||
#[arg(action = ArgAction::Help, short, long)]
|
#[arg(action = ArgAction::Help, short, long)]
|
||||||
|
@ -137,11 +138,13 @@ pub(crate) struct AgeOptions {
|
||||||
#[arg(short = 'R', long)]
|
#[arg(short = 'R', long)]
|
||||||
#[arg(value_name = fl!("recipients-file"))]
|
#[arg(value_name = fl!("recipients-file"))]
|
||||||
#[arg(help = fl!("help-flag-recipients-file"))]
|
#[arg(help = fl!("help-flag-recipients-file"))]
|
||||||
|
#[arg(value_hint = ValueHint::FilePath)]
|
||||||
pub(crate) recipients_file: Vec<String>,
|
pub(crate) recipients_file: Vec<String>,
|
||||||
|
|
||||||
#[arg(short, long)]
|
#[arg(short, long)]
|
||||||
#[arg(value_name = fl!("identity"))]
|
#[arg(value_name = fl!("identity"))]
|
||||||
#[arg(help = fl!("help-flag-identity"))]
|
#[arg(help = fl!("help-flag-identity"))]
|
||||||
|
#[arg(value_hint = ValueHint::FilePath)]
|
||||||
pub(crate) identity: Vec<String>,
|
pub(crate) identity: Vec<String>,
|
||||||
|
|
||||||
#[arg(short = 'j')]
|
#[arg(short = 'j')]
|
||||||
|
@ -152,5 +155,6 @@ pub(crate) struct AgeOptions {
|
||||||
#[arg(short, long)]
|
#[arg(short, long)]
|
||||||
#[arg(value_name = fl!("output"))]
|
#[arg(value_name = fl!("output"))]
|
||||||
#[arg(help = fl!("help-flag-output"))]
|
#[arg(help = fl!("help-flag-output"))]
|
||||||
|
#[arg(value_hint = ValueHint::AnyPath)]
|
||||||
pub(crate) output: Option<String>,
|
pub(crate) output: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue