I opened a rails project in MacVim using:
cd ~/development/book-examples/agile_web_dev_rails/worked_examples/depot
mvim .
I am trying to use Command-T to find ./test/fixtures/products.yml; however, I did not succeed. The screenshot below shows that:
- NERDTree can see
./test/fixtures/products.yml test/Command-T input doesn't even show the directoryfixtures
Any thoughts on why fixtures/products.ymlCommand-T was not found?

Update
If I open only the directory testin MacVim instead of the entire Rails project, using:
cd ~/development/book-examples/agile_web_dev_rails/worked_examples/depot/test
mvim .
Then Command-T can find fixtures/products.yml.
source
share