mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
parent
62a5ace9f1
commit
3a222def22
4 changed files with 48 additions and 17 deletions
|
@ -168,29 +168,48 @@ fn option_details_for_path(cmd: &Command, path: &str) -> String {
|
|||
let mut opts = vec![String::new()];
|
||||
|
||||
for o in p.get_opts() {
|
||||
let compopt = match o.get_value_hint() {
|
||||
ValueHint::FilePath => Some("compopt -o filenames"),
|
||||
_ => None,
|
||||
};
|
||||
|
||||
if let Some(longs) = o.get_long_and_visible_aliases() {
|
||||
opts.extend(longs.iter().map(|long| {
|
||||
format!(
|
||||
"--{})
|
||||
COMPREPLY=({})
|
||||
return 0
|
||||
;;",
|
||||
long,
|
||||
vals_for(o)
|
||||
)
|
||||
let mut v = vec![
|
||||
format!("--{})", long),
|
||||
format!("COMPREPLY=({})", vals_for(o)),
|
||||
];
|
||||
|
||||
if let Some(copt) = compopt {
|
||||
v.extend([
|
||||
r#"if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then"#.to_string(),
|
||||
format!(" {}", copt),
|
||||
"fi".to_string(),
|
||||
]);
|
||||
}
|
||||
|
||||
v.extend(["return 0", ";;"].iter().map(|s| s.to_string()));
|
||||
v.join("\n ")
|
||||
}));
|
||||
}
|
||||
|
||||
if let Some(shorts) = o.get_short_and_visible_aliases() {
|
||||
opts.extend(shorts.iter().map(|short| {
|
||||
format!(
|
||||
"-{})
|
||||
COMPREPLY=({})
|
||||
return 0
|
||||
;;",
|
||||
short,
|
||||
vals_for(o)
|
||||
)
|
||||
let mut v = vec![
|
||||
format!("-{})", short),
|
||||
format!("COMPREPLY=({})", vals_for(o)),
|
||||
];
|
||||
|
||||
if let Some(copt) = compopt {
|
||||
v.extend([
|
||||
r#"if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then"#.to_string(),
|
||||
format!(" {}", copt),
|
||||
"fi".to_string(),
|
||||
]);
|
||||
}
|
||||
|
||||
v.extend(["return 0", ";;"].iter().map(|s| s.to_string()));
|
||||
v.join("\n ")
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -554,10 +554,16 @@ _exhaustive() {
|
|||
;;
|
||||
--file)
|
||||
COMPREPLY=($(compgen -f "${cur}"))
|
||||
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
|
||||
compopt -o filenames
|
||||
fi
|
||||
return 0
|
||||
;;
|
||||
-f)
|
||||
COMPREPLY=($(compgen -f "${cur}"))
|
||||
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
|
||||
compopt -o filenames
|
||||
fi
|
||||
return 0
|
||||
;;
|
||||
--dir)
|
||||
|
|
|
@ -47,10 +47,16 @@ _my-app() {
|
|||
;;
|
||||
--file)
|
||||
COMPREPLY=($(compgen -f "${cur}"))
|
||||
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
|
||||
compopt -o filenames
|
||||
fi
|
||||
return 0
|
||||
;;
|
||||
-f)
|
||||
COMPREPLY=($(compgen -f "${cur}"))
|
||||
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
|
||||
compopt -o filenames
|
||||
fi
|
||||
return 0
|
||||
;;
|
||||
--dir)
|
||||
|
|
|
@ -164,7 +164,7 @@ fn complete() {
|
|||
|
||||
// Issue 5239 (https://github.com/clap-rs/clap/issues/5239)
|
||||
let input = "exhaustive hint --file test\t";
|
||||
let expected = "exhaustive hint --file test % exhaustive hint --file tests ";
|
||||
let expected = "exhaustive hint --file test % exhaustive hint --file tests/";
|
||||
let actual = runtime.complete(input, &term).unwrap();
|
||||
snapbox::assert_eq(expected, actual);
|
||||
|
||||
|
|
Loading…
Reference in a new issue