src/cli/command.rs: improve completions

This commit is contained in:
Dietmar Maurer 2019-03-12 12:07:45 +01:00
parent 4ba7b6099c
commit f4e4d58327

View File

@ -544,9 +544,11 @@ fn print_nested_completion(def: &CommandLineInterface, args: &[String]) {
return; return;
} }
let first = &args[0]; let first = &args[0];
if let Some(sub_cmd) = map.commands.get(first) { if args.len() > 1 {
print_nested_completion(sub_cmd, &args[1..]); if let Some(sub_cmd) = map.commands.get(first) {
return; print_nested_completion(sub_cmd, &args[1..]);
return;
}
} }
for cmd in map.commands.keys() { for cmd in map.commands.keys() {
if cmd.starts_with(first) { if cmd.starts_with(first) {