Works fine for me on Linux.
rm [aA]; touch a; vim -c 'w A' -c q; ls -1i [aA]
My wild-assed guess is that you're running on DOS or Windows, where
filenames are case insensitive and 'a' and 'A' are the same file.
~Matt
Are you running under Windows or Linux?
--
Just my 0.00000002 million dollars worth,
Shawn
The key to success is being too stupid to realize you can fail.
This is a feature of Windows. You can try this at command prompt (no Vim running):
echo 111111 > juNK.txt
dir junk.txt
echo 222222 > Junk.txt
dir junk.txt
The second dir is the same as the first.
John