@@ -122,7 +122,7 @@ Setup pymode |quickfix| window
122122 *pymode-python-version*
123123
124124By default pymode looks for current python version supported in your Vim.
125- You could choose prefer version, but value will be testsed on loading.
125+ You could choose prefer version, but value will be tested on loading.
126126
127127 *'g:pymode_python'*
128128>
@@ -138,8 +138,8 @@ Set value to `python3` if you are working with python3 projects. You could use
1381382.2 Python indentation ~
139139 *pymode-indent*
140140
141- Pymode support PEP8-compatible python indent.
142- Enable pymode indentatation *'g:pymode_indent'*
141+ Pymode supports PEP8-compatible python indent.
142+ Enable pymode indentation *'g:pymode_indent'*
143143>
144144 let g:pymode_indent = []
145145
@@ -184,7 +184,7 @@ Enable pymode-motion *'g:pymode_motion'*
1841842.5 Show documentation ~
185185 *pymode-documentation*
186186
187- Pymode could show documetation for current word by `pydoc` .
187+ Pymode could show documentation for current word by `pydoc` .
188188
189189Commands:
190190*:PymodeDoc* <args> — show documentation
@@ -210,7 +210,7 @@ Enable automatic virtualenv detection *'g:pymode_virtualenv'
210210>
211211 let g:pymode_virtualenv = 1
212212
213- Set path to virtualenv by manually *'g:pymode_virtualenv_path'*
213+ Set path to virtualenv manually *'g:pymode_virtualenv_path'*
214214>
215215 let g:pymode_virtualenv_path = $VIRTUAL_ENV
216216
@@ -233,8 +233,8 @@ Binds keys to run python code *'g:pymode_run_bind'*
2332332.8 Breakpoints ~
234234 *pymode-breakpoints*
235235
236- Pymode automatically detect available debugger (like pdb, ipdb, pudb) and user
237- could set/unset breakpoint with one key and without code checking and etc.
236+ Pymode automatically detects available debugger (like pdb, ipdb, pudb) and user
237+ can set/unset breakpoint with one key and without code checking and etc.
238238
239239Enable functionality *'g:pymode_breakpoint'*
240240>
@@ -254,7 +254,7 @@ Manually set breakpoint command (leave empty for automatic detection)
254254 *pymode-lint*
255255
256256Pymode supports `pylint` , `pep257` , `pep8` , `pyflakes` , `mccabe` code
257- checkers. You could run several checkers are simular .
257+ checkers. You could run several similar checkers .
258258
259259 Pymode uses Pylama library for code checking. Many options like skip
260260 files, errors and etc could be defined in `pylama.ini` file or modelines.
@@ -351,14 +351,15 @@ Turn on the rope script *'g:pymode_rope'*
351351>
352352 let g:pymode_rope = 1
353353
354- .roperoject Folder ~
354+ .ropeproject Folder ~
355355 *.ropeproject*
356356
357357*:PymodeRopeNewProject* -- Open new Rope project in current working directory
358358*:PymodeRopeRegenerate* -- Regenerate the project cache
359359
360360Rope uses a folder inside projects for holding project configuration and data.
361- Its default name is `.ropeproject` .
361+ Its default name is `.ropeproject` . It is recommended that you do not add the
362+ .ropeproject folder to version control system.
362363
363364Currently it is used for things such as:
364365
0 commit comments