Sorry that I don't know the correct word for the line, else I could probably search for it!
After installing python-mode, there is now a vertical line/separator, which probably signals X characters, the recommended line width. How do I remove that?
I think you're referring to the PEP8 max line length visual? The one which shows you if you are crossing the recommended max line length?
If so, this should be configured in your .vimrc with a line like:
let g:pymode_options_max_line_length = 119
where 119 would be the last character position _before_ the vertical line.
If you want to completely remove it, this worked for me:
let g:pymode_options_colorcolumn = 0
@qazip does that works for you? :)
Thanks @jakecolston for answering!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Closed due to inactivity.
Most helpful comment
If you want to completely remove it, this worked for me:
let g:pymode_options_colorcolumn = 0