Hi, I have zsh set to do case insensitive completion when working with files. However, it does not work with Git. Any ideas? Using Zsh 5.0.5: % zsh -f % autoload -U compinit && compinit % zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' % setopt nocasematch % touch Foo % ls fo[TAB] % ls Foo # completes to foo Foo % git add fo[TAB] # does not complete Kind regards, -- Francisco