44.. image :: https://travis-ci.org/klen/python-mode.png?branch=develop
55 :target: https://travis-ci.org/klen/python-mode
66
7- .. image :: https://dl.dropboxusercontent.com/u/487440/reformal/donate.png
8- :target: https://www.gittip.com/klen/
9- :alt: Donate
7+ -----
8+
9+ *The project needs maintainers and contributors *
10+
11+ Actually, I have no time for support the project, so if you feel yourself as
12+ strong don't be hesitate to contact me.
13+
14+ -----
15+
16+ |
17+ | Src: https://github.com/klen/python-mode
18+ | Homepage: https://klen.github.io/python-mode/
19+ | Docs: https://github.com/klen/python-mode/blob/develop/doc/pymode.txt
20+ |
1021
1122Python-mode is a vim plugin that helps you to create python code very quickly
12- by utilizing libraries including pylint _, rope _, pydoc _, pyflakes _, pep8 _, and
13- mccabe _ for features like static analysis, refactoring, folding, completion,
23+ by utilizing libraries including
24+ `pylint `_, `rope `_, pydoc _, `pyflakes `_, `pep8 `_, `autopep8 `_,
25+ `pep257 `_ and `mccabe `_
26+ for features like static analysis, refactoring, folding, completion,
1427documentation, and more.
1528
1629The plugin contains all you need to develop python applications in Vim.
1730
18- There is no need to install pylint _, rope _ or any other Python libraries on
19- your system.
31+ There is no need to install ` pylint `_, ` rope `_
32+ or any other ` Python Libraries `_ on your system.
2033
2134- Support Python version 2.6+ and 3.2+
2235- Syntax highlighting
@@ -97,13 +110,13 @@ Then rebuild **helptags** in vim::
97110
98111Debian packages
99112---------------
113+ |Repository URL: https://klen.github.io/python-mode/deb/
100114
101- Repository URL: http://klen.github.io/python-mode/deb/
102115Install with commands:
103116
104117::
105118
106- add-apt-repository http ://klen.github.io/python-mode/deb main
119+ add-apt-repository https ://klen.github.io/python-mode/deb main
107120 apt-get update
108121 apt-get install vim-python-mode
109122
@@ -176,11 +189,139 @@ https://github.com/klen/python-mode
176189Please make a pull request to `development ` branch and add yourself to
177190`AUTHORS `.
178191
192+ Source Links
193+ ===================
194+ - `doc/pymode.txt
195+ <https://github.com/klen/python-mode/blob/develop/doc/pymode.txt> `__
196+ -- ``:help pymode ``
197+ - `plugin/pymode.vim
198+ <https://github.com/klen/python-mode/blob/develop/plugin/pymode.vim> `__
199+ -- python-mode VIM plugin
200+ - `syntax/python.vim
201+ <https://github.com/klen/python-mode/blob/develop/syntax/python.vim> `__
202+ -- python-mode ``python.vim `` VIM syntax
203+ - `syntax/pyrex.vim
204+ <https://github.com/klen/python-mode/blob/develop/syntax/pyrex.vim> `__
205+ -- ``pyrex.vim `` VIM syntax (pyrex, Cython)
206+ - `t/
207+ <https://github.com/klen/python-mode/tree/develop/t> `__
208+ -- ``*.vim `` more python-mode VIM configuration
209+ - `pymode/
210+ <https://github.com/klen/python-mode/tree/develop/pymode> `__
211+ -- ``*.py `` -- python-mode Python module
212+ - `pymode/libs/
213+ <https://github.com/klen/python-mode/tree/develop/pymode/libs> `__
214+ -- ``*.py `` -- `Python Libraries <#python-libraries >`__
215+
216+
217+ Python Libraries
218+ ------------------
219+ Vendored Python modules are located
220+ mostly in
221+ `pymode/libs/ <https://github.com/klen/python-mode/tree/develop/pymode/libs >`__.
222+
223+
224+ ======
225+ rope
226+ ======
227+ | PyPI: https://pypi.python.org/pypi/rope
228+ | Src: https://github.com/python-rope/rope
229+ | Docs: https://github.com/python-rope/rope/blob/master/docs/overview.rst
230+ | Docs: https://github.com/python-rope/rope/blob/master/docs/library.rst
231+
232+ ========================
233+ ropemode
234+ ========================
235+ | PyPI: https://pypi.python.org/pypi/ropemode
236+ | Src: https://github.com/python-rope/ropemode
237+
238+ =========
239+ ropevim
240+ =========
241+ | PyPI: https://pypi.python.org/pypi/ropevim
242+ | Src: https://github.com/python-rope/ropevim
243+ | Docs: https://github.com/python-rope/ropevim/blob/master/doc/ropevim.txt
244+
245+ =======
246+ pylama
247+ =======
248+ | PyPI: https://pypi.python.org/pypi/pylama
249+ | Src: https://github.com/klen/pylama
250+
251+ ========
252+ pylint
253+ ========
254+ | PyPI: https://pypi.python.org/pypi/pylint
255+ | Src: https://bitbucket.org/logilab/pylint
256+ | Homepage: http://www.pylint.org/
257+ | Docs: http://docs.pylint.org/
258+ | Docs: http://docs.pylint.org/message-control.html
259+ | Docs: http://docs.pylint.org/faq.html#message-control
260+ | ErrCodes: http://pylint-messages.wikidot.com/all-codes
261+ | ErrCodes: http://pylint-messages.wikidot.com/all-messages
262+
263+ ==========
264+ pyflakes
265+ ==========
266+ | PyPI: https://pypi.python.org/pypi/pyflakes
267+ | Src: https://github.com/pyflakes/pyflakes
268+ | ErrCodes: https://flake8.readthedocs.org/en/latest/warnings.html
269+
270+ ======
271+ pep8
272+ ======
273+ | PyPI: https://pypi.python.org/pypi/pep8
274+ | Src: http://github.com/jcrocholl/pep8
275+ | PEP 8: http://www.python.org/dev/peps/pep-0008/
276+ | PEP 8: http://legacy.python.org/dev/peps/pep-0008/
277+ | Docs: https://pep8.readthedocs.org/en/latest/
278+ | Docs: https://pep8.readthedocs.org/en/latest/intro.html#configuration
279+ | ErrCodes: https://pep8.readthedocs.org/en/latest/intro.html#error-codes
280+
281+ =========
282+ autopep8
283+ =========
284+ | PyPI: https://pypi.python.org/pypi/autopep8
285+ | Src: https://github.com/hhatto/autopep8
286+
287+ =======
288+ pep257
289+ =======
290+ | PyPI: https://pypi.python.org/pypi/pep257
291+ | Src: http://github.com/GreenSteam/pep257
292+ | Docs: https://pep257.readthedocs.org/en/latest/
293+ | PEP 257: http://www.python.org/dev/peps/pep-0257/
294+ | ErrCodes: https://pep257.readthedocs.org/en/latest/error_codes.html
295+
296+ =======
297+ mccabe
298+ =======
299+ | PyPI: https://pypi.python.org/pypi/mccabe
300+ | Src: https://github.com/flintwork/mccabe
301+ | Docs: https://en.wikipedia.org/wiki/Cyclomatic_complexity
302+
303+
304+ Vim Libraries
305+ ---------------
306+ Vendored Vim modules are located mostly in ``t/ ``.
307+
308+ ======================
309+ Python syntax for vim
310+ ======================
311+ | Src: http://www.hlabs.spb.ru/vim/python.vim
312+
313+
314+ =====================
315+ PEP8 VIM indentation
316+ =====================
317+ | Src: http://github.com/hynek/vim-python-pep8-indent
318+
319+
179320
180321Copyright
181322=========
182323
183- Copyright © 2013 Kirill Klenov (klen _)
324+ Copyright © 2013-2015 Kirill Klenov (klen _)
184325
185326License
186327=======
@@ -192,17 +333,17 @@ My address is here: "Russia, 143500, MO, Istra, pos. Severny 8-3" to "Kirill Kle
192333**Thanks for support! **
193334
194335.. _GNU lesser general public license : http://www.gnu.org/copyleft/lesser.html
195- .. _klen : http ://klen.github.com/
336+ .. _klen : https ://klen.github.com/
196337.. _pydoc : http://docs.python.org/library/pydoc.html
197338.. _pathogen : https://github.com/tpope/vim-pathogen
198- .. _ rope : https://pypi.python.org/pypi/rope
199- .. _ pylama : https://github.com/klen/pylama
200- .. _ pylint : https://bitbucket.org/logilab/pylint
201- .. _ pyflakes : https://pypi.python.org/pypi/pyflakes
202- .. _ autopep8 : https://github.com/hhatto/autopep8
203- .. _ pep257 : http://github.com/GreenSteam/pep257
204- .. _ mccabe : https://github.com/flintwork/mccabe
339+ .. _ rope_ : https://pypi.python.org/pypi/rope
340+ .. _ pylama_ : https://github.com/klen/pylama
341+ .. _ pylint_ : https://bitbucket.org/logilab/pylint
342+ .. _ pyflakes_ : https://pypi.python.org/pypi/pyflakes
343+ .. _ autopep8_ : https://github.com/hhatto/autopep8
344+ .. _ pep257_ : http://github.com/GreenSteam/pep257
345+ .. _ mccabe_ : https://github.com/flintwork/mccabe
205346.. _pythonvim : http://www.hlabs.spb.ru/vim/python.vim
206- .. _ pep8 : http://github.com/jcrocholl/pep8
347+ .. _ pep8_ : http://github.com/jcrocholl/pep8
207348.. _pep8indent : http://github.com/hynek/vim-python-pep8-indent
208349.. |logo | image :: https://raw.github.com/klen/python-mode/develop/logo.png
0 commit comments