Open noseglid opened 8 years ago
I do have this problem too, I would like to maintain configuration files out of versioning, not everyone uses atom here.
I actually created my own package for autocomplete. It's not "done" (is it ever?), but use it daily. Check it out: https://atom.io/packages/autocomplete-java-minus
I have
.classpath
in my gitignore and generate it for each project I work on. This makesautocomplete-java
not do anything at all.I have tracked the issue to this offending line which uses
atom.workspace.scan
. This doesn't match ignored files. This was introduced in f6947d96f26314425ec680013d38fdcf78172a5a.Taking my
.classpath
out of.gitignore
and everything refreshes as expected.Is there a reason for using
atom.workspace.scan
?