Use menu behavior for completion of switches
We already use the menu behavior in complete_command_name(); let's do the same for switches, since we can complete all valid inputs and it can save a Tab key in some scenarios. CommandManager::complete is fairly complex. We can't expect callers to add the menu bit when appropriate, so we currently do it here.
This commit is contained in:
parent
ba557e90a2
commit
8fac31ba76
|
@ -769,7 +769,9 @@ Completions CommandManager::complete(const Context& context,
|
|||
concatenated(command.param_desc.switches
|
||||
| transform(&SwitchMap::Item::key),
|
||||
ConstArrayView<String>{"-"}));
|
||||
return switches.empty() ? Completions{} : Completions{start+1, cursor_pos, std::move(switches)};
|
||||
return switches.empty()
|
||||
? Completions{}
|
||||
: Completions{start+1, cursor_pos, std::move(switches), Completions::Flags::Menu};
|
||||
}
|
||||
if (not command.completer)
|
||||
return Completions{};
|
||||
|
|
Loading…
Reference in New Issue
Block a user