@@ -35,11 +35,11 @@ source files.
35
35
There is also a handy syntax plugin called syntax _ featuring some improvements
36
36
over the syntax file included in Vim 6.1.
37
37
38
- These plugins supply you with a basic environment for developing in Python.
39
- To get the most out of Vim, you should continually check your code for syntax
40
- errors and PEP8 compliance. Luckily PEP8 _ and Pyflakes _ will do this for you.
41
- If your Vim is compiled with ``+python `` you can also utilize some very
42
- handy plugins to do these checks from within the editor.
38
+ These plugins supply you with a basic environment for developing in Python. To
39
+ get the most out of Vim, you should continually check your code for syntax
40
+ errors and PEP8 compliance. Luckily pycodestyle _ and Pyflakes _ will do this
41
+ for you. If your Vim is compiled with ``+python `` you can also utilize some
42
+ very handy plugins to do these checks from within the editor.
43
43
44
44
For PEP8 checking and pyflakes, you can install vim-flake8 _. Now you can map the
45
45
function ``Flake8 `` to any hotkey or action you want in Vim. The plugin will
@@ -68,12 +68,12 @@ Python-mode
68
68
Python-mode _ is a complex solution for working with Python code in Vim.
69
69
It has:
70
70
71
- - Asynchronous Python code checking (``pylint ``, ``pyflakes ``, ``pep8 ``, ``mccabe ``) in any combination
71
+ - Asynchronous Python code checking (``pylint ``, ``pyflakes ``, ``pycodestyle ``, ``mccabe ``) in any combination
72
72
- Code refactoring and autocompletion with Rope
73
73
- Fast Python folding
74
74
- Virtualenv support
75
75
- Search through Python documentation and run Python code
76
- - Auto PEP8 _ error fixes
76
+ - Auto pycodestyle _ error fixes
77
77
78
78
And more.
79
79
@@ -86,7 +86,7 @@ using ``<Tab>`` key or any other customized keys.
86
86
.. _indent : http://www.vim.org/scripts/script.php?script_id=974
87
87
.. _syntax : http://www.vim.org/scripts/script.php?script_id=790
88
88
.. _Pyflakes : http://pypi.python.org/pypi/pyflakes/
89
- .. _ PEP8 : http ://pypi.python.org/pypi/pep8 /
89
+ .. _ pycodestyle : https ://pypi.python.org/pypi/pycodestyle /
90
90
.. _syntastic : https://github.com/scrooloose/syntastic
91
91
.. _Python-mode : https://github.com/klen/python-mode
92
92
.. _SuperTab : http://www.vim.org/scripts/script.php?script_id=1643
0 commit comments