Closed TxGVNN closed 3 years ago
Hi @bbatsov,
Today, I ran a command need interactively then I see projectile-compile-project doesn't support comint-mode as compile command is doing.
projectile-compile-project
compile
Should we support it?
C-u M-x projectile-compile-project run (compile cmd t) as C-u M-x compile
C-u M-x projectile-compile-project
(compile cmd t)
C-u M-x compile
C-u M-x projectile-compile-project has the meaning same with (setq compilation-read-command t).
(setq compilation-read-command t)
We had compilation-read-command to decide to read the command or not. So I propose use (C-u) PREFIX to decide to run comint-mode in compilation mode.
compilation-read-command
(C-u) PREFIX
comint-mode
If you see that makes sense and agree on this change. I can take time to work on it
I switched to use project-compile instead, thanks.
project-compile
Fair enough.
Fixed by https://github.com/bbatsov/projectile/pull/1672
Hi @bbatsov,
Today, I ran a command need interactively then I see
projectile-compile-project
doesn't support comint-mode ascompile
command is doing.Should we support it?
Expected behavior
C-u M-x projectile-compile-project
run(compile cmd t)
asC-u M-x compile
Actual behavior
C-u M-x projectile-compile-project
has the meaning same with(setq compilation-read-command t)
.Proposal
We had
compilation-read-command
to decide to read the command or not. So I propose use(C-u) PREFIX
to decide to runcomint-mode
in compilation mode.If you see that makes sense and agree on this change. I can take time to work on it