Command-T doesn't show "spec" files on one project
-
dnagir
Hi,
I've just installed the Command-T with Vim 7.3 (using from iTerm2).
But for some reason no files under "spec" dir appear on *ONE* of the projects. I don't understand why, must be local to the project.
See the video: http://www.youtube.com/watch?v=BoAQQQod74Y
Is there any way to fix it?
Cheers, Dmytrii http://www.ApproachE.com
-
Greg Hurrell
Either:
-
your project directory has more than
g:CommandTMaxFiles
in it (defaults to 10,000); in this case you should raise the limit by adding a setting to your~/.vimrc
Or:
-
your Vim
'wildignore'
setting is set to exclude files under thespec
directory
Both of these options are described in the documentation.
There is also one final possibility:
-
if your project has less than
g:CommandTMaxFiles
in it, your project hierarchy may have a circular reference (ie. a symbolic link that points at one of its parent directories); Command-T makes no attempt to detect his kind of pathological directory structure at this time, although there is a feature request in the issue tracker to do so
-
your project directory has more than
Reply
This topic is now closed.