8000 Added information about VIM python-mode plugin by klen · Pull Request #191 · realpython/python-guide · GitHub
[go: up one dir, main page]

Skip to content

Added information about VIM python-mode plugin #191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2012
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
19 changes: 19 additions & 0 deletions docs/dev/env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,24 @@ to do that which also shows status and warning messages in the statusbar would b
let g:syntastic_auto_loc_list=1
let g:syntastic_loc_list_height=5

Python-mode
^^^^^^^^^^^

Python-mode_ is complex solution in VIM for work with python code.
It's have:

- Async python code checking (pylint, pyflakes, pep8, mccabe) in any combination;
- Code refactoring and autocompletion with Rope;
- Fastest python folding;
- Nice and powered python syntax;
- Virtual env support;
- Search by python documentation and run python code;
- More other things like auto pep8 error fixes;
- Very customizable an documented as well;
- Have all required libraries in self;

And more stuff.


.. _indent: http://www.vim.org/scripts/script.php?script_id=974
.. _syntax: http://www.vim.org/scripts/script.php?script_id=790
Expand All @@ -68,6 +86,7 @@ to do that which also shows status and warning messages in the statusbar would b
.. _PEP8: http://pypi.python.org/pypi/pep8/
.. _vim-pep8: https://github.com/nvie/vim-pep8
.. _syntastic: https://github.com/scrooloose/syntastic
.. _Python-mode: https://github.com/klen/python-mode

.. todo:: add supertab notes

Expand Down
0