exclude-indexing-filetree icon indicating copy to clipboard operation
exclude-indexing-filetree copied to clipboard

[BUG] logitem.js gets hidden in folder

Open Anima-t3d opened this issue 9 years ago • 2 comments

I had a file named logitem.js, this was not located in the excluded folders. However it did not show up in the folder. If I disable the extension or rename it like log-item.js it does show up.

Anima-t3d avatar Jun 03 '16 03:06 Anima-t3d

Could you please attach your .gitignore ?

DimitrK avatar Aug 02 '17 22:08 DimitrK

Its not the gitignore, I ran into the same thing with a file named "digital", the expression for gitignore

.git(?!ignore)

treats the dot "." as regex wildcard, so logitem.js and digital get clobbered. I fixed it in my case by changing the spec to

"^\\.git(?!ignore)"

PearlDragon avatar Sep 03 '20 18:09 PearlDragon