diff --git a/.vim/bundle/pyflakes/plugin/pyflakes.vim b/.vim/bundle/pyflakes/plugin/pyflakes.vim index 3514f9922..d8009cc2a 100644 --- a/.vim/bundle/pyflakes/plugin/pyflakes.vim +++ b/.vim/bundle/pyflakes/plugin/pyflakes.vim @@ -114,18 +114,18 @@ if !b:did_python_init finish endif -au BufLeave call s:ClearPyflakes() +au BufLeave * call s:ClearPyflakes() -au BufEnter call s:RunPyflakes() -au InsertLeave call s:RunPyflakes() -au InsertEnter call s:RunPyflakes() -au BufWritePost call s:RunPyflakes() +au BufEnter * call s:RunPyflakes() +au InsertLeave * call s:RunPyflakes() +au InsertEnter * call s:RunPyflakes() +au BufWritePost * call s:RunPyflakes() -au CursorHold call s:RunPyflakes() -au CursorHoldI call s:RunPyflakes() +au CursorHold * call s:RunPyflakes() +au CursorHoldI * call s:RunPyflakes() -au CursorHold call s:GetPyflakesMessage() -au CursorMoved call s:GetPyflakesMessage() +au CursorHold * call s:GetPyflakesMessage() +au CursorMoved * call s:GetPyflakesMessage() if !exists("*s:PyflakesUpdate") function s:PyflakesUpdate()