Skip to content

Instantly share code, notes, and snippets.

@dahu
Last active October 11, 2015 12:57
Show Gist options
  • Select an option

  • Save dahu/3862265 to your computer and use it in GitHub Desktop.

Select an option

Save dahu/3862265 to your computer and use it in GitHub Desktop.
quiet make
" Quiet Make
"~~~~~~~~~~~~
function! QuietMake()
write
lcd %:p:h
silent! make
lcd -
copen
if empty(len(filter(getqflist(), 'v:val["valid"]')))
cclose
else
wincmd w
endif
redraw!
endfunction
nnoremap <silent> <leader>ma :call QuietMake()<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment