mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 19:40:29 +01:00
19 lines
327 B
VimL
19 lines
327 B
VimL
if exists("g:loaded_syntastic_util_autoload")
|
|
finish
|
|
endif
|
|
let g:loaded_syntastic_util_autoload = 1
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
function! syntastic#util#DevNull()
|
|
if has('win32')
|
|
return 'NUL'
|
|
endif
|
|
return '/dev/null'
|
|
endfunction
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|
|
" vim: set et sts=4 sw=4:
|