/bundle/syntastic/syntax_checkers/python/pyflakes.vim

https://bitbucket.org/boralyl/my-vimrc · Vim Script · 34 lines · 22 code · 4 blank · 8 comment · 8 complexity · 729402dd94d6414e09822844b76ba69f MD5 · raw file

  1. "============================================================================
  2. "File: pyflakes.vim
  3. "Description: Syntax checking plugin for syntastic.vim
  4. "Authors: Martin Grenfell <martin.grenfell@gmail.com>
  5. " kstep <me@kstep.me>
  6. " Parantapa Bhattacharya <parantapa@gmail.com>
  7. "
  8. "============================================================================
  9. function! SyntaxCheckers_python_GetHighlightRegex(i)
  10. if match(a:i['text'], 'is assigned to but never used') > -1
  11. \ || match(a:i['text'], 'imported but unused') > -1
  12. \ || match(a:i['text'], 'undefined name') > -1
  13. \ || match(a:i['text'], 'redefinition of') > -1
  14. \ || match(a:i['text'], 'referenced before assignment') > -1
  15. \ || match(a:i['text'], 'duplicate argument') > -1
  16. \ || match(a:i['text'], 'after other statements') > -1
  17. \ || match(a:i['text'], 'shadowed by loop variable') > -1
  18. let term = split(a:i['text'], "'", 1)[1]
  19. return '\V\<'.term.'\>'
  20. endif
  21. return ''
  22. endfunction
  23. function! SyntaxCheckers_python_GetLocList()
  24. let makeprg = 'pyflakes '.g:syntastic_python_checker_args.' '.shellescape(expand('%'))
  25. let errorformat = '%E%f:%l: could not compile,%-Z%p^,%E%f:%l:%c: %m,%E%f:%l: %m,%-G%.%#'
  26. let errors = SyntasticMake({ 'makeprg': makeprg,
  27. \ 'errorformat': errorformat,
  28. \ 'defaults': {'text': "Syntax error"} })
  29. return errors
  30. endfunction