I am a vim user and has nerdcommenter plugin, the problem is when I use <leader>c<space>
to comment out code (also block of code), it prefix # right in front of the code, but pep8 style checker is complaining that I should have a space after the #
eg.
#string = 'abc'
but I want it to comment to:
# string = 'abc'