If you do the following in Bash
$ touch b bb bbb
$ ls b* # press tab twice
b bb bbb
If you do the same in ZSH you get
➜ ls b bb bbb
ZSH expand the matches to the command and hence removes the *
.
Question
Is it possible to get ZSH to have the same tab completion as Bash?