We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 61ebe72 + 0887593 commit d6bd7e2Copy full SHA for d6bd7e2
clap_complete/src/engine/complete.rs
@@ -329,10 +329,10 @@ fn complete_arg_value(
329
}
330
} else {
331
match arg.get_value_hint() {
332
- clap::ValueHint::Other => {
+ clap::ValueHint::Unknown | clap::ValueHint::Other => {
333
// Should not complete
334
335
- clap::ValueHint::Unknown | clap::ValueHint::AnyPath => {
+ clap::ValueHint::AnyPath => {
336
values.extend(complete_path(value_os, current_dir, &|_| true));
337
338
clap::ValueHint::FilePath => {
0 commit comments