ale/ale_linters/pyrex/cython.vim

11 lines
337 B
VimL
Raw Normal View History

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