update the blurb

This commit is contained in:
Martin Grenfell 2009-07-11 15:57:03 +12:00
parent ad555bc093
commit 256b4225f2

View File

@ -47,9 +47,9 @@
" "
"This way, a typical syntax checker function can look like this: "This way, a typical syntax checker function can look like this:
" "
" function! SyntaxCheckers_php_GetQFList() " function! SyntaxCheckers_ruby_GetQFList()
" set makeprg=php\ -l\ % " set makeprg=ruby\ -c\ %
" set errorformat=something\ really\ long\ and\ horrid " set errorformat=%A%f:%l:\ syntax\ error\\,\ %m,%Z%p^,%-C%.%#
" silent make! " silent make!
" return getqflist() " return getqflist()
" endfunction " endfunction
@ -57,6 +57,10 @@
"After this function is called, makeprg, errorformat and the quickfix list "After this function is called, makeprg, errorformat and the quickfix list
"will be restored to their previous settings. "will be restored to their previous settings.
" "
"NOTE: syntax checkers *can* piggy back off :make, but they dont *have* to. If
"&errorformat is too crazy for you then you can parse the syntax checker
"output yourself and compile it into the qflist style data structure.
"
" "
"Options: "Options:
"---------------------------------------------------------------------------- "----------------------------------------------------------------------------