summaryrefslogtreecommitdiff
path: root/ale_linters/pyrex/cython.vim
blob: 59004314493c41676033d83c42c8ca72db516c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" 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': g:ale#util#stdin_wrapper
\       . ' .pyx cython --warning-extra -o '
\       . g:ale#util#nul_file,
\   'callback': 'ale#handlers#HandleUnixFormatAsError',
\})