With my current workflow, I frequently use CTRL-z to suspend Vim so I can enter a quick few commands before resuming editing my code with fg (actually, it's CTRL-z again, thanks to the handy ZSH tip on this blog post). The issue is, my terminal ends up being cluttered with job suspension messages which is distracting from the output I wish to see.
Unwanted output:
[1] + continued vim
zsh: suspended vim
The following screenshot shows what this can end up looking like in a standard session:
So my question; is there a way to stop CTRL-z and fg printing any output?
screen
ortmux
to avoid the problem altogether. – Otheus Jan 02 '16 at 02:12vim
using:! your_command
? – Jakuje Jan 02 '16 at 13:04