@@ -43,7 +43,7 @@ refactoring, and some other useful things.
4343This plugin allows you to create python code in vim very easily. There is no
4444need to install the pylint or rope libraries on your system.
4545
46- Python-modecontaints all you need to develop python applications in Vim.
46+ Python-modecontains all you need to develop python applications in Vim.
4747
4848Features:*pymode-features*
4949
@@ -70,7 +70,7 @@ Features: *pymode-features*
70702. Common functionality~
7171*pymode-common*
7272
73- This script provides the following options that cancustomise thebehaviour of
73+ This script provides the following options that cancustomizes thebehavior of
7474PythonMode. These options should be set in your| vimrc | .
7575
7676 Bellow shows the default values.
@@ -80,7 +80,7 @@ Turn on the whole plugin *'g:pymode'*
8080>
8181 let g:pymode = 1
8282
83- Trun off plugin's warnings*'g:pymode_warnings'*
83+ Turn off plugin's warnings*'g:pymode_warnings'*
8484>
8585 let g:pymode_warnings = 1
8686
@@ -89,7 +89,7 @@ Value is list of path's strings.
8989>
9090 let g:pymode_paths = []
9191
92- Trim unusedwhitespaces on save*'g:pymode_trim_whitespaces'*
92+ Trim unusedwhite spaces on save*'g:pymode_trim_whitespaces'*
9393>
9494 let g:pymode_trim_whitespaces = 1
9595
@@ -280,7 +280,7 @@ Check code on every save (every) *'g:pymode_lint_unmodified'*
280280>
281281 let g:pymode_lint_unmodified = 0
282282
283- Check code wheneditting (onfly )*'g:pymode_lint_on_fly'*
283+ Check code whenediting (on the fly )*'g:pymode_lint_on_fly'*
284284>
285285 let g:pymode_lint_on_fly = 0
286286
@@ -295,7 +295,7 @@ Default code checkers (you could set several) *'g:pymode_lint_checkers'*
295295 Values may be chosen from:`pylint` ,`pep8` ,`mccabe` ,`pep257` ,`pyflakes` .
296296
297297Skip errors and warnings*'g:pymode_lint_ignore'*
298- E.g. "E501,W002", "E2,W" (Skip all Warnings and Errorsstartswith E2) and etc
298+ E.g. "E501,W002", "E2,W" (Skip all Warnings and Errorsthat starts with E2) and etc
299299>
300300 let g:pymode_lint_ignore = "E501,W"
301301
@@ -306,7 +306,7 @@ By example you disable all warnings starting from 'W', but want to see warning
306306 let g:pymode_lint_select = "E501,W0011,W430"
307307
308308 Sort errors by relevance*'g:pymode_lint_sort'*
309- If notemply , errors will be sort by defined relevance
309+ If notempty , errors will be sort by defined relevance
310310E.g. let g:pymode_lint_sort = ['E', 'C', 'I'] " Errors first 'E',
311311after them 'C' and ...
312312>
@@ -442,7 +442,7 @@ Leave empty for disable key binding. *'g:pymode_rope_goto_definition_bind'*
442442>
443443 let g:pymode_rope_goto_definition_bind = '<C-c>g'
444444
445- Command for open window when definition has beenfinded
445+ Command for open window when definition has beenfound
446446Values are (`e ` ,`new ` ,`vnew ` )*'g:pymode_rope_goto_definition_cmd'*
447447>
448448 let g:pymode_rope_goto_definition_cmd = 'new'
@@ -559,7 +559,7 @@ docstrings. Consider disabling this on slower hardware.
559559>
560560 let g:pymode_syntax_slow_sync = 1
561561
562- Enable all pythonhighlightings *'g:pymode_syntax_all'*
562+ Enable all pythonhighlights *'g:pymode_syntax_all'*
563563>
564564 let g:pymode_syntax_all = 1
565565
@@ -651,7 +651,7 @@ Pylint check is very slow
651651-------------------------
652652
653653In some projects pylint may check slowly, because it also scans imported
654- modules if possible. Try using another codecheckiers : see
654+ modules if possible. Try using another codechecker : see
655655| 'g:pymode_lint_checkers' | .
656656
657657You may set| exrc | and| secure | in your| vimrc | to auto-set custom settings