Skip to content

Commit 8f2b5f8

Browse files
committed
Merge pull request python-mode#390 from bmease/fix-spelling
Fix spelling and grammatical errors in documentation
2 parents 5a7594f + 443edd9 commit 8f2b5f8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/pymode.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ refactoring, and some other useful things.
4343
This plugin allows you to create python code in vim very easily. There is no
4444
need to install the pylint or rope libraries on your system.
4545

46-
Python-mode containts all you need to develop python applications in Vim.
46+
Python-mode contains all you need to develop python applications in Vim.
4747

4848
Features: *pymode-features*
4949

@@ -70,7 +70,7 @@ Features: *pymode-features*
7070
2. Common functionality ~
7171
*pymode-common*
7272

73-
This script provides the following options that can customise the behaviour of
73+
This script provides the following options that can customizes the behavior of
7474
PythonMode. 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 unused whitespaces on save *'g:pymode_trim_whitespaces'*
92+
Trim unused white 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 when editting (onfly) *'g:pymode_lint_on_fly'*
283+
Check code when editing (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

297297
Skip errors and warnings *'g:pymode_lint_ignore'*
298-
E.g. "E501,W002", "E2,W" (Skip all Warnings and Errors startswith E2) and etc
298+
E.g. "E501,W002", "E2,W" (Skip all Warnings and Errors that 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 not emply, errors will be sort by defined relevance
309+
If not empty, errors will be sort by defined relevance
310310
E.g. let g:pymode_lint_sort = ['E', 'C', 'I'] " Errors first 'E',
311311
after 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 been finded
445+
Command for open window when definition has been found
446446
Values 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 python highlightings *'g:pymode_syntax_all'*
562+
Enable all python highlights *'g:pymode_syntax_all'*
563563
>
564564
let g:pymode_syntax_all = 1
565565
@@ -587,7 +587,7 @@ Highlight space's errors *'g:pymode_syntax_space_errors'*
587587
>
588588
let g:pymode_syntax_space_errors = g:pymode_syntax_all
589589
590-
Highlight string formatting *'g:pymode_syntax_string_formating'*
590+
Highlight string formatting *'g:pymode_syntax_string_formatting'*
591591
*'g:pymode_syntax_string_format'*
592592
*'g:pymode_syntax_string_templates'*
593593
*'g:pymode_syntax_doctests'*
@@ -651,7 +651,7 @@ Pylint check is very slow
651651
-------------------------
652652

653653
In some projects pylint may check slowly, because it also scans imported
654-
modules if possible. Try using another code checkiers: see
654+
modules if possible. Try using another code checker: see
655655
|'g:pymode_lint_checkers'|.
656656

657657
You may set |exrc| and |secure| in your |vimrc| to auto-set custom settings

0 commit comments

Comments
 (0)