You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The per-project compilation buffer feature (projectile-per-project-compilation-buffer) is great, but even within a project I'd like to retain the compilation buffers for different tasks (e.g. the buffer for projectile-compile-project vs the buffer for projectile-test-project). Currently all runs of projectile--run-project-cmd within a project share a compilation buffer, so when you run projectile-test-project your projectile-compile-project output is lost, and vice versa. Unfortunately, this doesn't seem possible right now since the "role" for which a given call to projectile--run-project-cmd is in play is not available. This might be a little tricky to do, since the projectile-compilation-buffer-name is invoked indirectly by compile, so the information about what role was selected will need to be retained in some way such that projectile-compilation-buffer-name can subsequently access it.
The text was updated successfully, but these errors were encountered:
The per-project compilation buffer feature (
projectile-per-project-compilation-buffer
) is great, but even within a project I'd like to retain the compilation buffers for different tasks (e.g. the buffer forprojectile-compile-project
vs the buffer forprojectile-test-project
). Currently all runs ofprojectile--run-project-cmd
within a project share a compilation buffer, so when you runprojectile-test-project
yourprojectile-compile-project
output is lost, and vice versa. Unfortunately, this doesn't seem possible right now since the "role" for which a given call toprojectile--run-project-cmd
is in play is not available. This might be a little tricky to do, since theprojectile-compilation-buffer-name
is invoked indirectly bycompile
, so the information about what role was selected will need to be retained in some way such thatprojectile-compilation-buffer-name
can subsequently access it.The text was updated successfully, but these errors were encountered: