Open ProjectMoon opened 9 years ago
Projectile already works with git
, mercurial
, darcs
and bazaar
repositories. How would your suggestion work if the project you are working with is already in one of these types of repositories?
Probably just override it, instead of using the repo. The specific use case I have for this is one workspace with projects spread across directories that are not in the same hierarchy. Yes, it's a bit contrived...
I have similar situation. Several git repos in one workspace
It would be cool if emacs-eclim had integration with projectile. You can define completion functions for projectile to get it to list files. A workspace-scope search would work fine for this.
Eclim itself does have the ability to search files, although it only seems to list 100 at a time. I was playing around with it yesterday:
eclim -command locate_file -i -p '.*\.java' -s 'workspace' | jq -r '.[] | .path'
Using the jq command-line JSON parser returns a list of files that projectile can read.