source /tmp/zsh_repos/zsh-autocomplete/zsh-autocomplete.plugin.zsh
alias my_custom_command1=""
function my_custom_command2() {}
my_custom_command3() {}
When I type my_custom_ the plugin only suggests my_custom_command1:
But it is expected to suggest my_custom_command1, my_custom_command2, and my_custom_command3
Environment
Steps to reproduce
The
.zshrc
file content:When I type
my_custom_
the plugin only suggestsmy_custom_command1
:But it is expected to suggest
my_custom_command1
,my_custom_command2
, andmy_custom_command3