Imaging the following directory:
.
├── SomeProject.Essentials
└── SomeProject.Utils
drwxr-xr-x@ 2 some-user staff 64 26 Dez 13:32 SomeProject.Essentials
drwxr-xr-x@ 2 some-user staff 64 26 Dez 13:32 SomeProject.Utils
When opening a zsh shell there, typing cd *utils
and pressing TAB I want the current line to be completed as cd SomeProject.Utils
.
It should work in the same way as in the PowerShell.
My .zshrc
file looks like this:
autoload -Uz compinit && compinit
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|=*' 'l:|=* r:|=*'
How do I manage that?