Eddy Zhao wrote:
Sorry, forget to mention, I'm using vim on linux.

2006/9/1, Eddy Zhao <[EMAIL PROTECTED]>:
Hi,

    I'm using vim 7.0, and find glob is case-sensitive. Is there way
to make glob case-insensitive ? I'm asking this because some plugin
(like lookupfile) rely on glob, and case-sensitive globbing is very
inconvenient. (BTW, I'm  finding on windows glob is case-insensitive)

Thanks
Eddy



glob() reflects the behaviour of the underlying filesystem. In Windows, "dir FoO*.*" will list both FOOBAR.TXT and foobar.htm if present. In Linux, "ls -l FoO*" will list neither, even if present. That's why glob() is case-insensitive in Windows and case-sensitive in Linux.


Best regards,
Tony.

Reply via email to