exclude-indexing-filetree
exclude-indexing-filetree copied to clipboard
[BUG] logitem.js gets hidden in folder
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.
Could you please attach your .gitignore ?
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)"