I'm editing a test file which is typically run with prove -l
which automatically includes the lib
directory when searching for packages to load. When editing the file, vim-syntastic reports it can't find the needed packages because it is not looking in the lib
directory.
Is there a way to tell syntastic
to include the lib
directory in the @INC so I can avoid the Can't locate Blah::Blah.pm in @INC
error without having to do use lib 'lib'
at the top of my file?