I installed my Mac with a case sensitive filesystem.
Everything is fine, other than Zsh not being as fluent as it used to be. I've confirmed the Oh-My-Zsh variable CASE_SENSITIVE
is commented out in .zshrc but it's still failing to find folders of different cases when using tab autocompletion.
$ mkdir /tmp/foo
$ cd /tmp/foo
$ mkdir foo fOo FOO
$ cd f<tab>
foo/ fOo/
I've confirmed CASE_SENSITIVE
is unset:
$ [[ -z "$CASE_SENSITIVE" ]] && echo Yep
Yep
Is this a bug, or am I just missing something?