I've just installed flake8-vim with Vundle. After :PyFlake I am getting following errors:
Error detected while processing function flake8#run..flake8#check:
line 1:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'flake8_check' is not defined
line 3:
E121: Undefined variable: g:qf_list
E15: Invalid expression: g:qf_list
line 6:
E121: Undefined variable: g:qf_list
E116: Invalid arguments for function setqflist
line 16:
E121: Undefined variable: g:qf_list
E116: Invalid arguments for function len(g:qf_list)
E15: Invalid expression: len(g:qf_list)
Press ENTER or type command to continue
My .vimrc is:
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'andviro/flake8-vim'
call vundle#end() " required
filetype plugin indent on " required
I have flake8 installed:
$ flake8 --version
2.5.1 (pep8: 1.7.0, pyflakes: 1.5.0, mccabe: 0.3.1) CPython 2.7.12 on Linux
and python2:
$ python2 --version
Python 2.7.12 :: Continuum Analytics, Inc.
I've just installed flake8-vim with Vundle. After
:PyFlake
I am getting following errors:My .vimrc is:
I have flake8 installed:
and python2:
and vim of course:
Am I doing something wrong or is it some kind of a bug?