.gitignore
but projectile-grep
lists .log
files since I have *.log
in my .gitignore
..projectile
(here) but when I put -*.log
in .projectile
and invalidate cache with projectile-invalidate-cache
it still lists all logs.dir-locals.el
here but when i put ((nil . ((projectile-globally-ignored-files . '("README.md")))))
projectile-grep
remains listing lines from README.md
..projectile
file inside the subdir to mark it as a project. However when calling projectile-find-file
within the subdir, the SVN file list command svn list -R . | grep -v '$/' | tr '\n' '\0'
is used instead of the generic file list command which is find . -type f -print0
. Is this a bug? Anyway I can use the generic-file-list command to list the files in the subdir?
Looks like web-mode is the culprit. I don't think it is projectile related.
Commenting out this config(setq whitespace-line-column 80000)
fixed the issue.
my-project/src/clj/my-project/handler.clj
has test file my-project/test/clj/my-project/test/handler.clj
.
(projectile-project-root)
resolves to my home directory from some Clojure projects (both lein and boot projects are affected); I've taken a look at the source to that function but the cache throws me off the trail -- I can't see why it's jumping up from my actual project root to my home directory
src
path differently than my gradle project.