From 49b5ccba95f1c56e7585cef9e473eeb4171f4f4e Mon Sep 17 00:00:00 2001
From: Kenneth Reitz
Date: Sat, 28 Jul 2012 17:11:13 -0400
Subject: [PATCH 1/3] gittip
---
docs/_templates/sidebarintro.html | 10 ++++++++++
docs/_templates/sidebarlogo.html | 10 ++++++++++
2 files changed, 20 insertions(+)
diff --git a/docs/_templates/sidebarintro.html b/docs/_templates/sidebarintro.html
index 7ea44d9..b9901b3 100644
--- a/docs/_templates/sidebarintro.html
+++ b/docs/_templates/sidebarintro.html
@@ -3,6 +3,16 @@
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.
+Donate
+
+ If you enjoy this guide, consider supporting the author on Gittip:
+
+
+
+
+
Feedback
Feedback is greatly appreciated. If you have any questions, comments,
diff --git a/docs/_templates/sidebarlogo.html b/docs/_templates/sidebarlogo.html
index a39cee9..d7f12de 100644
--- a/docs/_templates/sidebarlogo.html
+++ b/docs/_templates/sidebarlogo.html
@@ -2,3 +2,13 @@
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.
+
+Donate
+
+ If you enjoy this guide, consider supporting the author on Gittip:
+
+
+
+
\ No newline at end of file
From d6602f18b69224f8d1b405dd36d1ef121b1941c7 Mon Sep 17 00:00:00 2001
From: Lyndsy Simon
Date: Wed, 1 Aug 2012 20:01:05 -0500
Subject: [PATCH 2/3] removes link to Sublime Text 2 Beta (now released)
---
docs/dev/env.rst | 3 ---
1 file changed, 3 deletions(-)
diff --git a/docs/dev/env.rst b/docs/dev/env.rst
index a539a9f..a47de46 100644
--- a/docs/dev/env.rst
+++ b/docs/dev/env.rst
@@ -89,9 +89,6 @@ extraordinary features."
Sublime Text has excellent support for editing Python code and uses Python for
its plugin API.
-`Sublime Text 2 `_
-is currently in beta.
-
IDEs
::::
From 22088fd0a419a32102c6be197a286064195a7245 Mon Sep 17 00:00:00 2001
From: Kirill Klenov
Date: Thu, 2 Aug 2012 23:59:41 +0400
Subject: [PATCH 3/3] Added information about vim python-mode plugin
---
docs/dev/env.rst | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/docs/dev/env.rst b/docs/dev/env.rst
index a47de46..88dd0d2 100644
--- a/docs/dev/env.rst
+++ b/docs/dev/env.rst
@@ -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
@@ -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