From 82ef85ef0a74c92b5b3768d1f58b8684a4817f1e Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Mon, 23 Aug 2021 12:43:51 +0200 Subject: [PATCH] .vimrc: make lilypond command silent --- dotfiles/vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index a78540d..b14fce8 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -198,7 +198,7 @@ augroup configgroup " Open pdf after entering .ly file for side-by-side autocmd VimEnter *.ly silent ![ -f ./%:r.pdf ] && zathura %:r.pdf & " Run lilypond after save on .ly files - autocmd BufWritePost *.ly !lilypond % + autocmd BufWritePost *.ly !lilypond --silent % " Toggle relative number and absolute number according to focus and insert autocmd BufEnter,FocusGained,InsertLeave * set relativenumber