* Silver searcher or ag was filtering out any directory that had a .DS_STORE file. Any directory that has a .DS_STORE file in it is being ignored by ag and therefor does not show up in the ctrlp fuzzy finder either. * Removing the * from before .DS_STORE in the gitignore file still prevents .DS_STORE files from being checked into source control and stops ag from filtering out the directory. I am not sure if this is a bug with silver_searcher or what
11 lines
104 B
Text
11 lines
104 B
Text
.DS_Store
|
|
*.sw[nop]
|
|
.bundle
|
|
.env
|
|
db/*.sqlite3
|
|
log/*.log
|
|
rerun.txt
|
|
tags
|
|
!tags/
|
|
tmp/**/*
|
|
!tmp/cache/.keep
|