Stop ag from excluding directories with ds_store
* 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
This commit is contained in:
parent
192729a5d6
commit
18a4c817bb
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
*.DS_Store
|
||||
.DS_Store
|
||||
*.sw[nop]
|
||||
.bundle
|
||||
.env
|
||||
|
|
Loading…
Add table
Reference in a new issue