@@ -134,7 +134,7 @@ Default values: ::
134134
135135 " Switch pylint, pyflakes, pep8, mccabe code-checkers
136136 " Can have multiply values "pep8,pyflakes,mcccabe"
137- let g:pymode_lint_checker = "pylint "
137+ let g:pymode_lint_checker = "pyflakes,pep8,mccabe "
138138
139139 " Skip errors and warnings
140140 " E.g. "E501,W002", "E2,W" (Skip all Warnings and Errors startswith E2) and etc
@@ -329,6 +329,12 @@ Keys Command
329329-------------- -------------
330330**<C-Space> ** Rope autocomplete (g:pymode_rope enabled)
331331-------------- -------------
332+ **<C-c>g ** Rope goto definition (g:pymode_rope enabled)
333+ -------------- -------------
334+ **<C-c>d ** Rope show documentation (g:pymode_rope enabled)
335+ -------------- -------------
336+ **<C-c>f ** Rope find occurrences (g:pymode_rope enabled)
337+ -------------- -------------
332338**<Leader>r ** Run python (g:pymode_run enabled)
333339-------------- -------------
334340**<Leader>b ** Set, unset breakpoint (g:pymode_breakpoint enabled)
@@ -421,7 +427,7 @@ Development of pylint-mode happens at github: https://github.com/klen/python-mod
421427Copyright
422428=========
423429
424- Copyright (C) 2011 Kirill Klenov (klen _)
430+ Copyright (C) 2012 Kirill Klenov (klen _)
425431
426432 **Rope **
427433 Copyright (C) 2006-2010 Ali Gholami Rudi
0 commit comments