1
0
Fork 0
mirror of synced 2024-05-28 13:01:12 -04:00
ultimate-vim/sources_non_forked/ale/ale_linters/pyrex/cython.vim

11 lines
337 B
VimL
Raw Normal View History

" Author: w0rp <devw0rp@gmail.com>
" Description: cython syntax checking for cython files.
call ale#linter#Define('pyrex', {
\ 'name': 'cython',
\ 'output_stream': 'stderr',
\ 'executable': 'cython',
\ 'command': 'cython --warning-extra -o ' . g:ale#util#nul_file . ' %t',
\ 'callback': 'ale#handlers#unix#HandleAsError',
\})