mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
20 lines
552 B
VimL
20 lines
552 B
VimL
|
" Vim compiler file
|
||
|
" Compiler: Mypy (Python static checker)
|
||
|
" Maintainer: @Konfekt
|
||
|
" Last Change: 2024 Nov 07
|
||
|
|
||
|
if exists("current_compiler") | finish | endif
|
||
|
let current_compiler = "mypy"
|
||
|
|
||
|
let s:cpo_save = &cpo
|
||
|
set cpo&vim
|
||
|
|
||
|
" CompilerSet makeprg=mypy
|
||
|
let &l:makeprg = 'mypy --show-column-numbers '
|
||
|
\ ..get(b:, 'mypy_makeprg_params', get(g:, 'mypy_makeprg_params', '--strict --ignore-missing-imports'))
|
||
|
exe 'CompilerSet makeprg='..escape(&l:makeprg, ' "')
|
||
|
CompilerSet errorformat=%f:%l:%c:\ %t%*[^:]:\ %m
|
||
|
|
||
|
let &cpo = s:cpo_save
|
||
|
unlet s:cpo_save
|