Closed sadorowo closed 1 year ago
Is there any way to hide command from poise::builtins::autocomplete_command?
poise::builtins::autocomplete_command
The function just returns an iterator so you can just append .filter(|command| command != "...")
.filter(|command| command != "...")
Is there any way to hide command from
poise::builtins::autocomplete_command
?