Bozhidar Batsov
Bozhidar Batsov
I guess the main problem with such feature is that we'll have to have two test commands for each project type - one that runs all the tests and one...
Yeah, I agree the approach taken here is a poor one. We can adapt the native indexing function to just collect folders or we can invoke some shell command to...
I'll check if there was some way to suppress the caching. Typically people always use the same command to "run" a project, that's why we cache it after first invocation....
Yeah, that'd be very slow on a bigger project. Perhaps we can make such transformations optional - e.g. a list of functions that get applied to project files or something...
Right now the only way to do something like this would be to set `projectile-git-command` (for instance) to something like `find . --print0`, which would get the job done. Generally...
The only thing I had in mind was adding `project.el` to the list of project sources in Projectile, and also providing a `project.el` source based on Projectile. In general I've...
One more thing - I wouldn't say that `lsp-mode` does anything in a hardcoded manner (https://github.com/emacs-lsp/lsp-mode/blob/fb4c35c6978415c4cf52f85230b527d311989063/lsp-mode.el#L3433-L3436), it does exactly what I suggested. If you installed Projectile probably you'd prefer using...
@leungbk FWIW - I've updated the docs to show how easy it is to use `project-current` with Projectile https://docs.projectile.mx/projectile/projects.html#customizing-project-detection As you can see, project detection itself is a tiny part...
> @bbatsov This is the other way around. Which is a fine thing to do by itself, I suppose. It seemed to me like a reasonable approach for someone already...