Skip to content

Commit a631406

Browse files
author
Kenneth Reitz
committed
Merge remote-tracking branch 'origin/master'
2 parents 97c1cbc + 313eaee commit a631406

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

‎docs/_templates/sidebarintro.html‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ <h1>Python Guide.</h1>
33
This opinionated guide exists to provide both novice and expert Python developers a best-practice handbook to the installation, configuration, and usage of Python on a daily basis.
44
</p>
55

6+
<h3>Donate</h3>
7+
<p>
8+
If you enjoy this guide, consider supporting the author <ahref="https://www.gittip.com/kennethreitz/">on Gittip</a>:
9+
</p>
10+
<p>
11+
<iframestyle="border: 0; margin: 0; padding: 0;"
12+
src="https://www.gittip.com/kennethreitz/widget.html"
13+
width="48pt" height="20pt"></iframe>
14+
</p>
15+
616
<h3>Feedback</h3>
717
<p>
818
Feedback is greatly appreciated. If you have any questions, comments,

‎docs/_templates/sidebarlogo.html‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,13 @@ <h1><a href="http://python-guide.org">Python Guide.</a></h1>
22
<p>
33
This opinionated guide exists to provide both novice and expert Python developers a best-practice handbook to the installation, configuration, and usage of Python on a daily basis.
44
</p>
5+
6+
<h3>Donate</h3>
7+
<p>
8+
If you enjoy this guide, consider supporting the author <ahref="https://www.gittip.com/kennethreitz/">on Gittip</a>:
9+
</p>
10+
<p>
11+
<iframestyle="border: 0; margin: 0; padding: 0;"
12+
src="https://www.gittip.com/kennethreitz/widget.html"
13+
width="48pt" height="20pt"></iframe>
14+
</p>

‎docs/dev/env.rst‎

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,24 @@ to do that which also shows status and warning messages in the statusbar would b
6060
let g:syntastic_auto_loc_list=1
6161
let g:syntastic_loc_list_height=5
6262

63+
Python-mode
64+
^^^^^^^^^^^
65+
66+
Python-mode_ is complex solution in VIM for work with python code.
67+
It's have:
68+
69+
- Async python code checking (pylint, pyflakes, pep8, mccabe) in any combination;
70+
- Code refactoring and autocompletion with Rope;
71+
- Fastest python folding;
72+
- Nice and powered python syntax;
73+
- Virtual env support;
74+
- Search by python documentation and run python code;
75+
- More other things like auto pep8 error fixes;
76+
- Very customizable an documented as well;
77+
- Have all required libraries in self;
78+
79+
And more stuff.
80+
6381

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

7291
.. todo:: add supertab notes
7392

@@ -89,9 +108,6 @@ extraordinary features."
89108
Sublime Text has excellent support for editing Python code and uses Python for
90109
its plugin API.
91110

92-
`Sublime Text 2 <http://www.sublimetext.com/blog/articles/sublime-text-2-beta>`_
93-
is currently in beta.
94-
95111
IDEs
96112
::::
97113

0 commit comments

Comments
(0)