@@ -8,9 +8,9 @@ Python-mode, Python in VIM
8
8
* \* Python-mode Slack Channel is here:
9
9
< https://python-mode.herokuapp.com/ > * \*
10
10
11
- Src:< https://github.com/python-mode/python-mode >
12
- Homepage:< https://klen.github.io/python-mode/ >
13
- Docs:< https://github.com/python-mode/python-mode/blob/develop/doc/pymode.txt >
11
+ Src:< https://github.com/python-mode/python-mode >
12
+ Homepage:< https://klen.github.io/python-mode/ >
13
+ Docs:< https://github.com/python-mode/python-mode/blob/develop/doc/pymode.txt >
14
14
15
15
* * *
16
16
@@ -46,7 +46,7 @@ There is no need to install [pylint](#pylint), [rope](#rope) or any other
46
46
47
47
See (very old) screencast here:< http://www.youtube.com/watch?v=67OZNp9Z0CQ >
48
48
(sorry for quality, this is my first screencast) Another old presentation here:
49
- < http://www.youtube.com/watch?v=YhqsjUUHj6g >
49
+ < http://www.youtube.com/watch?v=YhqsjUUHj6g > .
50
50
51
51
To read python-mode documentation in Vim, see` :help pymode ` .
52
52
@@ -104,12 +104,12 @@ Install with commands:
104
104
apt-get install vim-python-mode
105
105
106
106
If you are getting the message: "The following signatures couldn't be
107
- verified because the public key is not available": :
107
+ verified because the public key is not available":
108
108
109
109
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B5DF65307000E266
110
110
111
111
vim-python-mode using vim-addons, so after installation just enable
112
- python-mode with command: :
112
+ python-mode with command:
113
113
114
114
vim-addons install python-mode
115
115
@@ -119,7 +119,7 @@ If your python-mode doesn't work:
119
119
120
120
1 . Load Vim with only python-mode enabled (use debug.vim from pymode):
121
121
122
- vim -u <path_to_pymode>/debug.vim
122
+ vim -u <path_to_pymode>/debug.vim
123
123
124
124
And try to repeat your case. If no error occurs, seems like problem
125
125
isn't in the plugin.
@@ -164,9 +164,8 @@ Documentation is available in your vim `:help pymode`
164
164
165
165
#Bugtracker
166
166
167
- If you have any suggestions, bug reports or annoyances please report
168
- them to the issue tracker at
169
- < https://github.com/python-mode/python-mode/issues >
167
+ If you have any suggestions, bug reports or annoyances please report them to
168
+ the issue tracker at< https://github.com/python-mode/python-mode/issues > .
170
169
171
170
#Contributing
172
171
@@ -177,7 +176,7 @@ them to the issue tracker at
177
176
Also see the AUTHORS file.
178
177
179
178
Development of python-mode happens at github:
180
- < https://github.com/python-mode/python-mode >
179
+ < https://github.com/python-mode/python-mode > .
181
180
182
181
Please make a pull request to development branch and add yourself to AUTHORS.
183
182
@@ -240,46 +239,46 @@ ErrCodes: <http://pylint-messages.wikidot.com/all-messages>
240
239
241
240
###pyflakes {#pyflakes}
242
241
243
- PyPI:< https://pypi.python.org/pypi/pyflakes >
244
- Src:< https://github.com/pyflakes/pyflakes >
245
- ErrCodes:< https://flake8.readthedocs.org/en/latest/warnings.html >
242
+ PyPI:< https://pypi.python.org/pypi/pyflakes >
243
+ Src:< https://github.com/pyflakes/pyflakes >
244
+ ErrCodes:< https://flake8.readthedocs.org/en/latest/warnings.html >
246
245
247
246
###pep8 {#pep8}
248
247
249
248
PyPI:< https://pypi.python.org/pypi/pep8 >
250
- Src:< http://github.com/jcrocholl/pep8 >
251
- PEP 8:< http://www.python.org/dev/peps/pep-0008/ >
252
- PEP 8:< http://legacy.python.org/dev/peps/pep-0008/ >
253
- Docs:< https://pep8.readthedocs.org/en/latest/ >
254
- Docs:< https://pep8.readthedocs.org/en/latest/intro.html#configuration >
255
- ErrCodes:< https://pep8.readthedocs.org/en/latest/intro.html#error-codes >
249
+ Src:< http://github.com/jcrocholl/pep8 >
250
+ PEP 8:< http://www.python.org/dev/peps/pep-0008/ >
251
+ PEP 8:< http://legacy.python.org/dev/peps/pep-0008/ >
252
+ Docs:< https://pep8.readthedocs.org/en/latest/ >
253
+ Docs:< https://pep8.readthedocs.org/en/latest/intro.html#configuration >
254
+ ErrCodes:< https://pep8.readthedocs.org/en/latest/intro.html#error-codes >
256
255
257
256
###autopep8 {#autopep8}
258
257
259
- PyPI:< https://pypi.python.org/pypi/autopep8 >
260
- Src:< https://github.com/hhatto/autopep8 >
258
+ PyPI:< https://pypi.python.org/pypi/autopep8 >
259
+ Src:< https://github.com/hhatto/autopep8 >
261
260
262
261
###pep257 {#pep257}
263
262
264
- PyPI:< https://pypi.python.org/pypi/pep257 >
265
- Src:< http://github.com/GreenSteam/pep257 >
266
- Docs:< https://pep257.readthedocs.org/en/latest/ >
267
- PEP 257:< http://www.python.org/dev/peps/pep-0257/ >
268
- ErrCodes:< https://pep257.readthedocs.org/en/latest/error_codes.html >
263
+ PyPI:< https://pypi.python.org/pypi/pep257 >
264
+ Src:< http://github.com/GreenSteam/pep257 >
265
+ Docs:< https://pep257.readthedocs.org/en/latest/ >
266
+ PEP 257:< http://www.python.org/dev/peps/pep-0257/ >
267
+ ErrCodes:< https://pep257.readthedocs.org/en/latest/error_codes.html >
269
268
270
269
###mccabe {#mccabe}
271
270
272
- PyPI:< https://pypi.python.org/pypi/mccabe >
273
- Src:< https://github.com/flintwork/mccabe >
274
- Docs:< https://en.wikipedia.org/wiki/Cyclomatic_complexity >
271
+ PyPI:< https://pypi.python.org/pypi/mccabe >
272
+ Src:< https://github.com/flintwork/mccabe >
273
+ Docs:< https://en.wikipedia.org/wiki/Cyclomatic_complexity >
275
274
276
275
###Python syntax for vim
277
276
278
- Src:< http://www.hlabs.spb.ru/vim/python.vim >
277
+ Src:< http://www.hlabs.spb.ru/vim/python.vim >
279
278
280
279
###PEP8 VIM indentation
281
280
282
- Src:< http://github.com/hynek/vim-python-pep8-indent >
281
+ Src:< http://github.com/hynek/vim-python-pep8-indent >
283
282
284
283
#Copyright
285
284
@@ -291,5 +290,5 @@ Licensed under a [GNU lesser general public
291
290
license] ( http://www.gnu.org/copyleft/lesser.html ) .
292
291
293
292
If you like this plugin, I would very appreciated if you kindly send me
294
- a postcard :) My address is here: "Russia, 143500, MO, Istra, pos.
295
- Severny 8-3" to "Kirill Klenov".** Thanks for support!**
293
+ a postcard :) My address is here: "Russia, 143500, MO, Istra, pos. Severny 8-3"
294
+ to "Kirill Klenov".** Thanks for support!**