Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions doc/pymode.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Setup pymode |quickfix| window
*pymode-python-version*

By default pymode looks for current python version supported in your Vim.
You could choose prefer version, but value will be testsed on loading.
You could choose prefer version, but value will be tested on loading.

*'g:pymode_python'*
>
Expand All @@ -138,8 +138,8 @@ Set value to `python3` if you are working with python3 projects. You could use
2.2 Python indentation ~
*pymode-indent*

Pymode support PEP8-compatible python indent.
Enable pymode indentatation *'g:pymode_indent'*
Pymode supports PEP8-compatible python indent.
Enable pymode indentation *'g:pymode_indent'*
>
let g:pymode_indent = []

Expand Down Expand Up @@ -184,7 +184,7 @@ Enable pymode-motion *'g:pymode_motion'*
2.5 Show documentation ~
*pymode-documentation*

Pymode could show documetation for current word by `pydoc`.
Pymode could show documentation for current word by `pydoc`.

Commands:
*:PymodeDoc* <args> — show documentation
Expand All @@ -210,7 +210,7 @@ Enable automatic virtualenv detection *'g:pymode_virtualenv'
>
let g:pymode_virtualenv = 1

Set path to virtualenv by manually *'g:pymode_virtualenv_path'*
Set path to virtualenv manually *'g:pymode_virtualenv_path'*
>
let g:pymode_virtualenv_path = $VIRTUAL_ENV

Expand All @@ -233,8 +233,8 @@ Binds keys to run python code *'g:pymode_run_bind'*
2.8 Breakpoints ~
*pymode-breakpoints*

Pymode automatically detect available debugger (like pdb, ipdb, pudb) and user
could set/unset breakpoint with one key and without code checking and etc.
Pymode automatically detects available debugger (like pdb, ipdb, pudb) and user
can set/unset breakpoint with one key and without code checking and etc.

Enable functionality *'g:pymode_breakpoint'*
>
Expand All @@ -254,7 +254,7 @@ Manually set breakpoint command (leave empty for automatic detection)
*pymode-lint*

Pymode supports `pylint`, `pep257`, `pep8`, `pyflakes`, `mccabe` code
checkers. You could run several checkers are simular.
checkers. You could run several similar checkers.

Pymode uses Pylama library for code checking. Many options like skip
files, errors and etc could be defined in `pylama.ini` file or modelines.
Expand Down Expand Up @@ -351,14 +351,15 @@ Turn on the rope script *'g:pymode_rope'*
>
let g:pymode_rope = 1

.roperoject Folder ~
.ropeproject Folder ~
*.ropeproject*

*:PymodeRopeNewProject* -- Open new Rope project in current working directory
*:PymodeRopeRegenerate* -- Regenerate the project cache

Rope uses a folder inside projects for holding project configuration and data.
Its default name is `.ropeproject`.
Its default name is `.ropeproject`. It is recommended that you do not add the
.ropeproject folder to version control system.

Currently it is used for things such as:

Expand Down