enable rope and more linters

This commit is contained in:
Ahir Reddy 2013-07-05 00:45:41 -07:00
commit fe9d2d94be

4
.vimrc
View file

@ -60,7 +60,7 @@ map <F2> :NERDTreeToggle<CR>
" ]] Jump on next class or function (normal, visual, operator modes)
" [M Jump on previous class or method (normal, visual, operator modes)
" ]M Jump on next class or method (normal, visual, operator modes)
let g:pymode_rope = 0
let g:pymode_rope = 1
" Documentation
let g:pymode_doc = 1
@ -68,7 +68,7 @@ let g:pymode_doc_key = 'K'
"Linting
let g:pymode_lint = 1
let g:pymode_lint_checker = "pyflakes,pep8"
let g:pymode_lint_checker = "pyflakes,pep8,pylint,mccabe"
" Auto check on save
let g:pymode_lint_write = 0