Add support for checking Cython files

This commit is contained in:
w0rp
2016-10-07 18:33:16 +01:00
parent f6e95586dd
commit da1dcc6bb5
4 changed files with 54 additions and 0 deletions

View File

@@ -30,3 +30,10 @@ endfunction
function! ale#util#FindNearestFile(buffer, filename)
return findfile(a:filename, fnamemodify(bufname(a:buffer), ':p') . ';')
endfunction
" A null file for sending output to nothing.
let g:ale#util#nul_file = '/dev/null'
if has('win32')
let g:ale#util#nul_file = 'nul'
endif