1414
1515Vim is a text editor which uses keyboard shortcuts for editing instead of menus
1616or icons. There exist a couple of plugins and settings for the VIM editor to
17- aid python development. If you only develop in Python, a good start is to set
17+ aid Python development. If you only develop in Python, a good start is to set
1818the default settings for indentation and line-wrapping to values compliant with
1919`PEP 8 <http://www.python.org/dev/peps/pep-0008/ >`_. In your home directory,
2020open a file called `.vimrc ` and add the following lines:::
@@ -29,7 +29,7 @@ open a file called `.vimrc` and add the following lines:::
2929
3030With these settings, newlines are inserted after 79 characters and indentation
3131is set to 4 spaces per tab. If you also use VIM for other languages, there is a
32- handy plugin at indent _, which handles indentation settings for python source
32+ handy plugin at indent _, which handles indentation settings for Python source
3333files.
3434
3535There is also a handy syntax plugin at syntax _ featuring some improvements over
@@ -67,12 +67,12 @@ Python-mode
6767Python-mode _ is a complex solution in VIM for working with python code.
6868It has:
6969
70- - Async python code checking (pylint, pyflakes, pep8, mccabe) in any combination
70+ - Async Python code checking (pylint, pyflakes, pep8, mccabe) in any combination
7171- Code refactoring and autocompletion with Rope
72- - Fast python folding
72+ - Fast Python folding
7373- Virtualenv support
74- - Search by python documentation and run python code
75- - Auto pep8 error fixes
74+ - Search by Python documentation and run Python code
75+ - Auto PEP8 error fixes
7676
7777And more.
7878
@@ -148,7 +148,7 @@ Spyder
148148------
149149
150150`Spyder <http://code.google.com/p/spyderlib/ >`_ is an IDE specifically geared
151- toward working with scientific python libraries (namely `Scipy <http://www.scipy.org/ >`_).
151+ toward working with scientific Python libraries (namely `Scipy <http://www.scipy.org/ >`_).
152152It includes integration with pyflakes _, `pylint <http://www.logilab.org/857 >`_,
153153and `rope <http://rope.sourceforge.net/ >`_.
154154
@@ -159,7 +159,7 @@ class and function browser, and object inspection.
159159WingIDE
160160-------
161161
162- `WingIDE <http://wingware.com/ >`_ is a python specific IDE. It runs on Linux,
162+ `WingIDE <http://wingware.com/ >`_ is a Python specific IDE. It runs on Linux,
163163Windows, and Mac (as an X11 application, which frustrates some Mac users).
164164
165165WingIDE offers code completion, syntax highlighting, source browser, graphical
0 commit comments