Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite8d1930

Browse files
committed
changed bullets notation in readme.md
1 parent9599a4a commite8d1930

File tree

1 file changed

+40
-43
lines changed

1 file changed

+40
-43
lines changed

‎readme.md

Lines changed: 40 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,34 @@ The plugin contains all you need to develop python applications in Vim.
2626
There is no need to install[pylint](#pylint),[rope](#rope) or any other
2727
[Python Libraries](#python_libraries) on your system.
2828

29-
- Support Python version 2.6+ and 3.2+
30-
- Syntax highlighting
31-
- Virtualenv support
32-
- Run python code (`<leader>r`)
33-
- Add/remove breakpoints (`<leader>b`)
34-
- Improved Python indentation
35-
- Python folding
36-
- Python motions and operators (`]]`,`3[[`,`]]M`,`vaC`,`viM`,
37-
`daC`,`ciM`, ...)
38-
- Code checking ([pylint](#pylint),[pyflakes](#pyflakes),[pylama](#pylama),
39-
...) that can be run simultaneously (`:PymodeLint`)
40-
- Autofix PEP8 errors (`:PymodeLintAuto`)
41-
- Search in python documentation (`K`)
42-
- Code refactoring&lt;rope refactoring library&gt; ([rope](#rope))
43-
- Strong code completion ([rope](#rope))
44-
- Go to definition (`<C-c>g` for:RopeGotoDefinition)
45-
- And more, more ...
46-
47-
See (very old) screencast here:
48-
<http://www.youtube.com/watch?v=67OZNp9Z0CQ> (sorry for quality, this is
49-
my first screencast) Another old presentation here:
29+
* Support Python version 2.6+ and 3.2+
30+
* Syntax highlighting
31+
* Virtualenv support
32+
* Run python code (`<leader>r`)
33+
* Add/remove breakpoints (`<leader>b`)
34+
* Improved Python indentation
35+
* Python folding
36+
* Python motions and operators (`]]`,`3[[`,`]]M`,`vaC`,`viM`,`daC`,`ciM`,
37+
...)
38+
* Code checking ([pylint](#pylint),[pyflakes](#pyflakes),[pylama](#pylama),
39+
...) that can be run simultaneously (`:PymodeLint`)
40+
* Autofix PEP8 errors (`:PymodeLintAuto`)
41+
* Search in python documentation (`K`)
42+
* Code refactoring&lt;rope refactoring library&gt; ([rope](#rope))
43+
* Strong code completion ([rope](#rope))
44+
* Go to definition (`<C-c>g` for:RopeGotoDefinition)
45+
* And more, more ...
46+
47+
See (very old) screencast here:<http://www.youtube.com/watch?v=67OZNp9Z0CQ>
48+
(sorry for quality, this is my first screencast) Another old presentation here:
5049
<http://www.youtube.com/watch?v=YhqsjUUHj6g>
5150

5251
To read python-mode documentation in Vim, see`:help pymode`.
5352

5453
#Requirements
5554

56-
-VIM&gt;= 7.3 (mostly features needed +python or +python3 support)
57-
(also`--with-features=big` if you want`g:pymode_lint_signs`)
55+
*VIM&gt;= 7.3 (mostly features needed +python or +python3 support) (also
56+
`--with-features=big` if you want`g:pymode_lint_signs`)
5857

5958
#How to install
6059

@@ -66,8 +65,7 @@ To read python-mode documentation in Vim, see `:help pymode`.
6665
cd python-mode
6766
git submodule update --init --recursive
6867

69-
- Enable[pathogen](https://github.com/tpope/vim-pathogen) in your
70-
`~/.vimrc`:
68+
* Enable[pathogen](https://github.com/tpope/vim-pathogen) in your`~/.vimrc`:
7169

7270
" Pathogen load
7371
filetype off
@@ -172,33 +170,32 @@ them to the issue tracker at
172170

173171
#Contributing
174172

175-
- Kirill Klenov (<horneds@gmail.com>)
176-
- Felipe M. Vieira (<https://github.com/fmv1992>)
177-
- Bryce Guinta (<https://github.com/brycepg>)
173+
* Kirill Klenov (<horneds@gmail.com>)
174+
* Felipe M. Vieira (<https://github.com/fmv1992>)
175+
* Bryce Guinta (<https://github.com/brycepg>)
178176

179177
Also see the AUTHORS file.
180178

181179
Development of python-mode happens at github:
182180
<https://github.com/python-mode/python-mode>
183181

184-
Please make a pull request to development branch and add yourself to
185-
AUTHORS.
182+
Please make a pull request to development branch and add yourself to AUTHORS.
186183

187184
#Source Links
188185

189-
-[doc/pymode.txt](https://github.com/python-mode/python-mode/blob/develop/doc/pymode.txt)
190-
--`:help pymode`
191-
-[plugin/pymode.vim](https://github.com/python-mode/python-mode/blob/develop/plugin/pymode.vim)
192-
-- python-mode VIM plugin
193-
-[syntax/python.vim](https://github.com/python-mode/python-mode/blob/develop/syntax/python.vim)
194-
-- python-mode`python.vim` VIM syntax
195-
-[syntax/pyrex.vim](https://github.com/python-mode/python-mode/blob/develop/syntax/pyrex.vim)
196-
--`pyrex.vim` VIM syntax (pyrex, Cython)
197-
-[tests/](https://github.com/python-mode/python-mode/tree/develop/t)
198-
--`*.vim` more python-mode VIM configuration
199-
-[pymode/](https://github.com/python-mode/python-mode/tree/develop/pymode)
200-
--`*.py` -- python-mode Python module
201-
-[pymode/libs/](https://github.com/python-mode/python-mode/tree/develop/pymode/libs)
186+
*[doc/pymode.txt](https://github.com/python-mode/python-mode/blob/develop/doc/pymode.txt)
187+
--`:help pymode`
188+
*[plugin/pymode.vim](https://github.com/python-mode/python-mode/blob/develop/plugin/pymode.vim)
189+
-- python-mode VIM plugin
190+
*[syntax/python.vim](https://github.com/python-mode/python-mode/blob/develop/syntax/python.vim)
191+
-- python-mode`python.vim` VIM syntax
192+
*[syntax/pyrex.vim](https://github.com/python-mode/python-mode/blob/develop/syntax/pyrex.vim)
193+
--`pyrex.vim` VIM syntax (pyrex, Cython)
194+
*[tests/](https://github.com/python-mode/python-mode/tree/develop/t) --
195+
`*.vim` more python-mode VIM configuration
196+
*[pymode/](https://github.com/python-mode/python-mode/tree/develop/pymode) --
197+
`*.py` -- python-mode Python module
198+
*[pymode/libs/](https://github.com/python-mode/python-mode/tree/develop/pymode/libs)
202199
--`*.py` --[Python Libraries](#python-libraries)
203200

204201
##Python Libraries {#python_libraries}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp