max line-width to 120 through pymode parameters

This commit is contained in:
Jie Feng 2017-03-10 21:45:31 +08:00
parent 396eeffe0d
commit aa5f7e59b2
2 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,7 @@ let g:pymode_run_bind = "<C-S-e>"
" Override view python doc key shortcut to Ctrl-Shift-d
let g:pymode_doc_bind = "<C-S-d>"
let g:pymode_lint_ignore = "W0611"
"}}}
let g:syntastic_python_pylint_post_args="--max-line-length=120"
let g:pymode_options_max_line_length=120
augroup filetype_python
autocmd!

View File

@ -12,6 +12,7 @@ let g:syntastic_quiet_messages = {'level': 'warnings'}
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_python_checkers = ['flake8']
let g:syntastic_python_flake8_args='--ignore=F401,F403,F405,W0401'
" let g:syntastic_python_pylint_post_args="--max-line-length=120"
" I have no idea why this is not working, as it used to