On Sun, Nov 30, 2008 at 10:49 PM, bgold12 wrote: > > Hey, I've just discovered that vim doesn't retain the case of the > filename you provide as the argument to the :write command if there's > a filename by the same name but different case in the folder you're > saving to, or if you're writing a file that's already has the same > name but different case as the one you're saving.
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 --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
