Skip to content

Commit 2a5d5a4

Browse files
committed
Minor grammar fixes.
1 parent 6c43ae1 commit 2a5d5a4

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

doc/pymode.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Python-mode is a vim plugin that allows you to use the pylint, rope, and pydoc
2929
libraries in vim to provide features like python code bug checking,
3030
refactoring, 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
3333
to 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
122122
2.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
156156
Values: List of strings
157157
Default: [].
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'*
170170
Default: 'K'.
171171

172-
Set key for show python documentation.
172+
Set the key to the show python documentation.
173173

174174
------------------------------------------------------------------------------
175175
*'pymode_run'*
176176
Values: 0 or 1.
177177
Default: 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'*
183183
Default: '<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.
279279
Default: 0.
280280

281281
If 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.
349349
Values: 0 or 1.
350350
Default: 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'*
@@ -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

469469
Solutions:
470470

@@ -479,7 +479,7 @@ Solutions:
479479
Pylint 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
483483
modules if possible. Try using pyflakes: see |'pymode_lint_checker'|.
484484

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

0 commit comments

Comments
 (0)