From 4b2e024f82b08092c9b16d7b2378b5747fbaa65a Mon Sep 17 00:00:00 2001 From: Tim Mower Date: Fri, 23 Aug 2013 11:33:21 +0100 Subject: [PATCH] Update with explanation of override behaviour Hope I'm clear enough here - I ran into an issue with the phpcs example where it specifies --report=csv by default, adding my options didnt include this default so I had to add my new argument and the default to the option. --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 30c96ccb..a540de1a 100644 --- a/README.markdown +++ b/README.markdown @@ -106,7 +106,7 @@ __Q. Recently some of my syntax checker options have stopped working...__ A. The options are still there, they have just been renamed. Recently, almost all syntax checkers were refactored to use the new `syntastic#makeprg#build()` function. This made a lot of the old explicit options redundant - as they are now implied. The new implied options usually have slightly different names to the old options. -e.g. Previously there was `g:syntastic_phpcs_conf`, now you must use `g:syntastic_php_phpcs_args`. +e.g. Previously there was `g:syntastic_phpcs_conf`, now you must use `g:syntastic_php_phpcs_args`. This completely overrides the arguments of the checker, including any defaults, so you may need to look up the default arguments of the checker and add these in. See `:help syntastic-checker-options` for more information.