Print lilypond WARNING when compiling

This commit is contained in:
flyingscorpio@clevo 2023-03-24 12:33:19 +01:00
parent 0aba9d4071
commit d47bb307bd

View file

@ -15,7 +15,7 @@ vim.api.nvim_create_autocmd("VimEnter", {
-- Run lilypond after save on .ly files
vim.api.nvim_create_autocmd("BufWritePost", {
pattern = "*.ly",
command = "![ -f ./Makefile ] && make || lilypond --silent %",
command = "![ -f ./Makefile ] && make || lilypond -l WARNING %",
group = group
})
-- Toggle relative number and absolute number according to focus and insert