I have a process that goes something like this:
- Run a command that generates a bunch of results in a bunch of files
- Open a file in vim
- Edit one of the results
- Background vim, get the next result, foreground vim
- Repeat until the list is complete
Each time I background and foreground vim, though, bash/zsh prints two messages that look like this:
[1] + 4321 continued nvim
[1] + 4321 suspended nvim
These are annoying because they eat screen space and eventually the results filter off the screen. I have to rerun the command or continually scroll up and down to find it.
Is there a way to get the "continued/suspended" messages to avoid adding so many newlines? Alternatively, can I suppress them altogether.