66 (__) (__) (__) (_) (_)(_____)(_)\_) (_/\/\_)(_____)(____/(____) ~
77
88
9- Version: 0.6.14
9+ Version: 0.6.16
1010
1111==============================================================================
1212CONTENTS *Python-mode-contents*
@@ -29,7 +29,7 @@ Python-mode is a vim plugin that allows you to use the pylint, rope, and pydoc
2929libraries in vim to provide features like python code bug checking,
3030refactoring, and some other useful things.
3131
32- This plugin allow you create python code in vim very easily. There is no need
32+ This plugin allows you to create python code in vim very easily. There is no need
3333to install the pylint or rope libraries on your system.
3434
3535
@@ -122,9 +122,9 @@ To enable any of the options below you should put the given line in your
1221222.2. Modeline ~
123123 *PythonModeModeline*
124124
125- Feature like VIM modeline `:help modeline`. Allow changing pymode options for
126- edited file. Pymode modeline should always be the last line in the file and
127- look like:
125+ The VIM modeline `:help modeline` feature allows you to change pymode
126+ options for the current file. Pymode modeline should always be the
127+ last line in the vimrc file and look like:
128128
129129>
130130 # pymode:lint_ignore=E0202:doc=0:lint_write=0
@@ -142,7 +142,7 @@ Set linters and mccabe complexity.
142142 # pymode:lint_checker=pip,mccabe:lint_mccabe_complexity=10
143143<
144144
145- This changes will work only in current buffer.
145+ These changes will work only in the current buffer.
146146
147147------------------------------------------------------------------------------
148148 *'pymode'*
@@ -156,7 +156,7 @@ If this option is set to 0 then the whole plugin is disabled
156156Values: List of strings
157157Default: [].
158158
159- This option set additional python import paths
159+ This option sets additional python import paths
160160
161161------------------------------------------------------------------------------
162162 *'pymode_doc'*
@@ -169,20 +169,20 @@ If this option is set to 0 then the doc script is disabled.
169169 *'pymode_doc_key'*
170170Default: 'K'.
171171
172- Set key for show python documentation.
172+ Set the key to show the show python documentation.
173173
174174------------------------------------------------------------------------------
175175 *'pymode_run'*
176176Values: 0 or 1.
177177Default: 1.
178178
179- If this option is set to 0 then run script is disabled.
179+ If this option is set to 0 then the run script is disabled.
180180
181181------------------------------------------------------------------------------
182182 *'pymode_run_key'*
183183Default: '<leader> r'.
184184
185- Set key for run python code.
185+ Set the key for running python code.
186186
187187------------------------------------------------------------------------------
188188 *'pymode_lint'*
@@ -279,7 +279,7 @@ Values: 0 or 1.
279279Default: 0.
280280
281281If this option is set to 0 then pylint will switch on the quickfix window when
282- it opens. Doesn't work when | 'pymode_lint_jump' | enabled.
282+ it opens. Doesn't work when | 'pymode_lint_jump' | is enabled.
283283
284284------------------------------------------------------------------------------
285285 *'pymode_lint_minheight'*
@@ -349,7 +349,7 @@ not be used.
349349Values: 0 or 1.
350350Default: 1.
351351
352- If this option is set to 1, pymode will enable python indentation support
352+ If this option is set to 1, pymode will enable python indentation support.
353353
354354------------------------------------------------------------------------------
355355 *'pymode_folding'*
@@ -452,8 +452,8 @@ iM Operation with inner function or method.
452452Python-mode doesn't work
453453------------------------
454454
455- Run ":call pymode#troubleshooting#Test()" and fix the warning or send me the
456- output.
455+ Open any python file and run ":call pymode#troubleshooting#Test()",
456+ fix the warning or send me the output.
457457
458458
459459Rope completion is very slow
@@ -463,8 +463,8 @@ To work, rope_ creates a service directory: `.ropeproject`. If
463463| 'pymode_rope_guess_project' | is set on (as it is by default) and
464464`.ropeproject` is not found in the current dir, rope will scan for
465465`.ropeproject` in every dir in the parent path. If rope finds `.ropeproject`
466- in parent dirs, rope sets project for all child dir and the scan may be slow
467- for many dirs and files.
466+ in parent dirs, rope sets projectis for all child dirs and the scan may be
467+ slow for many dirs and files.
468468
469469Solutions:
470470
@@ -479,7 +479,7 @@ Solutions:
479479Pylint check is very slow
480480-------------------------
481481
482- In some projects pylint_ may check slowly, because it also scan imported
482+ In some projects pylint_ may check slowly, because it also scans imported
483483modules if possible. Try using pyflakes: see | 'pymode_lint_checker' | .
484484
485485You may set | exrc | and | secure | in your | vimrc | to auto-set custom settings
0 commit comments