On Thu, May 11, 2006 at 09:27:25AM -0700, inet working wrote:
> I just installed vim7 on windows xp. the installer
> prog also removed vim6 (i chose to keep the vimrc file
> i'd).
>
> first problem i ran into is, in gvim command mode,
> typing
> :Ex c:\LongDir<TAB>
>
> insert ^I instead of completing the file/dir name to
> LongDirName. This always worked until vim7.
>
> Do I (how) need to edit .vimrc somehow so tab file
> name completion would work again in Vim7 ?
It looks as though you are getting vi-compatible behavior of <TAB>
on the command line. Specifically, 'wildchar' may be set to its
vi-default rather than its vim-default. Please check the following.
:verbose set compatible? cpo? wildchar?
You are supposed to get 'nocompatible' and vim-defaults as soon as vim
finds a user vimrc file, so please also check that your vimrc file is
being loaded by looking at
:scriptnames
HTH --Benji Fisher