diff options
author | Joe Neeman <joeneeman@gmail.com> | 2007-08-19 07:52:31 +1000 |
---|---|---|
committer | Joe Neeman <joeneeman@gmail.com> | 2007-08-19 07:52:31 +1000 |
commit | 4da8e73e69a7f63af88ec9f31c399f53dbc03b78 (patch) | |
tree | ad75874eb400e22da9b17931613e3036de53d8ed /vim | |
parent | 92d1a61acbd9b8a4556eaff60894426b7e133e6f (diff) |
Fix 392.
Escape a space in lilypond-compiler.vim.
Diffstat (limited to 'vim')
-rw-r--r-- | vim/lilypond-compiler.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/lilypond-compiler.vim b/vim/lilypond-compiler.vim index 7087f3d064..a998a3ebb0 100644 --- a/vim/lilypond-compiler.vim +++ b/vim/lilypond-compiler.vim @@ -12,7 +12,7 @@ endif let current_compiler = "lilypond" " default make -setlocal makeprg=lilypond $* +setlocal makeprg=lilypond\ $* " errorformat for lily (with columns) and gcc " (how to see multiple-line error messages?) setlocal errorformat=%f:%l:%c:\ %m,%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m |