]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/ftplugin/python/lint.vim
Py310's match keyword highlight
[dotfiles.git] / vim / .vim / ftplugin / python / lint.vim
1 if exists("*python#lint#start") | finish | endif
2 let b:lint_status_func=function("python#lint#status")
3 sign define LN text=LN texthl=Error
4 map <F6> :unlet! g:pylint_disable<CR>:call python#lint#start()<CR>
5 map \e[17;2~ :redraw!<CR>:copen<CR>
6 autocmd BufWritePost *.py call python#lint#start()