Python-mode: can't turn off high light on column 80

Created on 1 Sep 2014  路  4Comments  路  Source: python-mode/python-mode

python mode automatically set highlight on 80 column, I can't seem to find a way to disable it, pylint report errors if I ever wrote a line longer than 79 so I don't need this column highlight

Most helpful comment

You can turn off the red line by setting pymode_options_colorcolumn to 0 in your .vim config like so:

let g:pymode_options_colorcolumn = 0

All 4 comments

You can turn off the red line by setting pymode_options_colorcolumn to 0 in your .vim config like so:

let g:pymode_options_colorcolumn = 0

This is not working for me. Setting
let g:pymode_options_colorcolumn = 0
does nothing, that red line is still there.

set cc=
should eliminate the red line

Was this page helpful?
0 / 5 - 0 ratings

Related issues

lyneca picture lyneca  路  4Comments

eschao picture eschao  路  5Comments

weatherfrog picture weatherfrog  路  6Comments

AdibMurshed picture AdibMurshed  路  10Comments

randomizedthinking picture randomizedthinking  路  7Comments