Is it possible to call :make in vim in linux without showing the shell
vim
Solution
I'm using next line just for exact purpose you wrote:
nnoremap <leader>m :silent make\|redraw!\|cc<CR>
`cc` in the end shows first error or `No errors` message if this is the case.
Problem
I've been trying to experiment with using `:make` recently but I don't like that vim has to switch to showing the shell output first and require one enter keypress, then it shows me what I think is a list of the collected errors based on `'errorformat'` which I also need to confirm by pressing enter. I would prefer to just have a short "OK" message that does not require confirmation by a keypress, or that vim would open the `:cwindow` if there were any errors.