README: update the recipe for config files.

This commit is contained in:
LCD 47 2016-08-09 09:39:49 +03:00
parent 88b66584b5
commit 26038cc19d
2 changed files with 2 additions and 2 deletions

View File

@ -456,7 +456,7 @@ For example for `jscs`:
```vim ```vim
function! FindConfig(prefix, what, where) function! FindConfig(prefix, what, where)
let cfg = findfile(a:what, escape(a:where, ' ') . ';') let cfg = findfile(a:what, escape(a:where, ' ') . ';')
return cfg !=# '' ? ' ' . a:prefix . ' ' . cfg : '' return cfg !=# '' ? ' ' . a:prefix . ' ' . shellescape(cfg) : ''
endfunction endfunction
autocmd FileType javascript let b:syntastic_javascript_jscs_args = autocmd FileType javascript let b:syntastic_javascript_jscs_args =

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START lockvar! g:_SYNTASTIC_START
endif endif
let g:_SYNTASTIC_VERSION = '3.7.0-177' let g:_SYNTASTIC_VERSION = '3.7.0-178'
lockvar g:_SYNTASTIC_VERSION lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1 " Sanity checks {{{1