I have some autogenerated python files that are extremely large (long mathematical equations). Vim slows to a crawl when I open them for editing because I have pyflakes-vim installed. I'd like to be able to disable pyflakes-vim only when I open these long files. Is there a simple way to do this, either before opening the file or even after? I do not want to turn off pyflakes-vim for all python files, just a case-by-case basis.

link|improve this question

Could you define "extremely large"? I haven't seen that behaviour with 'flakes ever. – ldigas Nov 29 '11 at 21:21
feedback

2 Answers

PyFlakes won't run if b:did_pyflakes_plugin is defined when the plugin is loaded, but once it's loaded I don't think there's an easy way to disable it.

What I would do is give the auto-generated files a specific file name pattern (say *_auto.py) and then add to my .vimrc: autocmd BufReadPre *_auto.py :let b:did_pyflakes_plugin=1.

link|improve this answer
Thanks, that works great. – moorepants Nov 26 '11 at 7:25
feedback
up vote 1 down vote accepted

I've found another solution which is handy: https://github.com/kevinw/pyflakes-vim/pull/47

This fork of pyflakes-vim, which has not been merged in yet, allows you to toggle pyflakes on or off.

link|improve this answer
It looks like pyflakes-vim is no longer been maintained. I've emailed the author, send a pull request, created an issue in the bug tracker but never got a response. Would you be interested in getting your changes merged properly in a newly maintained pyflakes-vim fork? – alfredodeza Dec 1 '11 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.