summaryrefslogtreecommitdiff
path: root/ale_linters/pyrex/cython.vim
blob: bd5a447fb41e55008ed8500f36b0fd7d5b77336d (plain)
1
2
3
4
5
6
7
8
9
10
" 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',
\})