python - Vim: Change Max Line from 80 in pymode -


I am using a plugin, which has a PymodeLintAuto feature that automatically fix PEP 8 errors in the current buffer Do ' I was wondering how I could change the length of the maximum line. I can not find it in

if Python-mode is using PyLint, you specify it You may want to increase the errors that you have made in it by creating a customized pylint.rc and then using a setting in your .vimrc by Pymode is included.

.vimrc:

  Allow "Pylint configuration file g: pymode_lint_config = '$ HOME / pylint.rc'  

Pilint.rc:

  [FORMAT] # Maximum number of characters on a line. Max-line-length = 120  

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -