vim-flake8
vim-flake8 copied to clipboard
Flake8 plugin for Vim
I try to add this ``` autocmd bufenter * if (winnr("$") == 1 && exists("b:loaded_flake8_ftplugin") && b:loaded_flake8_ftplugin == "primary") | q | endif ``` but it not work
Fixes #100 The following options are useful when vim is configured to run `:Flake8` when first opening a file with something like the following: ```vim autocmd BufReadPost *.py call flake8#Flake8()...
Seeing an issue where when opening a python file from a stream, and if flake8 is set to open by default using other VIM options, then it results in a...
MWE ``` if __name__ == "__main__": foo. ``` I know this doesn't seem like it would occur very often, but it seems to happen to me lot. It's something about...
Is it possible to distinguish between errors that come from the linter (syntax errors) and PEP-8 violations? I'd like to have different colors and symbols for them. If not possible,...
I am using anaconda as my default python and I do not have a `~/.config/flake8` file
When I try `:call flake8#Flake8UnplaceMarkers()`, either manually or with the `autocmd` I set up for it (on ``), I get the following error: ``` Error detected while processing function flake8#Flake8UnplaceMarkers[1]..79_UnplaceMarkers:...
I added the next option to my `.vimrc`: `let g:flake8_complexity_marker='' " disable McCabe complexity warnings` But running `flake#Flake8()` still displays complexity warnings:  Could you please advise?
I've got flake8 checking enabled via autocmd for reading files. Unfortunately, this makes it so when I open a .py file, flake8 runs, opens error list window, and moves my...
When I try to go to the error(inconsistency with pep-8) in my code after running vim-flake8, by pressing enter. `E21: Cannot make changes, 'modifiable' is off` How do I resolve...